:root {
    
    --color-pink: #fe3171;
    --color-orange: #f7ae32;
    --color-red: #d72b3d;
    --color-cream: #fbeddf;

    --color-dark: #2a1b24;
    --color-white: #ffffff;

    --gradient-primary: linear-gradient(135deg, var(--color-pink), var(--color-orange));
    --gradient-secondary: linear-gradient(135deg, var(--color-red), var(--color-pink));

    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-cream);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-weight: 900;
    line-height: 1.2;
}

.title {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

.title .accent-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-red);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.support-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    font-weight: 400;
    opacity: 0.85;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: var(--spacing-md) 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-dark);
}

.logo-text .highlight {
    color: var(--color-pink);
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-pink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 10px 20px -10px var(--color-pink);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px -10px var(--color-pink);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-cream);
    transform: translateY(-5px);
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--color-orange);
    color: var(--color-dark);
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 10px rgba(247, 174, 50, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.rocket-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.rocket-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    animation: hoverRocket3D 5s ease-in-out infinite alternate;
}

@keyframes hoverRocket3D {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(2deg); }
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px) rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.wave-bottom .shape-fill {
    fill: #ffffff; 
}

.decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.decor-item {
    position: absolute;
    width: 60px;
    height: auto;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.decor-1 { top: 15%; left: 10%; width: 80px; animation-delay: 0s; }
.decor-2 { top: 20%; right: 15%; width: 50px; transform: rotate(15deg); animation-delay: 1s; }
.decor-3 { top: 60%; left: 5%; width: 70px; transform: rotate(-20deg); animation-delay: 2s; }
.decor-4 { top: 70%; right: 10%; width: 90px; animation-delay: 3s; }
.decor-5 { top: 40%; left: 50%; width: 50px; animation-delay: 1.5s; }
.decor-6 { top: 10%; right: 40%; width: 40px; animation-delay: 2.5s; opacity: 0.6; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 27, 36, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--color-white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    overflow: hidden;
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-dark);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.close-btn:hover {
    color: var(--color-pink);
    transform: scale(1.1);
}

.registration-form {
    padding: 2rem;
    overflow-y: auto; 
}

fieldset {
    border: none;
    margin-bottom: 2.5rem;
}

legend {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-pink);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    border-bottom: 2px dashed #eee;
    padding-bottom: 0.5rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-group {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1 1 100%;
}

label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: #fafafa;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--color-pink);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(254, 49, 113, 0.1);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

.section-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--color-pink);
    color: var(--color-white);
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-md { margin-top: var(--spacing-md); }
.font-bold { font-weight: 800; }
.text-white { color: var(--color-white); }
.badge-white { background-color: var(--color-white); color: var(--color-dark); }

.about-section {
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-card {
    background: var(--color-cream);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.about-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-card .highlight-text {
    font-weight: 800;
    color: var(--color-pink);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.about-visuals {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 2;
    text-align: center;
    width: 250px;
    transition: var(--transition-normal);
}

.glass-card:hover { transform: translateY(-10px); }
.glass-card i { font-size: 3rem; color: var(--color-pink); margin-bottom: 1rem; }
.glass-card:nth-child(1) { top: 10%; right: 10%; }
.glass-card.offset-card { bottom: 10%; left: 10%; }
.glass-card.offset-card i { color: var(--color-orange); }

.blob-small {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.6;
}
.blob-pink { background: var(--color-pink); top: 20%; right: 5%; animation: float 5s ease-in-out infinite alternate; }
.blob-orange { background: var(--color-orange); bottom: 20%; left: 0; animation: float 7s ease-in-out infinite alternate; }

.benefits-section {
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: calc(var(--spacing-xl) + 50px) 0;
}

.benefits-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.25rem;
    opacity: 0.9;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    background: rgba(255,255,255,1);
    color: var(--color-dark);
    transform: translateY(-10px);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--color-white);
}

.bg-pink { background: var(--color-pink); }
.bg-orange { background: var(--color-orange); }
.bg-red { background: var(--color-red); }
.bg-dark { background: var(--color-dark); }

.benefit-card:hover .icon-wrap {
    transform: scale(1.1);
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-top .shape-fill {
    fill: #ffffff; 
}

.gallery-section {
    background-color: var(--color-cream);
    padding-bottom: var(--spacing-xl);
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3rem;
}

.gallery-container {
    width: 100%;
}

.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition-fast);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.carousel-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-white);
    color: var(--color-pink);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--color-pink);
    color: var(--color-white);
}

.prev-btn { left: -10px; }
.next-btn { right: -10px; }

.carousel-indicators {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(42, 27, 36, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: var(--color-pink);
    width: 20px;
    border-radius: 10px;
}

.network-section {
    background: var(--gradient-primary);
    padding: calc(var(--spacing-xl) * 1.5) 0;
    position: relative;
    overflow: hidden;
}

.network-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 4rem auto;
}

.network-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 174, 50, 0.3) 0%, rgba(254, 49, 113, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-path {
    stroke-dashoffset: 1000;
    stroke-dasharray: 1000;
    animation: drawNetwork 10s ease-in-out infinite alternate;
}

@keyframes drawNetwork {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

.network-node {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 2;
    animation: levitateNode 4s ease-in-out infinite alternate;
    transition: var(--transition-normal);
}

.network-node:hover {
    transform: translate(-50%, -50%) scale(1.2) !important;
    border-color: var(--color-white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px rgba(254, 49, 113, 0.6);
    z-index: 10;
}

.network-node img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.network-node.size-s { width: 60px; height: 60px; }
.network-node.size-m { width: 80px; height: 80px; }
.network-node.size-l { width: 110px; height: 110px; }
.network-node.size-xl { width: 140px; height: 140px; border-width: 5px; border-color: var(--color-orange); }

.active-node {
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(247, 174, 50, 0.7); }
    100% { box-shadow: 0 0 0 20px rgba(247, 174, 50, 0); }
}

@keyframes levitateNode {
    0% { margin-top: 0; }
    100% { margin-top: -15px; }
}

.speakers-section {
    background-color: #ffffff;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.logo-box {
    background: var(--color-cream);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.logo-box:hover {
    border-color: var(--color-pink);
    color: var(--color-pink);
    transform: translateY(-5px);
}

.media-section {
    background-color: var(--color-cream);
    padding-bottom: var(--spacing-xl);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.media-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.media-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-orange);
    box-shadow: 0 15px 40px rgba(247, 174, 50, 0.2);
}

.media-icon {
    width: 80px;
    height: 80px;
    background: var(--color-cream);
    color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition-fast);
}

.media-card:hover .media-icon {
    background: var(--color-orange);
    color: var(--color-white);
    transform: scale(1.1);
}

.media-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.target-section {
    background: var(--gradient-primary);
    color: var(--color-white);
    overflow: hidden;
}

.target-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.target-list {
    list-style: none;
    margin-top: 2rem;
}

.target-list li {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
    transition: var(--transition-fast);
}

.target-list li:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.target-list li i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--color-cream);
}

.target-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="100" fill="%23ffffff" fill-opacity="0.1"/></svg>') center/contain no-repeat;
    animation: pulse 4s infinite;
}

.target-glass {
    position: relative;
    top: auto; right: auto; left: auto; bottom: auto;
    width: 280px;
}
.target-glass i { color: var(--color-orange); font-size: 4rem; }

.cta-section {
    background-color: var(--color-cream);
    padding: 100px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254,49,113,0.1) 0%, rgba(251,237,223,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer .social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer .social-links span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.footer .social-links a {
    color: var(--color-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none; 
}

.footer .social-links a:hover {
    color: var(--color-orange);
    transform: translateY(-3px);
}

.media-modal-content {
    background: transparent;
    box-shadow: none;
    max-width: 900px;
}

.media-carousel {
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
}

.media-slides-container {
    width: 100%;
    position: relative;
}

.media-slide {
    display: none;
    flex-direction: row;
    align-items: stretch;
    background: var(--color-white);
}

.media-slide.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

.media-slide img.media-img {
    width: 50%;
    object-fit: cover;
    aspect-ratio: 1/1; 
}

.media-info {
    width: 50%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.media-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.media-btn {
    display: flex;
}
.media-carousel .prev-btn { left: 10px; }
.media-carousel .next-btn { right: 10px; }

@media (max-width: 900px) {
    .about-grid, .target-container {
        grid-template-columns: 1fr;
    }
    .about-visuals {
        min-height: 300px;
        margin-top: 2rem;
    }
    .glass-card:nth-child(1) { top: 0; right: 0; }
    .glass-card.offset-card { bottom: 0; left: 0; }
    
    .gallery-grid {
        column-count: 2;
    }
    
    .target-image-wrapper {
        min-height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }
    
    .support-text {
        margin: 0 auto var(--spacing-lg) auto;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: var(--spacing-lg);
    }
    
    .blob-image {
        max-width: 300px;
    }
    
    .decor-item {
        font-size: 2rem;
    }

    .gallery-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; 
        -ms-overflow-style: none; 
        padding: 10px 0;
        scroll-behavior: smooth;
    }
    
    .gallery-container::-webkit-scrollbar {
        display: none; 
    }

    .gallery-grid {
        display: flex;
        column-count: auto;
        width: max-content;
        gap: 15px;
        margin-top: 0;
    }
    
    .gallery-item {
        width: 80vw;
        max-width: 320px;
        break-inside: auto;
        margin-bottom: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .carousel-btn {
        display: flex;
    }
    
    .carousel-indicators {
        display: flex;
    }
    
    .glass-card {
        width: 180px;
        padding: 1rem;
    }
    .glass-card i { font-size: 2rem; }

    .network-wrapper {
        height: 400px;
        margin-top: 2rem;
    }
    
    .network-node.size-s { width: 45px; height: 45px; }
    .network-node.size-m { width: 60px; height: 60px; }
    .network-node.size-l { width: 85px; height: 85px; }
    .network-node.size-xl { width: 100px; height: 100px; }

    .media-carousel {
        max-height: 80vh;
        overflow-y: auto;
        align-items: flex-start;
    }
    .media-slides-container {
        height: max-content;
    }
    .media-slide {
        flex-direction: column;
    }
    .media-slide img.media-img {
        width: 100%;
        max-height: 35vh; 
        object-position: center;
    }
    .media-info {
        width: 100%;
        padding: 1.5rem;
    }
    .media-info h3 {
        font-size: 1.5rem;
    }
    .media-info p {
        font-size: 1rem;
    }
    .media-carousel .prev-btn { left: 5px; }
    .media-carousel .next-btn { right: 5px; }
}
