/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #00d4ff;
    --secondary-blue: #0099cc;
    --dark-blue: #001122;
    --darker-blue: #000811;
    --accent-cyan: #00ffff;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #001122 0%, #003366 50%, #001122 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-strong: 0 0 40px rgba(0, 212, 255, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker-blue);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 153, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

/* Left Side - Logo and Branding */
.hero-left {
    text-align: left;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
    }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.brand-name {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dynamicBrand 3s ease-in-out infinite;
    font-size: 4rem;
    font-weight: 800;
    display: block;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform-origin: left center;
}

@keyframes dynamicBrand {
    0% { 
        filter: hue-rotate(0deg) brightness(1);
        transform: scale(1) translateX(0);
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    }
    25% {
        filter: hue-rotate(15deg) brightness(1.1);
        transform: scale(1.02) translateX(5px);
        text-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
    }
    50% { 
        filter: hue-rotate(30deg) brightness(1.2);
        transform: scale(1.05) translateX(0);
        text-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
    }
    75% {
        filter: hue-rotate(15deg) brightness(1.1);
        transform: scale(1.02) translateX(-5px);
        text-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
    100% {
        filter: hue-rotate(0deg) brightness(1);
        transform: scale(1) translateX(0);
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    }
}

@keyframes colorShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.8;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(176, 176, 176, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 4s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        filter: brightness(1);
        transform: translateY(0);
    }
    100% {
        filter: brightness(1.1);
        transform: translateY(-2px);
    }
}

/* Center - CTA */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-container {
    text-align: center;
    background: rgba(0, 17, 34, 0.8);
    padding: 50px 45px;
    border-radius: 25px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
    min-width: 400px;
}

.cta-title {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--accent-cyan);
    font-weight: 600;
    font-style: normal;
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    animation: coinGlow 2s ease-in-out infinite alternate;
}

@keyframes coinGlow {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
        transform: scale(1.02);
    }
}

.pump-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-accent);
    color: var(--darker-blue);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.pump-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.pump-logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.pulse-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    animation: pulseEffect 2s ease-in-out infinite;
}

@keyframes pulseEffect {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    animation: statusBlink 1s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* PDF Download Section */
.pdf-download-section {
    margin-top: 20px;
    text-align: center;
}

.pdf-download-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pdf-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    border-color: var(--accent-cyan);
}

.pdf-download-btn i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.pdf-download-btn span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.pdf-download-btn small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.2;
}

.pdf-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.pdf-download-btn:hover::before {
    left: 100%;
}

/* Right Side - AI Avatar Video */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 350px !important;
    height: 622px !important; /* 9:16 aspect ratio (vertical) - slightly bigger */
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-glow);
    background: var(--gradient-primary);
    flex-shrink: 0;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #003366 0%, #001122 100%);
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.avatar-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.avatar-video:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
    cursor: pointer;
}


.video-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    text-align: center;
}

.video-fallback i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.video-fallback p {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.video-fallback small {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.thumbnail-fallback {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
}

.thumbnail-fallback i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.thumbnail-fallback p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.thumbnail-fallback small {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin: 0;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-small {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker-blue);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.play-button-small:hover {
    background: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

/* Carousel Section */
.carousel-section {
    padding: 100px 0;
    background: var(--dark-blue);
    position: relative;
    width: 100%;
}

.carousel-section .container {
    max-width: 100%;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
    text-shadow: var(--shadow-glow);
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    gap: 20px;
        animation: smoothScroll 17s linear infinite;
        animation-timing-function: linear;
    will-change: transform;
    width: 200%; /* Double width to accommodate duplicated items */
    animation-fill-mode: both;
}

@keyframes smoothScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    min-width: 400px;
    width: 400px;
    background: rgba(0, 17, 34, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    opacity: 0.9;
    transform: scale(0.95);
    flex-shrink: 0;
}

.carousel-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-blue);
    opacity: 1;
}

.carousel-item:nth-child(1) {
    opacity: 1;
    transform: scale(1);
}

.carousel-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.carousel-item h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    flex-shrink: 0;
}

.carousel-item p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-item .watch-btn {
    background: var(--gradient-accent);
    color: var(--darker-blue);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-self: flex-start;
}

.carousel-item .watch-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}


/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--darker-blue);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(0, 17, 34, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-blue);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--darker-blue);
    font-size: 1.5rem;
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.about-personal {
    position: sticky;
    top: 100px;
}

.personal-card {
    background: rgba(0, 17, 34, 0.8);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.personal-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--darker-blue);
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}

.personal-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
}

.personal-card h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.personal-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--darker-blue);
    transform: scale(1.1);
}

/* Community Section Styles */
.community-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.community-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.community-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    animation: dynamicBrand 3s ease-in-out infinite;
}

.community-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.community-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #00a8ff 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.discord-btn {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.community-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.telegram-btn:hover {
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.5);
}

.discord-btn:hover {
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.5);
}

.x-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.x-btn:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.community-btn:hover .btn-glow {
    left: 100%;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    padding: 50px 0 20px;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .brand-name {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 380px;
        text-align: left;
        line-height: 1.7;
        letter-spacing: 0.2px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .carousel-item {
        min-width: 300px;
        width: 300px;
    }
    
    .community-title {
        font-size: 2.2rem;
    }
    
    .community-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .community-btn {
        min-width: 250px;
    }
    
    .community-stats {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-container {
        padding: 35px 25px;
        transform: scale(1.05);
        min-width: 320px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .pump-link {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .video-container {
        width: 315px !important;
        height: 560px !important; /* 9:16 aspect ratio (vertical) - slightly bigger */
    }
    
    .community-title {
        font-size: 1.8rem;
    }
    
    .community-description {
        font-size: 1rem;
    }
    
    .community-btn {
        padding: 15px 25px;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
