:root {
    --primary: #69ac80;
    --primary-dark: #5a9970;
    --secondary: #b07857;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --gray: #2d2d2d;
    --glass: rgba(30, 30, 30, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 25% 25%, rgba(105, 172, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(176, 120, 87, 0.15) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.glass-nav {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(105, 172, 128, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 172, 128, 0.4);
}

.secondary-button {
    background: transparent;
    color: var(--light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: rgba(105, 172, 128, 0.1);
    transform: translateY(-2px);
}

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

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.hero-text {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-logo {
    height: 300px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInRight 1s ease 0.6s forwards;
    filter: drop-shadow(0 0 20px rgba(105, 172, 128, 0.5));
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
    width: fit-content;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.features-section {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 2rem;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.feature-card {
    background: rgba(45, 45, 45, 0.5);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(105, 172, 128, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: transparent;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.buy-section {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 2rem;
    text-align: center;
}

.buy-options {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.buy-platform {
    background: rgba(45, 45, 45, 0.5);
    padding: 2rem;
    border-radius: 12px;
    min-width: 300px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.buy-platform:hover {
    transform: translateY(-5px);
    background: rgba(105, 172, 128, 0.1);
}

.buy-platform h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.assets-section {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 2rem;
    text-align: center;
}

.assets-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    margin-top: 2rem;
    text-align: left;
}

.assets-logo {
    height: 200px;
    filter: drop-shadow(0 0 15px rgba(105, 172, 128, 0.3));
    transition: transform 0.3s ease;
}

.assets-logo:hover {
    transform: scale(1.05);
}

.assets-text {
    max-width: 600px;
}

.assets-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.assets-team {
    list-style-type: none;
    margin: 1.5rem 0;
    padding: 0;
}

.assets-team li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
    font-size: 1rem;
}

.assets-team li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.assets-button {
    display: inline-block;
    margin-top: 1rem;
}

.site-footer {
    background: var(--darker);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 50px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.credit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.credit a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: underline;
}

.copy {
    text-align: center;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: transparent;
    pointer-events: none;
}

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .hero-text {
        max-width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-logo {
        height: 200px;
        margin-top: 2rem;
        transform: translateY(20px);
        animation: fadeInUp 1s ease 0.6s forwards;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .assets-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .assets-team {
        text-align: left;
        display: inline-block;
    }
    
    .assets-logo {
        height: 150px;
    }
}

@media (max-width: 790px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .nav-container {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        height: 50px;
    }
    
    .mobile-menu-button {
        display: block;
        position: absolute;
        top: 1rem;
        right: 2rem;
        z-index: 10;
        font-size: 1.5rem;
        background: none;
        border: none;
        color: var(--light);
        cursor: pointer;
    }
    
    .nav-links {
        width: 100%;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.2s ease;
        margin-top: 1rem;
    }
    
    .nav-links.show {
        max-height: 500px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link.cta-button {
        margin-top: 0.5rem;
    }
}

@media (max-width: 400px) {
    .logo {
        width: 50px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .hero-logo {
        height: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .buy-options {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .buy-platform {
        min-width: auto;
        width: 100%;
    }
    .assets-section {
        padding: 1.5rem;
    }
    
    .assets-logo {
        height: 120px;
    }
    
    .assets-team li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
}