 :root {
            --primary: #7B3FF2;
            --primary-dark: #6B2FE2;
            --secondary: #00D4FF;
            --accent: #FFD700;
            --dark: #0A0A0F;
            --dark-light: #1A1A2E;
            --gray: #2A2A3E;
            --light: #FFFFFF;
            --text-gray: #B8BCC8;
            --glass: rgba(255, 255, 255, 0.05);
        }

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

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

        h1, h2, h3 {
            font-family: "Freckle Face", system-ui;
            font-weight: 400;
            font-style: normal; 
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .navbar.scrolled {
            background: rgba(10, 10, 15, 0.95);
            padding: 0.75rem 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: -0.5px;
            font-family: "Freckle Face", system-ui;
            font-style: normal;
        }

        .logo span {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .logo img {
            height: 40px;
            margin-right: 12px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            font-family: "Freckle Face", system-ui;
            font-weight: 400;
            font-style: normal; 
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1.5rem;
            
        }

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

        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: -0.02em;
        }

       .btn-primary {
            background: linear-gradient(135deg, #00D4FF, #0099CC);
            color: white;
            box-shadow: 0 4px 24px rgba(0, 212, 255, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #00B8E6, #0088BB);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #00D4FF;
            color: #00D4FF;
        }

        .btn-outline:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: #00B8E6;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 100px;
            background: radial-gradient(ellipse at top, rgba(123, 63, 242, 0.1), transparent),
                        radial-gradient(ellipse at bottom right, rgba(0, 212, 255, 0.05), transparent);
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            width: 100%;
            max-width: 700px;
            height: auto;
            border-radius: 20px;
        }

        /* Contract Box */
        .contract-box {
            background: linear-gradient(135deg, rgba(123, 63, 242, 0.1), rgba(0, 212, 255, 0.05));
            border-radius: 16px;
            padding: 1rem;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border: 1px solid rgba(0, 212, 255, 0.3);
            max-width: fit-content;
        }

        .contract-label {
            position: absolute;
            top: -10px;
            left: 16px;
            background: linear-gradient(135deg, #7B3FF2, #00D4FF);
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .contract-address {
            font-family: 'SF Mono', 'Monaco', monospace;
            font-size: 0.875rem;
            color: #00D4FF;
            letter-spacing: -0.02em;
        }

        .copy-btn {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            color: #00D4FF;
            padding: 0.5rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .copy-btn:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: #00D4FF;
            transform: scale(1.05);
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            
        }

        /* Social Links */
        .social-links2 {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center
        }

        .social-link {
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
        }

        .social-link img {
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .social-links {
                justify-content: center;
                margin-bottom: 30px;
            }
        }

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

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

        .section-header h2 {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.03em;
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            padding-bottom: 20px;
        }

    /* Story Section */
.story-section {
    background: linear-gradient(180deg, transparent, rgba(123, 63, 242, 0.02), transparent);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gray);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.story-content strong {
    color: var(--light);
    font-weight: 600;
}

.story-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light);
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(123, 63, 242, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
}

.story-conclusion {
    margin-top: 2rem;
    font-style: italic;
}

.story-proof-inline {
    margin: 2rem 0;
    text-align: center;
}

.proof-image {
    background: var(--gray);
    border-radius: 12px;
    border: 2px solid transparent;
    background: linear-gradient(var(--gray), var(--gray)) padding-box,
                linear-gradient(90deg, var(--primary), var(--secondary)) border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.proof-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    display: block;
}

.story-proof-inline .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-content {
        padding: 2rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .story-highlight {
        font-size: 1.125rem;
        padding: 1rem;
    }
    
    .proof-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .story-content {
        padding: 1.5rem;
    }
}
        /* NFT Section Redesign */
.nft-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nft-text-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.nft-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.nft-text-content .btn {
    margin-top: 1rem;
}

/* NFT Section Redesign */
.nft-top-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.nft-text-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.nft-text-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.nft-text-content .btn {
    margin-top: 1rem;
}

.nft-featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nft-featured-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* NFT Slideshow Section - Full Width */
.nft-slideshow-section {
   position: relative;
   overflow: hidden;
   margin-top: 3rem;
   padding: 2rem 0;
   /* Break out of container */
   margin-left: calc(-50vw + 50%);
   margin-right: calc(-50vw + 50%);
   width: 100vw;
}

.slideshow-container {
   width: 100%;
   overflow: hidden;
   position: relative;
}

.slideshow-track {
   display: flex;
   gap: 1.5rem;
   animation: slideshow 45s linear infinite;
}

.slideshow-track img {
   height: 200px;
   width: 200px;
   object-fit: cover;
   border-radius: 16px;
   flex-shrink: 0;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

/* Pause on hover */
.nft-slideshow-section:hover .slideshow-track {
   animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
   .nft-top-content {
       grid-template-columns: 1fr;
       gap: 2rem;
       text-align: center;
   }
   
   .nft-featured-image {
       order: -1; /* Image first on mobile */
   }
   
   .nft-text-content h3 {
       font-size: 1.75rem;
   }
   
   .slideshow-track img {
       height: 150px;
       width: 150px;
   }
}

@media (max-width: 480px) {
   .slideshow-track img {
       height: 120px;
       width: 120px;
   }
   
   .slideshow-track {
       gap: 1rem;
   }
}

/* Tokenomics Section Redesign */
.tokenomics-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.chart-container {
    background: var(--gray);
    border-radius: 20px;
    padding: 1rem;
    border: 2px solid transparent;
    background: linear-gradient(var(--gray), var(--gray)) padding-box,
                linear-gradient(90deg, var(--primary), var(--secondary)) border-box;
    overflow: hidden;
    height: 720px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dex-chart {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.token-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.token-card {
    background: linear-gradient(var(--gray), var(--gray)) padding-box,
                linear-gradient(90deg, transparent, transparent) border-box;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.token-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(var(--gray), var(--gray)) padding-box,
                linear-gradient(90deg, var(--primary), var(--secondary)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.token-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.token-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.token-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-container {
        height: 700px;
    }
    
    .token-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .chart-container {
        height: 300px;
        padding: 0.5rem;
    }

    .chart-container {
        height: 600px;
    }
    
    .token-info-grid {
        grid-template-columns: 1fr;
    }
    
    .token-card {
        padding: 1.5rem;
    }
    
    .token-value {
        font-size: 1.75rem;
    }
}

.community-cta {
    text-align: center;
}

.cta-image {
    margin-bottom: 2rem;
}

.cta-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

.cta-text {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .cta-image img {
        max-width: 250px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

        /* Footer */
        .footer {
            background: var(--dark-light);
            padding: 2rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            text-decoration: none;
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 2rem;
            font-family: "Freckle Face", system-ui;
            font-style: normal;
        }

        .footer-logo img {
            height: 40px;
            width: 40px;
            border: 2px solid transparent;
            border-radius: 50%;
            background: linear-gradient(var(--dark), var(--dark)) padding-box,
                        linear-gradient(90deg, var(--primary), var(--secondary)) border-box;
        }

        .footer-logo span {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }

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

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

        .copyright {
            margin-top: 2rem;
            color: var(--text-gray);
            font-size: 0.875rem;
        }

        /* Mobile Responsive */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 4px;
        }

        /* Add this to your CSS */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--light);
            border-radius: 2px;
            transition: all 0.3s ease;
        }


        @media (max-width: 1024px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--dark-light);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                border-left: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-image {
                order: -1;
                margin-bottom: 2rem;
            }

            .contract-box {
                margin: 0 auto;
            }

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

            .section-header h2 {
                font-size: 2rem;
            }

            .story-content {
                padding: 2rem;
            }

            .token-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .contract-address {
                font-size: 0.75rem;
            }

            .btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }

            .story-content {
                padding: 1.5rem;
            }

            .story-content p {
                font-size: 1rem;
            }

            .story-highlight {
                font-size: 1.125rem;
                padding: 1rem;
            }
        }

        /* Scroll animations - subtle */
        [data-aos] {
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        [data-aos="fade-up"] {
            opacity: 0;
            transform: translateY(30px);
        }

        [data-aos].aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        .logo img {
        height: 50px;
        border: 2px solid transparent;
        border-radius: 50%;
        background: linear-gradient(var(--dark), var(--dark)) padding-box,
                    linear-gradient(90deg, var(--primary), var(--secondary)) border-box;
    }
/* How to Buy Section */
.how-to-buy-section {
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.02), transparent);
    padding: 1rem 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.step-card {
    background: var(--gray);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
}

.step-content {
    margin-top: 1rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wallet-download {
    margin-top: 1rem;
}

.wallet-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(123, 63, 242, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
}

.wallet-link:hover {
    background: linear-gradient(135deg, rgba(123, 63, 242, 0.2), rgba(0, 212, 255, 0.1));
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.wallet-link img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.wallet-link span {
    font-weight: 600;
    font-size: 0.95rem;
}

.tip-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--accent);
}

.tip-icon {
    font-size: 1.25rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.contract-info-small {
    background: rgba(123, 63, 242, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.contract-info-small .label {
    color: var(--text-gray);
    font-weight: 600;
}

.contract-info-small .value {
    color: var(--secondary);
    font-family: 'SF Mono', monospace;
    word-break: break-all;
}

.contract-info-small .value.copyable {
    cursor: pointer;
    position: relative;
    transition: opacity 0.2s ease;
}

.contract-info-small .value.copyable:hover {
    opacity: 0.8;
}

.contract-info-small .value.copyable.copied::after {
    content: "✓ Copied!";
    color: #4CAF50;
    font-weight: 600;
}

/* Trading Features */
.trading-features {
    margin-bottom: 3rem;
}

.trading-features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(123, 63, 242, 0.05), rgba(0, 212, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Quick Tips */
.quick-tips {
    background: var(--gray);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tips-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tips-header h3 {
    font-size: 1.75rem;
    color: var(--light);
}

.tips-content {
    display: grid;
    gap: 1.5rem;
}

.tip-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tip-number {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

.tip-item strong {
    color: var(--light);
}

.buy-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trading-features h3 {
        font-size: 1.5rem;
    }
    
    .quick-tips {
        padding: 1.5rem;
    }
    
    .buy-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .wallet-icons img {
        width: 35px;
        height: 35px;
    }
    
    .contract-info-small {
        font-size: 0.75rem;
    }
    
    .tips-header h3 {
        font-size: 1.5rem;
    }
}