/* Trendlica Global Styles */

/* Custom styles */
.profile-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.profile-section {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.profile-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.profile-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-input {
    margin-top: 0.25rem;
    display: block;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-select {
    margin-top: 0.25rem;
    display: block;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.form-select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #4b5563;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #374151;
}

.btn-danger {
    background-color: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-danger:hover {
    background-color: #b91c1c;
}

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

.stat-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.stat-icon {
    padding: 0.75rem;
    border-radius: 9999px;
}

.stat-content {
    margin-left: 1rem;
}

.stat-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

.session-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.session-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.toast {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 50;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.toast-success {
    background: #dcfce7;
    color: #166534;
}

.toast-error {
    background: #fee2e2;
    color: #dc2626;
}

.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.spinner {
    animation: spin 1s linear infinite;
    border-radius: 9999px;
    height: 3rem;
    width: 3rem;
    border-top: 2px solid #3b82f6;
    border-bottom: 2px solid #3b82f6;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Trendlica - AI Temalı Stiller */

/* Ana renk paleti */
:root {
    --primary-color: #00ffe7;
    --secondary-color: #00b39f;
    --accent-color: #8b5cf6;
    --dark-bg: #0f0f23;
    --card-bg: rgba(26, 50, 81, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: rgba(0, 255, 231, 0.2);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
}

/* Matrix rain animasyonu */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.matrix-column {
    position: absolute;
    top: -100%;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    opacity: 0.1;
    animation: matrix-fall linear infinite;
}

@keyframes matrix-fall {
    0% { top: -100%; opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { top: 100%; opacity: 0; }
}

/* Gradient arka plan */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 255, 231, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 25%, 
        rgba(0, 179, 159, 0.1) 50%, 
        rgba(139, 92, 246, 0.1) 75%, 
        rgba(0, 255, 231, 0.1) 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    z-index: -1;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navbar stilleri */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 4px 20px rgba(0, 255, 231, 0.1);
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 255, 231, 0.5));
}

/* Buton stilleri */
.btn-nav,
.btn-primary,
.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #00332b;
    border: none;
    font-weight: 700;
}

.btn-nav:hover,
.btn-secondary:hover {
    background: rgba(0, 255, 231, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 231, 0.3);
}

.btn-primary-custom,
.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #00332b;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 231, 0.3);
}

.btn-secondary-custom,
.btn-secondary-large {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover,
.btn-secondary-large:hover {
    background: var(--primary-color);
    color: #00332b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 231, 0.2);
}

/* Presale Button Styles */
.btn-presale-primary,
.btn-presale-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
  border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-presale-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
  border: none;
}

.btn-presale-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-presale-secondary {
    background: transparent;
    border: 2px solid #10b981;
    color: #10b981;
}

.btn-presale-secondary:hover {
    background: #10b981;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-presale-primary:hover .btn-glow {
    left: 100%;
}

/* Hero section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.presale-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--warning-color), #f97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
  font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* Responsive tasarım */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Glassmorphism kartlar */
.glass-card {
    background: rgba(26, 50, 81, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

/* Neon glow efektleri */
.neon-glow {
    box-shadow: 
        0 0 5px var(--primary-color),
        0 0 10px var(--primary-color),
        0 0 15px var(--primary-color),
        0 0 20px var(--primary-color);
}

/* Animasyonlar */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

/* Mining Demo Container */
.mining-demo-container {
  position: relative;
    overflow: hidden;
}

.mining-video {
    width: 60%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mining-video:hover {
    transform: scale(1.02);
}

.mining-video.playing {
    filter: brightness(1.1) contrast(1.1);
}

.mining-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mining-status {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.demo-badge {
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mining-stats {
    display: none;
}

.stat-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem;
    border-radius: 6px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: 0.1rem;
}

.stat-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Mining Steps */
.mining-step {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mining-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 231, 0.2);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #00332b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 255, 231, 0.3);
}

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

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Token Distribution */
.modern-token-distribution {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.token-chart-modern {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.circular-chart {
    width: 100%;
    height: 100%;
    position: relative;
}

.chart-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-segment {
    transition: stroke-dasharray 0.5s ease;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.center-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.center-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.modern-token-distribution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.distribution-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.distribution-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 255, 231, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 231, 0.1);
}

.card-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.card-status {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-progress {
    margin-top: 1rem;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Leaderboard */
.modern-leaderboard-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.leaderboard-tabs-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.modern-tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.modern-tab-btn.active,
.modern-tab-btn:hover {
    background: var(--primary-color);
    color: #00332b;
    border-color: var(--primary-color);
}

.leaderboard-grid {
    display: grid;
    gap: 1rem;
}

.leaderboard-item-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.leaderboard-item-modern:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 255, 231, 0.2);
}

.rank-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.rank-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
    color: #000;
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: #fff;
}

.rank-badge:not(.gold):not(.silver):not(.bronze) {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.user-info-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
}

.avatar-modern.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.avatar-modern.silver {
    background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
    color: #000;
}

.avatar-modern.bronze {
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: #fff;
}

.avatar-modern:not(.gold):not(.silver):not(.bronze) {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.user-details {
    flex: 1;
}

.username {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.user-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mining-time,
.referrals {
    background: rgba(0, 255, 231, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.earnings-modern {
    text-align: right;
}

.earnings-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.earnings-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.leaderboard-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.footer-stat {
    padding: 1rem;
}

.footer-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Presale Section */
.modern-presale-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.presale-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.presale-price-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #00332b;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-badge {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.price-main {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.price-savings {
    font-size: 1.2rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.presale-timer {
    text-align: center;
}

.timer-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.timer-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    min-width: 80px;
}

.timer-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timer-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.presale-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 231, 0.1);
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.progress-section {
    margin-bottom: 3rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.progress-percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.progress-bar-modern {
        width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill-modern {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    transition: width 0.5s ease;
}

.payment-methods {
    margin-bottom: 3rem;
}

.payment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.payment-icon {
        margin-bottom: 1rem;
    }
    
.payment-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.payment-symbol {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.presale-benefits {
    margin-bottom: 3rem;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 231, 0.1);
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.presale-actions-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.presale-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.disclaimer-icon {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.disclaimer-text {
    color: #fbbf24;
    line-height: 1.6;
}

/* Utility sınıfları */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.transition { transition: all 0.3s ease; }
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:rotate-3:hover { transform: rotate(3deg); }

.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); }

.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.border { border: 1px solid var(--border-color); }
.border-t { border-top: 1px solid var(--border-color); }
.border-b { border-bottom: 1px solid var(--border-color); }
.border-l { border-left: 1px solid var(--border-color); }
.border-r { border-right: 1px solid var(--border-color); }

/* Responsive breakpoints */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:text-xl { font-size: 1.25rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-lg { font-size: 1.125rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:text-xl { font-size: 1.25rem; }
    .lg\:text-2xl { font-size: 1.5rem; }
    .lg\:text-3xl { font-size: 1.875rem; }
    .lg\:text-4xl { font-size: 2.25rem; }
    .lg\:text-5xl { font-size: 3rem; }
    .lg\:text-6xl { font-size: 3.75rem; }
    .lg\:text-7xl { font-size: 4.5rem; }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .xl\:text-2xl { font-size: 1.5rem; }
    .xl\:text-3xl { font-size: 1.875rem; }
    .xl\:text-4xl { font-size: 2.25rem; }
    .xl\:text-5xl { font-size: 3rem; }
    .xl\:text-6xl { font-size: 3.75rem; }
    .xl\:text-7xl { font-size: 4.5rem; }
}

/* Responsive Design for Special Sections */
@media (max-width: 1024px) {
    .modern-token-distribution {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .token-chart-modern {
        width: 250px;
        height: 250px;
    }
    
    .presale-hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mining-stats {
        display: none;
    }
    
    .stat-item {
        padding: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .stat-value {
        font-size: 0.7rem;
    }
    
    .modern-token-distribution-cards {
        grid-template-columns: 1fr;
    }
    
    .modern-leaderboard-container {
        padding: 1rem;
    }
    
    .leaderboard-item-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .user-info-modern {
        justify-content: center;
    }
    
    .presale-actions-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-presale-primary,
    .btn-presale-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .timer-display {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 1rem 0.5rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .mining-demo-container {
        margin: 0;
    }
    
    .mining-step {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .token-chart-modern {
        width: 200px;
        height: 200px;
    }
    
    .center-number {
        font-size: 2rem;
    }
    
    .modern-presale-container {
        padding: 1.5rem;
    }
    
    .presale-price-card {
        padding: 1.5rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
    }
}
/* Trendlica Coin - Ana CSS Dosyası */

/* CSS Variables */
:root {
    --primary-blue: #3B82F6;
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --primary-green: #10B981;
    --primary-yellow: #F59E0B;
    --primary-red: #EF4444;
    
    --dark-bg: #0F172A;
    --darker-bg: #020617;
    --card-bg: rgba(15, 23, 42, 0.8);
    --border-color: rgba(59, 130, 246, 0.2);
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --gradient-primary: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899);
    --gradient-secondary: linear-gradient(135deg, #10B981, #3B82F6);
    --gradient-accent: linear-gradient(135deg, #F59E0B, #EF4444);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #1E293B 75%, #0F172A 100%);
    background-size: 400% 400%;
    animation: backgroundFlow 20s ease-in-out infinite;
}

@keyframes backgroundFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

/* Trendlica Logo - PNG Görsel */
.logo-container {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
}

.logo-container.small {
    width: 40px;
    height: 40px;
}

.logo-container.large {
    width: 120px;
    height: 120px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: logoGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.logo-image.large {
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.8));
        transform: scale(1.05);
    }
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px);
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    }
    50% { 
        transform: translateY(-10px);
        filter: drop-shadow(0 0 35px rgba(59, 130, 246, 0.8));
    }
}

/* Mining Overlay Animasyonları */
.mining-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.neural-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) { 
    top: 20%; 
    left: 30%; 
    animation-delay: 0s; 
    background: linear-gradient(45deg, #3B82F6, #1D4ED8);
}
.particle:nth-child(2) { 
    top: 60%; 
    left: 20%; 
    animation-delay: 0.8s; 
    background: linear-gradient(45deg, #8B5CF6, #7C3AED);
}
.particle:nth-child(3) { 
    top: 40%; 
    left: 70%; 
    animation-delay: 1.6s; 
    background: linear-gradient(45deg, #10B981, #059669);
}
.particle:nth-child(4) { 
    top: 80%; 
    left: 50%; 
    animation-delay: 2.4s; 
    background: linear-gradient(45deg, #EC4899, #DB2777);
}
.particle:nth-child(5) { 
    top: 10%; 
    left: 60%; 
    animation-delay: 3.2s; 
    background: linear-gradient(45deg, #F59E0B, #D97706);
}
.particle:nth-child(6) { 
    top: 70%; 
    left: 80%; 
    animation-delay: 4s; 
    background: linear-gradient(45deg, #EF4444, #DC2626);
}

.mining-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    animation: connectionFlow 3s ease-in-out infinite;
    opacity: 0.6;
}

.connection-line:nth-child(1) {
    top: 30%;
    left: 25%;
    width: 40%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.connection-line:nth-child(2) {
    top: 60%;
    left: 15%;
    width: 50%;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.connection-line:nth-child(3) {
    top: 50%;
    left: 60%;
    width: 35%;
    transform: rotate(60deg);
    animation-delay: 2s;
}

/* Animasyonlar */
@keyframes brainPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.8)); }
}

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

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-15px) scale(1.2); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-10px) scale(0.8); 
        opacity: 0.8; 
    }
    75% { 
        transform: translateY(-20px) scale(1.1); 
        opacity: 0.9; 
    }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

/* Navigation */
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-large, .btn-secondary-large {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

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

.btn-secondary:hover {
    background: var(--card-bg);
    border-color: var(--primary-blue);
}

.btn-primary-large, .btn-secondary-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.btn-secondary-large:hover {
    background: var(--card-bg);
    border-color: var(--primary-blue);
}

.btn-primary-large:disabled,
.btn-secondary-large:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6B7280;
    border-color: #6B7280;
}

.btn-primary-large:disabled:hover,
.btn-secondary-large:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Mining Demo Container - Removed frame styles */
.mining-demo-container {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Demo Badge */
.demo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 193, 7, 0.9);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    animation: demoPulse 2s ease-in-out infinite;
}

@keyframes demoPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 193, 7, 0.5);
    }
}

@keyframes containerGlow {
    0%, 100% { 
        box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
        border-color: var(--border-color);
    }
    50% { 
        box-shadow: 0 30px 80px rgba(59, 130, 246, 0.5);
        border-color: var(--primary-blue);
    }
}

/* Mining Video - Clean styles */
.mining-video {
    width: 60%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mining-video.playing {
    filter: brightness(1.1) contrast(1.1);
}

/* Mining Video Container - Clean */
.mining-video-container {
    position: relative;
    overflow: hidden;
}

/* Mining Overlay */
.mining-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.mining-status {
    text-align: center;
    color: white;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-text {
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.brain-hemisphere {
    position: absolute;
    width: 50%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    animation: brainPulse 2s ease-in-out infinite;
}

.brain-hemisphere.left {
    left: 0;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.brain-hemisphere.right {
    right: 0;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    background: linear-gradient(135deg, #3B82F6, #10B981);
}

.neural-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.neuron {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #F8FAFC;
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

.neuron:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.neuron:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.5s; }
.neuron:nth-child(3) { top: 40%; left: 70%; animation-delay: 1s; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #EC4899, #3B82F6);
    animation: connectionFlow 1.5s ease-in-out infinite;
}

.connection:nth-child(4) {
    top: 30%;
    left: 35%;
    width: 30%;
    transform: rotate(45deg);
}

.connection:nth-child(5) {
    top: 50%;
    left: 25%;
    width: 40%;
    transform: rotate(-30deg);
}

.brain-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: brainPulse 2s ease-in-out infinite;
}

/* Mining Stats */
.mining-stats {
    display: none;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Mining Steps */
.mining-step {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.mining-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Token Supply Info */
.token-supply-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.supply-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.supply-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.supply-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.supply-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Token Chart */
.token-chart-container {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
}

.token-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.chart-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.chart-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.chart-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.chart-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.chart-color.mining { background: #3B82F6; }
.chart-color.presale { background: #8B5CF6; }
.chart-color.liquidity { background: #10B981; }
.chart-color.team { background: #F59E0B; }
.chart-color.partners { background: #EC4899; }
.chart-color.reserve { background: #6B7280; }

.chart-percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.chart-amount {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.chart-bar {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.chart-bar.mining { background: linear-gradient(90deg, #3B82F6, #1D4ED8); }
.chart-bar.presale { background: linear-gradient(90deg, #8B5CF6, #7C3AED); }
.chart-bar.liquidity { background: linear-gradient(90deg, #10B981, #059669); }
.chart-bar.team { background: linear-gradient(90deg, #F59E0B, #D97706); }
.chart-bar.partners { background: linear-gradient(90deg, #EC4899, #DB2777); }
.chart-bar.reserve { background: linear-gradient(90deg, #6B7280, #4B5563); }

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: chartFill 2s ease-in-out;
}

.chart-item[data-percentage="30"] .chart-bar::after { width: 30%; }
.chart-item[data-percentage="20"] .chart-bar::after { width: 20%; }
.chart-item[data-percentage="15"] .chart-bar::after { width: 15%; }
.chart-item[data-percentage="10"] .chart-bar::after { width: 10%; }
.chart-item[data-percentage="5"] .chart-bar::after { width: 5%; }

@keyframes chartFill {
    from { width: 0; }
    to { width: var(--target-width); }
}

/* Vesting Info */
.vesting-info {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
}

.vesting-category {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vesting-category:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.vesting-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.category-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--card-bg);
}

.category-icon.mining { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.category-icon.presale { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.category-icon.liquidity { background: linear-gradient(135deg, #10B981, #059669); }
.category-icon.team { background: linear-gradient(135deg, #F59E0B, #D97706); }
.category-icon.partners { background: linear-gradient(135deg, #EC4899, #DB2777); }
.category-icon.reserve { background: linear-gradient(135deg, #6B7280, #4B5563); }

.category-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    flex: 1;
}

.category-percentage {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.2rem;
}

.category-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.vesting-duration {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Referral Cards */
.referral-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.referral-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.referral-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.referral-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.referral-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Leaderboard */
.leaderboard-container {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
}

.leaderboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.leaderboard-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

.leaderboard-item.rank-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.1));
    border: 2px solid #FFD700;
}

.leaderboard-item.rank-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(169, 169, 169, 0.1));
    border: 2px solid #C0C0C0;
}

.leaderboard-item.rank-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(184, 115, 51, 0.1));
    border: 2px solid #CD7F32;
}

.rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    min-width: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.name {
    color: var(--text-primary);
    font-weight: 600;
}

.earnings {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* KYC Section */
.kyc-benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-green);
}

.benefit-text h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

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

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.process-step .step-number {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-content h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-secondary);
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 15px;
    animation: pulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Presale Section */
.presale-container {
    max-width: 600px;
    margin: 0 auto;
}

.presale-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

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

.presale-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.presale-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
}

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

.stat {
    text-align: left;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 5px;
    animation: progressFill 2s ease-in-out;
}

@keyframes progressFill {
    from { width: 0; }
}

.presale-actions {
    margin-top: 30px;
}

/* Footer */
.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

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

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .mining-demo-container {
        /* Clean responsive styles */
    }
    
    .mining-brain {
        width: 150px;
        height: 150px;
    }
    
    .presale-stats {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .user-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .kyc-benefit, .process-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .mining-demo-container {
        /* Clean responsive styles */
    }
    
    .mining-brain {
        width: 120px;
        height: 120px;
    }
}

/* Floating Mining Particles Animation */
@keyframes floatingMiningParticle {
    0% {
        transform: translateY(0px) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50px) translateX(20px) scale(1.2);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120px) translateX(-30px) scale(0);
        opacity: 0;
    }
}

/* White Paper Styles */
.whitepaper-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    border-radius: 2px;
}

.whitepaper-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.summary-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
}

.summary-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.summary-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.supply-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.supply-main-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.supply-number-large {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.supply-label-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.supply-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.supply-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.supply-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Modern Token Distribution */
.modern-token-distribution {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

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

.chart-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.circular-chart {
    position: relative;
    width: 100%;
    height: 100%;
}

.chart-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.chart-segment {
    transition: all 0.5s ease;
    animation: segmentGlow 3s ease-in-out infinite;
}

.chart-segment.mining { animation-delay: 0s; }
.chart-segment.presale { animation-delay: 0.5s; }
.chart-segment.liquidity { animation-delay: 1s; }
.chart-segment.team { animation-delay: 1.5s; }
.chart-segment.partners { animation-delay: 2s; }
.chart-segment.reserve { animation-delay: 2.5s; }

@keyframes segmentGlow {
    0%, 100% { 
        stroke-width: 20;
        opacity: 0.8;
    }
    50% { 
        stroke-width: 25;
        opacity: 1;
    }
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-primary);
}

.center-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    margin-bottom: 5px;
}

.center-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.token-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.token-detail-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.token-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.token-detail-card[data-category="mining"]::before { background: linear-gradient(90deg, #3B82F6, #1D4ED8); }
.token-detail-card[data-category="presale"]::before { background: linear-gradient(90deg, #8B5CF6, #7C3AED); }
.token-detail-card[data-category="liquidity"]::before { background: linear-gradient(90deg, #10B981, #059669); }
.token-detail-card[data-category="team"]::before { background: linear-gradient(90deg, #F59E0B, #D97706); }
.token-detail-card[data-category="partners"]::before { background: linear-gradient(90deg, #EC4899, #DB2777); }
.token-detail-card[data-category="reserve"]::before { background: linear-gradient(90deg, #6B7280, #4B5563); }

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

.detail-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.detail-info h4 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.detail-percentage {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.3rem;
}

.detail-amount {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.detail-status {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 5px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.detail-progress {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    border-radius: 2px;
    transition: width 1s ease;
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Mining System Details */
.mining-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mining-info-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mining-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.mining-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.mining-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.mining-info-card h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mining-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mining-list li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.mining-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Trading Features */
.trading-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.trading-feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trading-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.trading-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.trading-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.trading-feature-card h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.trading-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trading-list li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.trading-list li::before {
    content: '📈';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

/* AI Algorithm Details */
.algorithm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.algorithm-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.algorithm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10B981, #3B82F6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.algorithm-card:hover {
    transform: translateY(-5px);
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.algorithm-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.algorithm-card h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.algorithm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.algorithm-list li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.algorithm-list li::before {
    content: '🔬';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

/* Technology Stack */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tech-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.tech-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* AI Particles Background */
.ai-particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ai-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    border-radius: 50%;
    animation: aiParticleFloat 8s linear infinite;
    opacity: 0.6;
}

.ai-particle:nth-child(odd) {
    background: linear-gradient(45deg, #8B5CF6, #EC4899);
    animation-duration: 12s;
}

.ai-particle:nth-child(3n) {
    background: linear-gradient(45deg, #10B981, #3B82F6);
    animation-duration: 10s;
}

.ai-particle:nth-child(4n) {
    background: linear-gradient(45deg, #F59E0B, #EC4899);
    animation-duration: 14s;
}

@keyframes aiParticleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) scale(0);
    opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(0);
        opacity: 0;
    }
}

/* Neural Network Lines */
.neural-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: neuralPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes neuralPulse {
    0%, 100% { 
        opacity: 0;
        transform: scaleX(0);
    }
    50% { 
    opacity: 1;
        transform: scaleX(1);
    }
}

/* Language Selector Styling */
#languageSelector {
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    border: 1px solid rgba(59, 130, 246, 0.5) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#languageSelector:hover {
    border-color: rgba(59, 130, 246, 0.8) !important;
    background: rgba(0, 0, 0, 0.9) !important;
}

#languageSelector:focus {
    outline: none !important;
    border-color: #3B82F6 !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2) !important;
}

#languageSelector option {
    background: #1a1a1a !important;
    color: white !important;
    padding: 8px !important;
}

/* RTL Support for Arabic */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .container {
    direction: rtl;
}

[dir="rtl"] .flex {
    flex-direction: row-reverse;
}

[dir="rtl"] .text-left {
    text-align: right;
}

[dir="rtl"] .text-right {
    text-align: left;
}

[dir="rtl"] .justify-start {
    justify-content: flex-end;
}

[dir="rtl"] .justify-end {
    justify-content: flex-start;
}

[dir="rtl"] .space-x-4 > * + * {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .space-x-8 > * + * {
    margin-left: 0;
    margin-right: 2rem;
}

[dir="rtl"] .mr-2 {
    margin-right: 0;
    margin-left: 0.5rem;
}

[dir="rtl"] .ml-2 {
    margin-left: 0;
    margin-right: 0.5rem;
}

/* Hero Section Animations */
#home {
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Responsive adjustments for video */
@media (max-width: 768px) {
    .mining-demo-container {
        padding: 20px 0;
    }
    
    .mining-video {
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
    }
    
    .mining-overlay {
        position: static;
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .mining-demo-container {
        padding: 15px 0;
    }
    
    .mining-video {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
    }
    
    .mining-stats {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .supply-overview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .supply-number-large {
        font-size: 3rem;
    }
    
    .modern-token-distribution {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .token-details-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        width: 250px;
        height: 250px;
    }
    
    .center-number {
        font-size: 2.5rem;
    }
    
    .mining-info-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .mining-info-card {
        padding: 20px;
    }
    
    .tech-item {
        padding: 20px;
    }
    
    .trading-features-grid {
        grid-template-columns: 1fr;
    }
    
    .trading-feature-card {
        padding: 20px;
    }
    
    .algorithm-grid {
        grid-template-columns: 1fr;
    }
    
    .algorithm-card {
        padding: 20px;
    }
}

/* AI Feature Cards */
.ai-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.ai-feature-card:hover::before {
    left: 100%;
}

.ai-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Security Cards */
.security-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.security-card:hover::before {
    left: 100%;
}

.security-card:hover {
    transform: translateY(-10px);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.security-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trust Indicators */
.trust-indicator {
    text-align: center;
    padding: 1rem;
}

.trust-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Feature Cards */
@media (max-width: 768px) {
    .ai-feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .security-card {
        padding: 1.5rem;
    }
    
    .security-icon {
        width: 60px;
        height: 60px;
    }
    
    .security-title {
        font-size: 1.25rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

/* Tech Stack Cards */
.tech-stack-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-stack-card:hover::before {
    left: 100%;
}

.tech-stack-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-description {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Tech Stack Cards */
@media (max-width: 768px) {
    .tech-stack-card {
        padding: 1.5rem;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
    }
    
    .tech-title {
        font-size: 1.25rem;
    }
}

/* Modern Token Supply Overview */
.modern-supply-overview {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
}

.supply-main-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.supply-hero-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.supply-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.supply-hero-card:hover::before {
    left: 100%;
}

.supply-number-mega {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.supply-label-mega {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.supply-description-modern {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 500px;
    line-height: 1.6;
}

.supply-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.supply-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

/* Modern Leaderboard */
.modern-leaderboard-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
}

.leaderboard-tabs-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.modern-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #94a3b8;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-tab-btn.active,
.modern-tab-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.leaderboard-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.leaderboard-item-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.leaderboard-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.leaderboard-item-modern:hover::before {
    left: 100%;
}

.leaderboard-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.rank-badge {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    border-color: #9ca3af;
    box-shadow: 0 0 20px rgba(156, 163, 175, 0.3);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    border-color: #cd7f32;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.3);
}

.rank-badge i {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.user-info-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.avatar-modern {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #94a3b8;
    font-size: 1.5rem;
}

.avatar-modern.gold {
    border-color: #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    color: #fbbf24;
}

.avatar-modern.silver {
    border-color: #9ca3af;
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.2), rgba(107, 114, 128, 0.2));
    color: #9ca3af;
}

.avatar-modern.bronze {
    border-color: #cd7f32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(160, 82, 45, 0.2));
    color: #cd7f32;
}

.user-details {
    flex: 1;
}

.username {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.user-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.mining-time,
.referrals {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    color: #94a3b8;
}

.earnings-modern {
    text-align: right;
}

.earnings-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.earnings-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

.leaderboard-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.footer-stat {
    padding: 1rem;
}

.footer-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-supply-overview {
        padding: 2rem;
    }
    
    .supply-number-mega {
        font-size: 4rem;
    }
    
    .supply-label-mega {
        font-size: 1.5rem;
    }
    
    .supply-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .supply-stat-card {
        padding: 1.5rem;
    }
    
    .modern-leaderboard-container {
        padding: 2rem;
    }
    
    .leaderboard-item-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .user-info-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .earnings-modern {
        text-align: center;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-number {
        font-size: 2rem;
    }
}

/* Modern Presale Styles */
.modern-presale-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
}

.presale-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.presale-price-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.presale-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.presale-price-card:hover::before {
    left: 100%;
}

.price-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.price-main {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.price-note {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.price-savings {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.presale-timer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
}

.timer-label {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    min-width: 80px;
}

.timer-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.timer-unit {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 900;
    color: #3b82f6;
}

.presale-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

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

.stat-card-modern .stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-content {
    flex: 1;
}

.stat-content .stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.stat-content .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.progress-section {
    margin-bottom: 3rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.progress-percentage {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.progress-fill-modern {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.payment-methods {
    margin-bottom: 3rem;
}

.payment-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

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

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.payment-icon {
    margin-bottom: 1rem;
}

.payment-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.payment-symbol {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.presale-benefits {
    margin-bottom: 3rem;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.presale-actions-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-presale-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border: none;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-presale-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-presale-primary:hover .btn-glow {
    left: 100%;
}

.btn-presale-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-presale-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.presale-disclaimer {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.disclaimer-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.disclaimer-text {
    color: #fbbf24;
    line-height: 1.6;
}

/* Mobile Responsive for Presale */
@media (max-width: 768px) {
    .modern-presale-container {
        padding: 2rem;
    }
    
    .presale-hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-main {
        font-size: 3rem;
    }
    
    .timer-display {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .presale-stats-modern {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .presale-actions-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-presale-primary,
    .btn-presale-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Modern Token Distribution Cards */
.modern-token-distribution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.distribution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.distribution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.distribution-card:hover::before {
    left: 100%;
}

.distribution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card Types */
.distribution-card.mining {
    border-color: rgba(59, 130, 246, 0.3);
}

.distribution-card.mining:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.distribution-card.trading {
    border-color: rgba(139, 92, 246, 0.3);
}

.distribution-card.trading:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.distribution-card.liquidity {
    border-color: rgba(34, 197, 94, 0.3);
}

.distribution-card.liquidity:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.distribution-card.team {
    border-color: rgba(245, 158, 11, 0.3);
}

.distribution-card.team:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.distribution-card.reserve {
    border-color: rgba(239, 68, 68, 0.3);
}

.distribution-card.reserve:hover {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.distribution-card.community {
    border-color: rgba(99, 102, 241, 0.3);
}

.distribution-card.community:hover {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-percentage {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.card-status {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
}

.card-progress {
    margin-top: 1rem;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.8s ease;
    position: relative;
}

/* Progress colors for each card type */
.distribution-card.mining .progress-fill {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.distribution-card.trading .progress-fill {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.distribution-card.liquidity .progress-fill {
    background: linear-gradient(90deg, #10b981, #059669);
}

.distribution-card.team .progress-fill {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.distribution-card.reserve .progress-fill {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.distribution-card.community .progress-fill {
    background: linear-gradient(90deg, #6366f1, #4f46e5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 2s infinite;
}

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

/* Mobile Responsive for Distribution Cards */
@media (max-width: 768px) {
    .modern-token-distribution-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .distribution-card {
        padding: 1.5rem;
    }
    
    .card-header {
        margin-bottom: 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-percentage {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-amount {
        font-size: 1.5rem;
    }
}
