
        :root {
            --gold: #D4AF37;
            --gold-light: #F5D98F;
            --gold-dark: #996515;
            --brown: #5C4033;
            --brown-light: #8B5A2B;
            --dark: #1A1A1A;
            --light: #F8F8F8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--brown), var(--dark));
            padding: 1.0rem 5%;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 1rem 5%;
            background: rgba(28, 28, 28, 0.95);
            backdrop-filter: blur(10px);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            vertical-align: middle;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-icon {
            color: var(--gold);
            font-size: 2rem;
            animation: pulse 2s infinite;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gold);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/1600x900/?gold,crypto');
            position: relative;
            overflow: hidden;
        }
        
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .hero-content {
            max-width: 600px;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .btn {
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--gold), var(--gold-dark));
            color: var(--dark);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
        }
        
        .btn-secondary {
            border: 2px solid var(--gold);
            color: var(--gold);
        }
        
        .btn-secondary:hover {
            background: var(--gold);
            color: var(--dark);
        }
        
        .token-animation {
            position: absolute;
            right: 5%;
            width: 500px;
            height: 500px;
            animation: float 6s ease-in-out infinite;
            z-index: 2;
        }
        
        .token {
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, var(--gold-light), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
            position: relative;
            overflow: hidden;
        }
        
        .token::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: conic-gradient(
                transparent 0deg,
                transparent 90deg,
                rgba(255, 255, 255, 0.2) 90deg,
                rgba(255, 255, 255, 0.2) 180deg,
                transparent 180deg,
                transparent 270deg,
                rgba(255, 255, 255, 0.1) 270deg,
                rgba(255, 255, 255, 0.1) 360deg
            );
            animation: rotate 10s linear infinite;
        }
        
        .token-inner {
            width: 70%;
            height: 70%;
            background: var(--brown);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
        }
        
        .token-logo {
            font-size: 4rem;
            color: var(--gold);
            animation: pulse 2s infinite;
        }
        
        /* Features Section */
        .features {
            padding: 5rem 5%;
            background-color: var(--dark);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }
        
        .section-title p {
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: linear-gradient(145deg, #222, #1a1a1a);
            padding: 2rem;
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(212, 175, 55, 0.1);
            animation: fadeIn 1s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--light);
        }
        
        .feature-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }
        
        /* Tokenomics Section */
        .tokenomics {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--brown), var(--dark));
        }
        
        .tokenomics-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .tokenomics-image {
            flex: 1;
            position: relative;
            min-height: 400px;
        }
        
        .pie-chart {
            width: 100%;
            height: 100%;
            position: relative;
            animation: fadeInLeft 1s ease;
        }
        
        .chart-center {
            position: absolute;
            width: 120px;
            height: 120px;
            background: var(--brown);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--gold);
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }
        
        .chart-segment {
            position: absolute;
            width: 100%;
            height: 100%;
            clip-path: polygon(50% 50%, 50% 0, 100% 0);
            border-radius: 50%;
            transform-origin: center;
        }
        
        .segment-1 {
            background: var(--gold);
            transform: rotate(0deg);
        }
        
        .segment-2 {
            background: var(--gold-light);
            transform: rotate(72deg);
        }
        
        .segment-3 {
            background: var(--gold-dark);
            transform: rotate(144deg);
        }
        
        .segment-4 {
            background: var(--brown-light);
            transform: rotate(216deg);
        }
        
        .segment-5 {
            background: #8B7500;
            transform: rotate(288deg);
        }
        
        .tokenomics-details {
            flex: 1;
            animation: fadeInRight 1s ease;
        }
        
        .tokenomics-details h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }
        
        .tokenomics-list {
            list-style: none;
        }
        
        .tokenomics-item {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
            position: relative;
        }
        
        .tokenomics-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 10px;
            height: 10px;
            background: var(--gold);
            border-radius: 50%;
        }
        
        .tokenomics-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        
        .tokenomics-item p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }
        
        /* Roadmap Section */
        .roadmap {
            padding: 5rem 5%;
            background-color: var(--dark);
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--gold), var(--brown));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            animation: fadeInUp 0.5s ease;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background: linear-gradient(145deg, #222, #1a1a1a);
            border-radius: 10px;
            border-left: 4px solid var(--gold);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            border-left: none;
            border-right: 4px solid var(--gold);
        }
        
        .timeline-content h3 {
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        .timeline-content p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }
        
        .timeline-date {
            position: absolute;
            width: 130px;
            background: var(--gold);
            color: var(--dark);
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: bold;
            text-align: center;
            top: 20px;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd) .timeline-date {
            right: -170px;
        }
        
        .timeline-item:nth-child(even) .timeline-date {
            left: -170px;
        }
        
        .timeline-marker {
            position: absolute;
            width: 25px;
            height: 25px;
            background: var(--gold);
            border: 4px solid var(--brown);
            border-radius: 50%;
            top: 20px;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd) .timeline-marker {
            right: -12px;
        }
        
        .timeline-item:nth-child(even) .timeline-marker {
            left: -12px;
        }
        
        /* Team Section */
        .team {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--dark), var(--brown));
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-member {
            background: linear-gradient(145deg, #222, #1a1a1a);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid rgba(212, 175, 55, 0.1);
            animation: fadeIn 1s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .member-image {
            height: 300px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .member-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        
        .member-info p {
            color: var(--gold);
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-links a {
            color: var(--light);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--gold);
            color: var(--dark);
        }
        
        /* Contact Section */
        .contact {
            padding: 5rem 5%;
            background-color: var(--dark);
        }
        
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .contact-info {
            animation: fadeInLeft 1s ease;
        }
        
        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }
        
        .contact-info p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .info-icon {
            font-size: 1.5rem;
            color: var(--gold);
            margin-top: 5px;
        }
        
        .info-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        
        .info-content p, .info-content a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-content a:hover {
            color: var(--gold);
        }
        
        .contact-form {
            background: linear-gradient(145deg, #222, #1a1a1a);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            animation: fadeInRight 1s ease;
        }
        
        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--light);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--light);
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.15);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: linear-gradient(to right, var(--gold), var(--gold-dark));
            color: var(--dark);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--brown), var(--dark));
            padding: 3rem 5%;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 1.5rem;
        }
        
        .footer-logo-icon {
            color: var(--gold);
            font-size: 2rem;
        }
        
        .footer-logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .social-links-footer {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .social-links-footer a {
            color: var(--light);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-links-footer a:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-5px);
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @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 fadeInLeft {
            from { 
                opacity: 0;
                transform: translateX(-30px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from { 
                opacity: 0;
                transform: translateX(30px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .token-animation {
                width: 400px;
                height: 400px;
            }
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .token-animation {
                width: 350px;
                height: 350px;
                right: 2%;
            }
            
            .tokenomics-content {
                flex-direction: column;
            }
            
            .tokenomics-image {
                min-height: 300px;
                width: 100%;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-date,
            .timeline-item:nth-child(even) .timeline-date {
                left: 15px;
                right: auto;
                top: -25px;
                width: auto;
                text-align: left;
            }
            
            .timeline-item:nth-child(odd) .timeline-marker,
            .timeline-item:nth-child(even) .timeline-marker {
                left: 20px;
                right: auto;
            }
            
            .timeline-item:nth-child(even) .timeline-content {
                border-left: 4px solid var(--gold);
                border-right: none;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                transition: left 0.3s;
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 120px;
                padding-bottom: 50px;
            }
            
            .hero-content {
                margin-bottom: 3rem;
            }
            
            .cta-buttons {
                justify-content: center;
            }
            
            .token-animation {
                position: relative;
                right: auto;
                margin: 0 auto;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .token-animation {
                width: 280px;
                height: 280px;
            }
            
            .token-logo {
                font-size: 3.5rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        /* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brown), var(--dark));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.loading-icon {
    color: var(--gold);
    font-size: 3rem;
    animation: pulse 1.5s infinite;
}

.loading-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    animation: loading 2.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    20% { width: 20%; }
    40% { width: 45%; }
    60% { width: 65%; }
    80% { width: 85%; }
    100% { width: 100%; }
}

 .faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .faq-item {
    background: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  .faq-question {
    padding: 15px 20px;
    font-weight: 600;
    background: #000;
    cursor: pointer;
    position: relative;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
  }

  .faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #e2d4d4;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
  }