/* 💎✨ Enhanced Token Sales Styling - Kawaii-Cyberpunk 2.0 ✨💎 */

/* Tab Container */
.tab-container.token-sales-enhanced {
    position: relative;
    padding: 0px 20px 40px 20px;
    /* Reduced top padding */
}

/* Neon Title - Aggressive Polish */
.neon-title {
    display: none !important;
    font-size: 4rem;
    /* Larger title */
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.neon-title .title-glow {
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ffee00, #ff00ff);
    /* More vibrant gradient */
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.6);
    /* Stronger glow */
    font-weight: 900;
    animation: neon-flow 3s linear infinite;
    /* New flow animation */
}

@keyframes neon-flow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.neon-title .kawaii-emoji {
    font-size: 3rem;
    margin-left: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    /* Glowing emoji */
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

/* Tab Description - Enhanced Typography */
.tab-description {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.tab-description .subtitle-text {
    font-size: 1.8rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    font-weight: 700;
}

.tab-description .description-main {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(5px);
}

/* Background Effects */
.cyber-grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
    z-index: -2;
}

@keyframes grid-move {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

/* Hero Image Styles */
.hero-image-container {
    position: relative;
    text-align: center;
    margin: -40px auto 40px;
    /* Negative top margin to pull it up closer to description */
    max-width: 600px;
    z-index: 1;
}

.hero-token-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.4));
    animation: float 6s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Cyber Panel - Stronger Glassmorphism */
.cyber-panel {
    background: linear-gradient(135deg,
            rgba(20, 0, 40, 0.9),
            rgba(0, 40, 80, 0.85));
    /* Darker, richer background */
    backdrop-filter: blur(20px);
    /* Stronger blur */
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid transparent;
    border-image: linear-gradient(45deg, #ff00ff, #00ffff) 1;
    /* Gradient border */
    border-radius: 24px;
    /* More rounded */
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(255, 0, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    /* Inner and outer glow */
}

.cyber-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: cyber-scan 3s ease-in-out infinite;
    /* Faster scan */
}

@keyframes cyber-scan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes neon-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Quick Stats Bar - Enhanced */
.quick-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 40px;
    background: rgba(0, 20, 40, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid #00ffff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.quick-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 0, 255, 0.1) 50%,
            transparent 70%);
    animation: shimmer 2.5s ease-in-out infinite;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff00ff;
}

.stat-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.6));
    animation: float 3s ease-in-out infinite;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #ff69b4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px #00ffff;
}

/* Info Section */
.info-section {
    margin-top: 60px;
}

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

.info-card {
    background: linear-gradient(135deg,
            rgba(0, 20, 40, 0.8),
            rgba(0, 40, 80, 0.7));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan, #00ffff);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.info-card .card-icon {
    font-size: 3rem;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.info-card h4 {
    font-size: 1.5rem;
    color: var(--primary-cyan, #00ffff);
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 105, 180, 0.2);
    border: 1px solid rgba(255, 105, 180, 0.5);
    border-radius: 8px;
    margin-top: 15px;
}

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

/* Distribution Chart */
.distribution-chart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.chart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    position: relative;
}

.chart-bar {
    height: 30px;
    background: linear-gradient(90deg,
            var(--primary-pink, #ff69b4),
            var(--primary-cyan, #00ffff));
    border-radius: 15px;
    width: var(--percentage);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    animation: chart-shine 3s ease-in-out infinite;
}

.chart-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.chart-value {
    font-weight: 700;
    color: var(--primary-cyan, #00ffff);
    font-size: 1rem;
}

/* Vesting Timeline */
.vesting-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding-left: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 20px;
    bottom: -20px;
    width: 2px;
    background: rgba(255, 105, 180, 0.3);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--primary-pink, #ff69b4);
    border: 3px solid rgba(0, 20, 40, 0.95);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    position: relative;
    z-index: 1;
}

.timeline-label {
    font-weight: 600;
    color: var(--primary-cyan, #00ffff);
}

.timeline-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: auto;
}

/* Roadmap Progress */
.roadmap-progress {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

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

.roadmap-item.completed {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.1);
}

.roadmap-item.active {
    border-color: var(--primary-cyan, #00ffff);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.roadmap-item.upcoming {
    opacity: 0.7;
}

.roadmap-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0, 255, 136, 0.8);
    color: white;
    border-radius: 50%;
    font-weight: 700;
}

.roadmap-dot {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: relative;
}

.roadmap-dot.pulse {
    border-color: var(--primary-cyan, #00ffff);
    background: rgba(0, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.roadmap-label {
    font-weight: 600;
    color: white;
    flex: 1;
}

.roadmap-status {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

    100% {
        transform: translateX(200%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes chart-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Section Title Enhancement */
.section-title.cyber-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.heading-main {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-cyan, #00ffff);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin: 10px 0;
}

.heading-accent {
    font-size: 1.25rem;
    color: var(--primary-pink, #ff69b4);
    font-weight: 300;
    letter-spacing: 1px;
}

.heading-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-cyan, #00ffff),
            transparent);
    margin-top: 15px;
    animation: underline-glow 2s ease-in-out infinite;
}

@keyframes underline-glow {

    0%,
    100% {
        opacity: 0.5;
        width: 100px;
    }

    50% {
        opacity: 1;
        width: 150px;
    }
}

/* Token Sales Container */
.token-sales-container {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

/* Current Round Info */
.current-round-info {
    background: linear-gradient(135deg,
            rgba(255, 0, 255, 0.1),
            rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.current-round-info.holographic::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            #ff00ff, #00ffff, #ff00ff, #00ffff);
    border-radius: inherit;
    opacity: 0.5;
    z-index: -1;
    animation: holographic-border 3s linear infinite;
}

@keyframes holographic-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Round Header */
.round-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.round-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff00ff, #ff69b4);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    position: relative;
}

.round-badge.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
    }
}

/* Phase Info */
.phase-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phase-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.phase-status {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.phase-status.live {
    background: #00ff00;
    color: #000;
    animation: live-pulse 1s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ⚙️✨ TOKEN DETAILS - KAWAII CYBERMAGICPUNK STYLE ✨⚙️ */
.token-details {
    display: grid;
    gap: 20px;
    background: linear-gradient(135deg,
        rgba(138, 43, 226, 0.12) 0%,
        rgba(0, 255, 255, 0.08) 50%,
        rgba(255, 0, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 30px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated corner accents */
.token-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
        rgba(0, 255, 255, 0.4) 0%,
        transparent 50%);
    border-radius: 20px 0 30px 0;
    animation: corner-pulse 3s ease-in-out infinite;
}

.token-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(-45deg,
        rgba(255, 0, 255, 0.4) 0%,
        transparent 50%);
    border-radius: 30px 0 20px 0;
    animation: corner-pulse 3s ease-in-out infinite 1.5s;
}

@keyframes corner-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.token-details:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow:
        0 0 45px rgba(138, 43, 226, 0.35),
        0 0 20px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.price-display p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 0.5px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-cyan, #00ffff);
    text-shadow:
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.3);
    background: linear-gradient(90deg, #00ffff, #ff00ff, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: price-shimmer 3s linear infinite;
}

@keyframes price-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.price-value {
    font-family: 'Orbitron', 'Courier New', monospace;
}

.price-unit {
    font-size: 0.7em;
    opacity: 0.9;
}

.price-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 15px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 25px;
    width: fit-content;
}

.trend-indicator {
    font-size: 1.5rem;
    color: #00ff00;
    animation: trend-bounce 1s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.6));
}

.trend-indicator.up {
    color: #4ade80;
}

.next-price {
    color: #4ade80;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.4);
}

@keyframes trend-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.round-cap-display {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    position: relative;
    z-index: 1;
}

.round-cap {
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.round-cap.glowing {
    animation: gold-glow 2s ease-in-out infinite;
}

@keyframes gold-glow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow:
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.4);
    }
}

/* Progress Section */
.phase-progress {
    margin: 30px 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-container {
    position: relative;
    /* ✨ Kawaii Cybermagicpunk Polish ✨ */
    padding: 24px;
    margin: 20px 0;
    background: linear-gradient(135deg,
        rgba(138, 43, 226, 0.15) 0%,
        rgba(75, 0, 130, 0.12) 50%,
        rgba(25, 25, 112, 0.08) 100%);
    border-radius: 18px;
    border: 2px solid rgba(138, 43, 226, 0.35);
    box-shadow:
        0 0 28px rgba(138, 43, 226, 0.25),
        inset 0 2px 12px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-container:hover {
    border-color: rgba(138, 43, 226, 0.55);
    box-shadow:
        0 0 38px rgba(138, 43, 226, 0.4),
        inset 0 2px 15px rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.progress-track {
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

/* ✨ Milestone Markers - Kawaii Cybermagicpunk Style ✨ */
.milestone-markers {
    position: absolute;
    top: -28px;
    left: 0;
    right: 0;
    height: 24px;
    pointer-events: none;
}

.milestone {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.75em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(138, 43, 226, 0.4);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.milestone.reached {
    color: #4ade80;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(74, 222, 128, 0.7);
    font-weight: 800;
}

.milestone.active {
    color: #ffd700;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 0 22px rgba(255, 215, 0, 0.85);
    font-weight: 900;
    animation: milestone-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    font-size: 0.85em;
}

@keyframes milestone-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        text-shadow:
            0 1px 3px rgba(0, 0, 0, 0.6),
            0 0 22px rgba(255, 215, 0, 0.85);
    }
    50% {
        transform: translateX(-50%) scale(1.12);
        text-shadow:
            0 1px 4px rgba(0, 0, 0, 0.7),
            0 0 32px rgba(255, 215, 0, 1);
    }
}

.progress-value {
    height: 100%;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    position: relative;
    transition: width 0.5s ease;
}

.progress-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ⚙️✨ PROGRESS INFO - Below Progress Bar ✨⚙️ */
.phase-progress.cyber-progress {
    display: flex;
    flex-direction: column;
}

.phase-progress.cyber-progress .progress-info {
    order: 2; /* Move below progress-container */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 255, 255, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.25);
}

.phase-progress.cyber-progress .progress-container {
    order: 1;
}

.phase-progress.cyber-progress .progress-details {
    order: 3;
}

.progress-info .progress-label {
    font-size: 1rem;
    color: #a78bfa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-info .progress-percentage {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.4));
}

/* ⚙️✨ PROGRESS DETAILS - Token Sold/Remaining Display ✨⚙️ */
.progress-details.enhanced {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px 35px;
    background: linear-gradient(135deg,
        rgba(75, 0, 130, 0.2) 0%,
        rgba(138, 43, 226, 0.15) 50%,
        rgba(25, 25, 112, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid rgba(138, 43, 226, 0.35);
    box-shadow:
        0 0 25px rgba(138, 43, 226, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
}

.tokens-sold-display,
.tokens-remaining {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tokens-sold-display:hover,
.tokens-remaining:hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.tokens-sold-display .label,
.tokens-remaining .label {
    font-size: 0.9rem;
    color: #a78bfa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tokens-sold-display .counter-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #4ade80; /* Green for sold */
    text-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
}

.tokens-remaining .counter-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00ffff; /* Cyan for target */
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}

.tokens-sold-display .unit,
.tokens-remaining .unit {
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ⚙️✨ SEPARATOR - Lightning Bolt Divider ✨⚙️ */
.progress-details .separator {
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4);
    animation: separator-pulse 2s ease-in-out infinite;
    user-select: none;
}

@keyframes separator-pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: brightness(1.3);
    }
}

/* Countdown Timer */
.phase-time {
    text-align: center;
    padding: 20px;
}

.countdown-label {
    font-size: 1.25rem;
    color: var(--primary-pink, #ff69b4);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-remaining {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    text-align: center;
    position: relative;
}

.time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-cyan, #00ffff);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    font-family: monospace;
}

.time-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.time-separator {
    font-size: 2rem;
    color: var(--primary-cyan, #00ffff);
    align-self: center;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Urgency Message */
.urgency-message {
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.4);
    border-radius: 10px;
    color: #ffaaaa;
    animation: urgency-pulse 1.5s ease-in-out infinite;
}

@keyframes urgency-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* Token Packages Grid */
.token-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
    padding: 20px;
}

.token-packages-grid.grid-10 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Special Centered Card (9th package) */
.special-centered {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .special-centered {
        grid-column: span 1;
    }
}

/* Sections */
.packages-section {
    margin-top: 60px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg,
            rgba(0, 20, 40, 0.95),
            rgba(0, 40, 80, 0.85));
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}