:root {
    --bg-dark: #1A3635;
    --bg-darker: #122827;
    --primary: #96F7D2;
    --primary-dark: #7ad4b1;
    --gradient-start: #96F7D2;
    --gradient-end: #7ad4b1;
    --accent: #96F7D2;
    --accent-red: #ff6b6b;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --card-bg: #1f3e3d;
    --border-color: #2a4b4a;
    --positive: #96F7D2;
    --negative: #ff6b6b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Graph Background Effect */
.graph-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(150, 247, 210, 0.1) 40px,
            rgba(150, 247, 210, 0.1) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(150, 247, 210, 0.1) 40px,
            rgba(150, 247, 210, 0.1) 41px
        );
    pointer-events: none;
}

.graph-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(150, 247, 210, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(122, 212, 177, 0.1) 0%, transparent 40%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Cursor Follower */
.shooting-star {
    position: fixed;
    width: 40px;
    height: 40px;
    z-index: 9999;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(150, 247, 210, 0.8));
    transition: all 0.15s ease-out;
    opacity: 0;
}

.shooting-star img {
    width: 100%;
    height: 100%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(26, 54, 53, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    margin: 0;
    gap: 40px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 15px rgba(150, 247, 210, 0.4));
}

.nav-links {
    display: flex;
    gap: 32px;
    margin-left: auto;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.connect-wallet {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--bg-dark);
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(150, 247, 210, 0.2);
}

.connect-wallet:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(150, 247, 210, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 90px;
    font-weight: 400;
    font-family: 'Teodor', Georgia, Garamond, serif;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    align-items: center;
}

.btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1rem;
    height: 52px;
    min-width: 180px;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(150, 247, 210, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(150, 247, 210, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(150, 247, 210, 0.3);
}

/* Animated UI Button */
.ui-btn {
    --btn-default-bg: rgba(26, 54, 53, 0.8);
    --btn-padding: 16px 36px;
    --btn-hover-bg: rgba(31, 62, 61, 0.95);
    --btn-transition: .3s;
    --btn-letter-spacing: .1rem;
    --btn-animation-duration: 1.2s;
    --btn-shadow-color: rgba(150, 247, 210, 0.3);
    --btn-shadow: 0 4px 20px var(--btn-shadow-color);
    --hover-btn-color: #96F7D2;
    --default-btn-color: #fff;
    --font-size: 16px;
    --font-weight: 700;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ui-btn {
    box-sizing: border-box;
    padding: var(--btn-padding);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--default-btn-color);
    font: var(--font-weight) var(--font-size) var(--font-family);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    cursor: pointer;
    transition: var(--btn-transition);
    overflow: hidden;
    box-shadow: var(--btn-shadow);
    border-radius: 12px;
    height: 52px;
    min-width: 180px;
}

.ui-btn span {
    letter-spacing: var(--btn-letter-spacing);
    transition: var(--btn-transition);
    box-sizing: border-box;
    position: relative;
    background: inherit;
    color: var(--bg-dark);
    font-weight: 700;
}

.ui-btn span::before {
    box-sizing: border-box;
    position: absolute;
    content: "";
    background: inherit;
}

.ui-btn:hover, .ui-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(150, 247, 210, 0.5);
    background: linear-gradient(135deg, #7ad4b1, #96F7D2);
}

.ui-btn:hover span, .ui-btn:focus span {
    color: var(--bg-dark);
}

.ui-btn:hover span::before, .ui-btn:focus span::before {
    animation: chitchat linear both var(--btn-animation-duration);
}

@keyframes chitchat {
    0% { content: "#"; }
    5% { content: "."; }
    10% { content: "^{"; }
    15% { content: "-!"; }
    20% { content: "#$_"; }
    25% { content: "№:0"; }
    30% { content: "#{+."; }
    35% { content: "@}-?"; }
    40% { content: "?{4@%"; }
    45% { content: "=.,^!"; }
    50% { content: "?2@%"; }
    55% { content: "\;1}]"; }
    60% { content: "?{%:%"; right: 0; }
    65% { content: "|{f[4"; right: 0; }
    70% { content: "{4%0%"; right: 0; }
    75% { content: "'1_0<"; right: 0; }
    80% { content: "{0%"; right: 0; }
    85% { content: "]>'"; right: 0; }
    90% { content: "4"; right: 0; }
    95% { content: "2"; right: 0; }
    100% { content: ""; right: 0; }
}

/* Nav button variant - smaller size */
.ui-btn-nav {
    --btn-padding: 12px 28px;
    --font-size: 15px;
    height: 44px;
    min-width: 120px;
}

/* Cat Image Section */
.cat-image {
    text-align: center;
    padding: 50px 0 5px;
    background-color: transparent;
}

.cat-image img {
    width: 60%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(150, 247, 210, 0.2));
    transition: transform 0.3s ease;
}

.cat-image img:hover {
    transform: scale(1.05);
}

/* Coins Carousel */
.coins-carousel {
    padding: 50px 60px;
    text-align: center;
    position: relative;
    margin: 60px 0;
}

.coins-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 100%;
    background: linear-gradient(135deg, rgba(150, 247, 210, 0.03), rgba(26, 54, 53, 0.4));
    border: 1px solid rgba(150, 247, 210, 0.15);
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: 200px;
}

.coins-carousel h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.coins-scroll {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    width: max-content;
    animation: scroll 10s linear infinite;
    will-change: transform;
}

.coins-scroll:hover {
    animation-play-state: paused;
}

.coin-card {
    flex: 0 0 320px;
    background: linear-gradient(135deg, rgba(150, 247, 210, 0.08), rgba(122, 212, 177, 0.03));
    border: 1px solid rgba(150, 247, 210, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.coin-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(150, 247, 210, 0.25);
    background: linear-gradient(135deg, rgba(150, 247, 210, 0.12), rgba(122, 212, 177, 0.06));
}

.coin-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--bg-dark);
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(150, 247, 210, 0.3);
}

.coin-icon-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(150, 247, 210, 0.2);
}

.coin-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-light);
}

.coin-symbol {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.coin-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(150, 247, 210, 0.15);
}

.leverage {
    background: rgba(150, 247, 210, 0.15);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.price {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-light);
}

.change {
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
}

.change.positive {
    color: var(--positive);
    background: rgba(150, 247, 210, 0.1);
}

.change.negative {
    color: var(--negative);
    background: rgba(255, 107, 107, 0.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Trading Interface Section */
.trading-interface {
    padding: 40px 0;
    text-align: center;
}

.trading-interface {
    background: transparent;
    margin-top: 0px;
    text-align: center;
}

.trading-interface h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.interface-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(150, 247, 210, 0.3);
    max-width: 1400px;
    margin: 0 auto 60px;
}

.interface-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.interface-image:hover img {
    transform: scale(1.02);
}

.interface-text {
    max-width: 900px;
    margin: 0 auto;
}

.interface-text p {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.features-list li {
    font-size: 15px;
    color: var(--text-light);
    padding: 20px 24px;
    line-height: 1.5;
    background: rgba(26, 54, 53, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(150, 247, 210, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.features-list li:hover {
    background: rgba(150, 247, 210, 0.08);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(150, 247, 210, 0.15);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(150, 247, 210, 0.05), rgba(26, 54, 53, 0.8));
    border: 1px solid rgba(150, 247, 210, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(150, 247, 210, 0.2);
    background: linear-gradient(135deg, rgba(150, 247, 210, 0.08), rgba(26, 54, 53, 0.9));
}

.feature-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(150, 247, 210, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nft-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-light);
}

.feature-card > p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-points {
    list-style: none;
    margin-bottom: 24px;
}

.feature-points li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-link:hover {
    transform: translateX(5px);
    color: var(--primary-dark);
}

/* How It Works Section */
.how-it-works {
    padding: 60px 60px;
    text-align: center;
    background: transparent;
    position: relative;
    margin: 60px 0;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(150, 247, 210, 0.03), rgba(26, 54, 53, 0.4));
    border: 1px solid rgba(150, 247, 210, 0.15);
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

.how-it-works h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.how-it-works .section-subtitle {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step {
    background: rgba(26, 54, 53, 0.5);
    border: 1px solid rgba(150, 247, 210, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(150, 247, 210, 0.25);
    background: rgba(150, 247, 210, 0.08);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-dark);
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(150, 247, 210, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(150, 247, 210, 0.5);
}

.step h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.step:hover h3 {
    color: var(--primary);
}

.step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    nav {
        padding: 20px;
        margin: 0 -20px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .coins-carousel h2 {
        font-size: 32px;
    }
    
    .cat-image img {
        width: 80%;
        max-width: 300px;
    }
    
    .trading-interface h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .interface-image {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features-list li {
        font-size: 15px;
        padding: 10px 16px;
    }
    
    .features-section h2,
    .how-it-works h2 {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Advanced Features Section */
.advanced-features {
    padding: 80px 0;
    text-align: center;
}

.advanced-features h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advanced-features .section-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.advanced-card {
    background: linear-gradient(135deg, rgba(150, 247, 210, 0.04), rgba(26, 54, 53, 0.6));
    border: 1px solid rgba(150, 247, 210, 0.2);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: left;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.advanced-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(150, 247, 210, 0.2);
    background: linear-gradient(135deg, rgba(150, 247, 210, 0.08), rgba(26, 54, 53, 0.8));
}

.advanced-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(150, 247, 210, 0.15), rgba(122, 212, 177, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.advanced-card:hover .advanced-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    transform: scale(1.05);
}

.advanced-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-light);
}

.advanced-card > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-bullets li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.feature-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(26, 54, 53, 0.8), rgba(15, 30, 29, 0.9));
    border-top: 1px solid rgba(150, 247, 210, 0.2);
    padding: 40px 60px 20px;
    margin-top: 100px;
    width: 100%;
}

.footer-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(150, 247, 210, 0.5));
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.footer-socials h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 24px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(26, 54, 53, 0.6);
    border: 1px solid rgba(150, 247, 210, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(150, 247, 210, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(150, 247, 210, 0.2);
}

.social-link svg {
    flex-shrink: 0;
    color: var(--primary);
}

.social-link span {
    font-size: 15px;
    font-weight: 600;
}

.footer-bottom {
    max-width: 100%;
    margin: 0;
    padding: 20px 0 0;
    margin-top: 30px;
    border-top: 1px solid rgba(150, 247, 210, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .advanced-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .advanced-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
