:root {
    --primary-color: #05EB8F;
    --secondary-color: #00E6FF;
    --dark-bg: #0a0a0f;
    --dark-surface: #141419;
    --darker-surface: #0d0d12;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-purple: #9945FF;
    --accent-cyan: #14F195;
    --gradient-primary: linear-gradient(135deg, #05EB8F 0%, #00E6FF 100%);
    --gradient-secondary: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
    --shadow-glow: 0 0 40px rgba(5, 235, 143, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(5, 235, 143, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Particles Background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(5, 235, 143, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(5, 235, 143, 0.5));
}

.nav-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-link img {
    filter: brightness(0) saturate(100%) invert(71%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(89%);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(5, 235, 143, 0.1);
    transform: translateY(-3px);
}

.social-link:hover img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(47%) saturate(1526%) hue-rotate(101deg) brightness(101%) contrast(96%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(5, 235, 143, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(5, 235, 143, 0.1);
    border: 1px solid rgba(5, 235, 143, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

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

.hero-ticker {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

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

.btn-secondary:hover {
    background: rgba(5, 235, 143, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(var(--shadow-glow-strong));
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* About Section */
.about {
    background: var(--dark-surface);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text .lead {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
}

.about-text .highlight {
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.5rem;
    background: rgba(5, 235, 143, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(5, 235, 143, 0.3));
    animation: floating 8s ease-in-out infinite;
}

/* Kingdom Features */
.kingdom {
    background: var(--dark-bg);
}

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

.feature-card {
    background: var(--dark-surface);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(5, 235, 143, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(5, 235, 143, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.feature-icon i {
    display: inline-block;
}

.feature-card:hover .feature-icon {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How to Buy */
.how-to-buy {
    background: var(--darker-surface);
    position: relative;
}

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

.step-card {
    background: var(--dark-surface);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(5, 235, 143, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(5, 235, 143, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contract-address {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contract-address p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.address-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark-surface);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(5, 235, 143, 0.2);
}

.address-box code {
    color: var(--primary-color);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    word-break: break-all;
    font-weight: 600;
}

.copy-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* Roadmap */
.roadmap {
    background: var(--dark-bg);
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.roadmap-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 4rem;
}

.roadmap-marker {
    position: absolute;
    left: -8px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color);
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% { box-shadow: 0 0 20px var(--primary-color); }
    50% { box-shadow: 0 0 40px var(--primary-color); }
}

.roadmap-content {
    background: var(--dark-surface);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(5, 235, 143, 0.1);
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(5, 235, 143, 0.2);
}

.roadmap-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.roadmap-content ul {
    list-style: none;
    padding-left: 0;
}

.roadmap-content li {
    color: var(--text-secondary);
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
}

.roadmap-content li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
    line-height: 1;
}

/* Community */
.community {
    background: var(--dark-surface);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.community-card {
    background: var(--dark-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(5, 235, 143, 0.1);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.community-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(5, 235, 143, 0.2);
}

.community-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.community-icon img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(47%) saturate(1526%) hue-rotate(101deg) brightness(101%) contrast(96%);
    transition: all 0.3s ease;
}

.community-card:hover .community-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.community-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.community-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--darker-surface);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(5, 235, 143, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(5, 235, 143, 0.5));
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container,
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img,
    .about-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .roadmap-timeline::before {
        left: 10px;
    }

    .roadmap-item {
        padding-left: 3rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-logo img {
        width: 40px;
        height: 40px;
    }

    .nav-logo span {
        font-size: 1.2rem;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .features-grid,
    .steps-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}