/* ===================================
   Boleh Token Website Styles
   Modern, Malaysian-inspired Design
   =================================== */

/* CSS Variables */
:root {
    /* Malaysian Flag Colors */
    --primary-red: #CC0001;
    --primary-blue: #010066;
    --primary-yellow: #FFD700;
    --primary-white: #FFFFFF;
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    
    /* Neutral Colors */
    --dark-bg: #0a0e27;
    --dark-secondary: #151932;
    --dark-card: #1a1f3a;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    
    /* Accent Colors */
    --accent-teal: #4ECDC4;
    --accent-coral: #FF6B6B;
    --accent-purple: #667eea;
    --accent-green: #51cf66;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --card-radius: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

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

.btn-secondary:hover {
    background: var(--accent-purple);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.logo-icon {
    font-size: 32px;
}

.logo-image {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(102, 126, 234, 0.25);
    border: 2px solid rgba(102, 126, 234, 0.6);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.badge-icon {
    font-size: 20px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-trust {
    margin-top: 50px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-badge i {
    color: var(--accent-teal);
    font-size: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    display: block;
    margin-top: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.about-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: var(--card-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: var(--shadow-glow);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

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

/* Tokenomics Section */
.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tokenomics-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.token-item {
    background: var(--dark-card);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.token-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(10px);
}

.token-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.token-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.token-header h4 {
    font-size: 18px;
}

.token-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.token-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-teal);
}

.token-percent {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Utility Section */
.utility {
    background: var(--dark-secondary);
}

.utility-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.utility-category {
    background: var(--dark-card);
    padding: 40px;
    border-radius: var(--card-radius);
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.utility-category:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: var(--shadow-glow);
}

.utility-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.utility-category h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.utility-category ul {
    list-style: none;
    text-align: left;
}

.utility-category li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.utility-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.utility-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-card {
    background: var(--gradient-primary);
    padding: 60px 40px;
    border-radius: var(--card-radius);
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Presale Section */
.presale-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.presale-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: var(--card-radius);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.presale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.presale-header h3 {
    font-size: 28px;
}

.presale-badge {
    padding: 8px 16px;
    background: var(--accent-green);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.presale-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.presale-stat {
    background: rgba(102, 126, 234, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.presale-stat .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.presale-stat .stat-value {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.presale-progress {
    margin-bottom: 30px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.presale-benefits {
    margin-bottom: 30px;
}

.presale-benefits h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.presale-benefits ul {
    list-style: none;
}

.presale-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.presale-benefits i {
    color: var(--accent-green);
    font-size: 18px;
}

.presale-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
}

.presale-note i {
    color: var(--accent-teal);
}

.presale-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-phase {
    font-weight: 700;
    color: var(--accent-teal);
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.info-list i {
    color: var(--accent-green);
}

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

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

.roadmap-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.marker-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 3px solid rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.marker-circle.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow);
}

.marker-line {
    width: 3px;
    flex-grow: 1;
    background: rgba(102, 126, 234, 0.2);
    margin-top: 10px;
}

.roadmap-content {
    flex-grow: 1;
    background: var(--dark-card);
    padding: 30px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.roadmap-content.active {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: var(--shadow-glow);
}

.roadmap-phase {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.roadmap-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.roadmap-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.roadmap-content li {
    padding: 8px 0;
    padding-left: 24px;
    color: var(--text-secondary);
    position: relative;
}

.roadmap-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

.roadmap-status {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-green);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.roadmap-status.upcoming {
    background: rgba(102, 126, 234, 0.3);
}

/* Merchants Section */
.merchant-benefits {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.merchant-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

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

.merchant-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: var(--card-radius);
    border: 2px solid rgba(102, 126, 234, 0.3);
    position: sticky;
    top: 100px;
}

.merchant-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.merchant-card > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.merchant-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.m-stat {
    text-align: center;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
}

.m-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 8px;
}

.merchant-steps {
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.merchant-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}

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

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.community-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: var(--card-radius);
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.community-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: var(--shadow-glow);
}

.community-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.community-icon.telegram { background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%); }
.community-icon.whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.community-icon.twitter { background: linear-gradient(135deg, #1DA1F2 0%, #0C85D0 100%); }
.community-icon.instagram { background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%); }
.community-icon.tiktok { background: linear-gradient(135deg, #000000 0%, #EE1D52 100%); }
.community-icon.discord { background: linear-gradient(135deg, #7289DA 0%, #5865F2 100%); }

.community-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.community-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 15px;
}

.airdrop-section {
    margin-top: 60px;
}

.airdrop-card {
    background: var(--gradient-primary);
    padding: 60px 40px;
    border-radius: var(--card-radius);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.airdrop-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.airdrop-icon {
    font-size: 64px;
}

.airdrop-card h3 {
    font-size: 36px;
}

.airdrop-card > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.airdrop-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.airdrop-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: left;
}

.airdrop-step i {
    font-size: 24px;
    color: var(--accent-green);
    flex-shrink: 0;
}

/* FAQ Section */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-teal);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--accent-teal);
    font-size: 24px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

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

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tokenomics-content {
        grid-template-columns: 1fr;
    }
    
    .presale-content {
        grid-template-columns: 1fr;
    }
    
    .merchant-benefits {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--dark-secondary);
        width: 100%;
        padding: 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .logo-image {
        height: 28px;
        max-width: 100px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-badge {
        background: rgba(102, 126, 234, 0.35);
        border: 2px solid rgba(102, 126, 234, 0.8);
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
        font-size: 13px;
        padding: 12px 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .utility-categories {
        grid-template-columns: 1fr;
    }
    
    .roadmap-item {
        gap: 20px;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .airdrop-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===================================
   WALLET BUTTON STYLES
   =================================== */

.btn-wallet {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid var(--accent-purple);
    color: var(--text-primary);
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-wallet:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-wallet.connected {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    border-color: transparent;
}

.btn-wallet.connected:hover {
    box-shadow: 0 4px 15px rgba(81, 207, 102, 0.4);
}

.btn-wallet i {
    margin-right: 8px;
}

/* Hide nav presale button on mobile */
@media (max-width: 768px) {
    .nav-presale-btn {
        display: none;
    }

    .btn-wallet {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ===================================
   MODAL STYLES
   =================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--dark-card);
    border-radius: var(--card-radius);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(102, 126, 234, 0.1);
    border: none;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 107, 107, 0.2);
    color: var(--accent-coral);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Wallet Options */
.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text-primary);
}

.wallet-option:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateX(5px);
}

.wallet-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: contain;
}

.wallet-info {
    flex-grow: 1;
}

.wallet-name {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.wallet-desc {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.wallet-option i.fa-chevron-right {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.wallet-option:hover i.fa-chevron-right {
    transform: translateX(5px);
    color: var(--accent-purple);
}

.wallet-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.wallet-note i {
    color: var(--accent-teal);
}

/* Network Modal */
.network-modal .modal-header {
    margin-bottom: 20px;
}

.network-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.network-icon i {
    font-size: 40px;
    color: #ffc107;
}

/* ===================================
   PURCHASE INTERFACE STYLES
   =================================== */

.purchase-interface {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
}

.purchase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.purchase-header h4 {
    font-size: 20px;
    margin: 0;
}

.wallet-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.status-dot.disconnected {
    background: var(--accent-coral);
}

.status-dot.connected {
    background: var(--accent-green);
    box-shadow: 0 0 10px rgba(81, 207, 102, 0.5);
}

/* Purchase Form */
.purchase-form {
    display: none;
}

.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    transition: border-color 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--accent-purple);
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    outline: none;
    width: 100%;
    min-width: 0;
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.input-wrapper input::-webkit-outer-spin-button,
.input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-wrapper input[type=number] {
    -moz-appearance: textfield;
}

.input-token {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    font-weight: 600;
    flex-shrink: 0;
}

.token-icon-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.balance-info,
.rate-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.max-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.max-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.swap-arrow {
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

.swap-arrow i {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
}

.purchase-summary {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.summary-row:first-child {
    padding-top: 0;
}

.summary-row:last-child {
    padding-bottom: 0;
}

/* Not Connected State */
.purchase-not-connected {
    text-align: center;
    padding: 30px 0;
}

.purchase-not-connected p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Payment Toggle */
.payment-toggle {
    margin-bottom: 20px;
}

.toggle-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.toggle-buttons {
    display: flex;
    gap: 12px;
}

.toggle-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(102, 126, 234, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(102, 126, 234, 0.1);
}

.toggle-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.toggle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* USDT specific styling */
.input-token.usdt {
    background: rgba(38, 161, 123, 0.15);
}

/* Buy Button States */
#buyTokensBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#buyTokensBtn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* Approval status styling */
#approvalStatus {
    font-weight: 600;
}

#approvalStatus.approved {
    color: var(--accent-green);
}

#approvalStatus.pending {
    color: var(--accent-coral);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .modal-header h3 {
        font-size: 24px;
    }

    .wallet-option {
        padding: 16px;
    }

    .wallet-icon {
        width: 40px;
        height: 40px;
    }

    .wallet-name {
        font-size: 16px;
    }

    .purchase-interface {
        padding: 20px 16px;
    }

    .purchase-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .input-wrapper input {
        font-size: 20px;
    }
}