/* Inlined styles from index.html */
:root {
    --bg-color: #010409;
    --bg-color-light: #0d1117;
    --text-light: #E6EDF3;
    --text-dark: #8b949e;
    --accent-cyan: #00E5FF;
    --accent-glow: rgba(0, 229, 255, 0.4);
    --panel-border: rgba(0, 229, 255, 0.2);
    --green: #1AF7AF;
    --red: #F73A8E;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: 'Exo 2', sans-serif;
    background-image: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.1), transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(51, 198, 242, 0.1), transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.font-mono { font-family: 'Roboto Mono', monospace; }

/* --- Animations --- */
@keyframes bg-grid-pan { from { background-position: 0 0; } to { background-position: 80px 80px; } }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 35px var(--accent-cyan), 0 0 10px var(--accent-cyan); }
}
@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25%); }
    100% { transform: translateY(0); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes spin-fast {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes ping-slow {
    0% { transform: scale(1); opacity: 0.5; }
    75%, 100% { transform: scale(1.5); opacity: 0; }
}
@keyframes pulse-slow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.3; }
}
@keyframes title-glow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.5),
                     0 0 20px rgba(139, 92, 246, 0.5);
    }
    50% { 
        text-shadow: 0 0 20px rgba(0, 229, 255, 1),
                     0 0 30px rgba(139, 92, 246, 1),
                     0 0 40px rgba(236, 72, 153, 0.8);
    }
}
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.animate-bounce {
    animation: bounce 1s infinite;
}
.animate-spin {
    animation: spin 1s linear infinite;
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}
.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}
.animate-spin-fast {
    animation: spin-fast 0.5s linear infinite;
}
.animate-ping-slow {
    animation: ping-slow 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.animate-title-glow {
    animation: title-glow 3s ease-in-out infinite;
}
.animate-duration-1000 {
    animation-duration: 1s;
}
.bg-grid-pattern {
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: bg-grid-pan 4s linear infinite;
}
.bg-radial-gradient {
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}
.font-exo2 {
    font-family: 'Exo 2', sans-serif;
}
.font-roboto-mono {
    font-family: 'Roboto Mono', monospace;
}

/* --- Components --- */
.glass-panel {
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid var(--panel-border);
    border-radius: 1rem;
}
.main-title {
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(to bottom, var(--text-light) 60%, #b0c4de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px var(--accent-glow), 0 0 50px rgba(0, 229, 255, 0.2);
}
.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--accent-glow);
}
.section-subtitle {
    text-align: center;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 4rem auto;
}
.primary-btn {
    background: linear-gradient(45deg, var(--accent-cyan), #00a8ff);
    color: var(--bg-color);
    padding: 0.75rem 2rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    border-radius: 0.5rem;
    transition: all 0.3s ease-out;
    box-shadow: 0 0 20px var(--accent-glow), inset 0 0 10px rgba(255, 255, 255, 0.3);
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.primary-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 35px var(--accent-cyan), 0 0 15px var(--accent-cyan), inset 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
    .primary-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}
.secondary-btn {
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.05em;
    border-radius: 0.75rem;
    border: 2px solid var(--panel-border);
    transition: all 0.3s ease-out;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.secondary-btn:hover {
    background: var(--accent-glow);
    border-color: var(--accent-cyan);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
    letter-spacing: 0.1em;
}

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

.secondary-btn:hover::before {
    left: 100%;
}
.bg-grid-pattern {
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: bg-grid-pan 4s linear infinite;
}

/* --- Feature Icon Styles --- */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    color: var(--accent-cyan);
}
.feature-icon-wrapper svg {
    width: 40px;
    height: 40px;
}

/* --- New "How to Play" Timeline/Stepper Styles --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--panel-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 0;
}
.timeline-item {
    padding: 1rem 2.5rem;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--bg-color-light);
    border: 4px solid var(--accent-cyan);
    top: 24px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 15px var(--accent-glow);
}
.timeline-left { left: 0; padding-right: 3rem; }
.timeline-right { left: 50%; padding-left: 3rem; }
.timeline-right::after { left: -12px; }
.timeline-content {
    padding: 1.5rem;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid var(--panel-border);
    position: relative;
    border-radius: 0.5rem;
}
.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}
.timeline-content .ability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}
.timeline-content .ability-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.timeline-content .ability-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 1rem; }
    .timeline-left::after, .timeline-right::after { left: 8px; }
    .timeline-right { left: 0%; }
}

/* --- New Monetization UI --- */
.currency-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 17, 23, 0.7);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--panel-border);
}
.currency-display .icon { font-size: 1.25rem; }
.currency-display span { color: var(--text-light); }

.reward-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(13, 17, 23, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--panel-border);
    min-width: 80px;
}
.reward-item .icon { font-size: 1.75rem; }
.reward-item .value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-cyan);
}
.reward-item .label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-dark); }

/* --- Store Preview Cards --- */
.store-preview-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: rgba(13, 17, 23, 0.6); /* Make background transparent like other sections */
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
}
.store-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.store-preview-card .emoji-placeholder {
    font-size: 3rem;
    filter: grayscale(100%);
    visibility: visible !important; /* Ensure emoji placeholder stays visible */
}
.store-preview-card:hover .emoji-placeholder {
    filter: grayscale(0%);
}
/* Selected state for store preview cards */
.store-preview-card.selected {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Selected state for avatar preview items */
.avatar-preview-item.selected {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Fix for preview container visibility issue */
#preview-container {
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    visibility: visible !important; /* Ensure preview container stays visible */
}

/* Ensure the inner content of store preview cards remains visible */
.store-preview-card .relative.rounded-xl.h-40.flex.items-center.justify-center.mb-4.shadow-lg.overflow-hidden.group {
    background: transparent;
}

.store-preview-card .flex-grow h3,
.store-preview-card .flex-grow p {
    visibility: visible !important; /* Ensure text content stays visible */
}

/* Ensure the border overlay stays visible on hover */
.store-preview-card .absolute.inset-0.rounded-xl.border-2 {
    visibility: visible !important; /* Ensure border overlay stays visible */
}

@media (max-width: 768px) {
    .store-preview-card {
        padding: 1rem !important;
    }
    .store-preview-card .emoji-placeholder {
        font-size: 2.5rem;
    }
    .store-preview-card h3 {
        font-size: 1.25rem !important;
    }
    .store-preview-card p {
        font-size: 0.875rem !important;
        margin-bottom: 0.5rem !important;
    }
    .store-preview-card .inline-block {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        padding: 0.25rem 0.5rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .store-preview-card {
        padding: 0.75rem !important;
    }
    .store-preview-card .emoji-placeholder {
        font-size: 2rem;
    }
    .store-preview-card h3 {
        font-size: 1.125rem !important;
    }
    .store-preview-card .inline-block {
        padding: 0.125rem 0.25rem !important;
        font-size: 0.625rem !important;
    }
}

.primary-btn.loading {
    opacity: 0.8;
    pointer-events: none;
}

/* Fix for abilities toggle button arrow centering */
#toggle-abilities {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#toggle-abilities span {
    display: flex;
    align-items: center;
}

/* --- Abilities Section Styles --- */
#abilities-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    border-radius: 1rem;
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    /* Hide abilities by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 1rem;
}

#abilities-container.expanded {
    padding: 2rem 1rem 0 1rem;
    max-height: 6000px; /* Further increased height to ensure all abilities are visible on mobile */
    opacity: 1;
    overflow: visible; /* Fix for mobile scrolling issue */
}

#abilities-container .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding: 1rem 0;
}

/* Special Abilities Container */
#special-abilities-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding: 1rem 0;
    /* Ensure special abilities are hidden by default */
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    /* Fix for mobile scrolling issue - ensure container can scroll */
    overflow-y: visible;
}

#abilities-container.expanded #special-abilities-container {
    opacity: 1;
    max-height: 3000px; /* Further increased height to ensure all abilities are visible */
    overflow-y: visible; /* Fix for mobile scrolling issue */
}

@media (min-width: 640px) {
    #abilities-container .grid,
    #special-abilities-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Ensure all ability cards are properly displayed on mobile */
@media (max-width: 639px) {
    #special-abilities-container .ability-card {
        min-height: 280px; /* Ensure consistent height for all cards */
    }
}

@media (min-width: 1024px) {
    .cross-platform-card {
        grid-column: 1 / -1; /* Span all columns */
    }
    
    #abilities-container .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    /* Special Abilities Container - use grid for consistent styling */
    #special-abilities-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Center PNL Insurance tile specifically */
    #special-abilities-container .pnl-insurance {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* When there's only one ability, ensure it's centered */
    #special-abilities-container .ability-card:only-child {
        margin: 0 auto;
        width: calc(25% - 1.5rem);
    }
    
    /* Style for coming soon tiles */
    #special-abilities-container .ability-card.opacity-50 {
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
    
    #special-abilities-container .ability-card.opacity-50:hover {
        opacity: 1;
    }
}

/* Mobile and tablet grid adjustments */
@media (min-width: 640px) and (max-width: 1023px) {
    #abilities-container .grid,
    #special-abilities-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile-specific fixes for scrolling issues */
@media (max-width: 639px) {
    #abilities-container .grid,
    #special-abilities-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    #abilities-container.expanded {
        max-height: none; /* Remove height restrictions on mobile */
        overflow: visible; /* Ensure content is visible */
    }
    
    #abilities-container.expanded #special-abilities-container {
        max-height: none; /* Remove height restrictions on mobile */
        overflow: visible; /* Ensure content is visible */
    }
    
    #special-abilities-container .ability-card {
        min-height: 280px; /* Ensure consistent height for all cards */
    }
}

/* --- Play Now Button Scroll Behavior --- */
#playNowBtn {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 229, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.8); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    20% { opacity: 0.1; }
    50% { opacity: 0.3; }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); opacity: 0; }
}

/* Simple Store Download Buttons */
.store-download-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-download-link:hover {
    text-decoration: none;
}

.store-download-link:focus {
    outline: none;
}

/* Preloader Optimization */
#preloader {
    transition: opacity 0.3s ease-out;
}

.store-button-img {
    height: 3rem; /* 48px */
    width: 10rem; /* 160px - fixed width to ensure both buttons are the same size */
    object-fit: contain;
}

.store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem; /* 160px */
    height: 3rem; /* 48px */
}

/* Coming Soon Button Styles */
.coming-soon-btn {
    position: relative;
    overflow: hidden;
    cursor: not-allowed; /* Indicate not clickable */
}

.coming-soon-btn .btn-text {
    display: block;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.coming-soon-btn .coming-soon-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-cyan); /* Match button background */
    color: var(--bg-color); /* Match button text color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.coming-soon-btn:hover .btn-text {
    transform: translateY(-100%);
    opacity: 0;
}

.coming-soon-btn:hover .coming-soon-text {
    transform: translateY(0);
    opacity: 1;
    animation: comingSoonPulse 1.5s infinite; /* Super amazing animation */
}

/* Back to Home button style */
.back-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--panel-border);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    color: var(--accent-cyan);
    text-decoration: none;
}
.back-link:hover {
    background: rgba(0, 229, 255, 0.2);
    text-decoration: none;
    transform: translateX(-5px);
}

/* Center Cross-Platform Play card on desktop */
.cross-platform-card {
    margin: 0 auto;
    max-width: 800px;
}

@media (min-width: 1024px) {
    .cross-platform-card {
        grid-column: 1 / -1; /* Span all columns */
    }
}

@keyframes comingSoonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}/* === ENHANCED BUTTON STYLES === */

/* Enhanced Waiting List Button with Amazing Animations */
.waiting-list-btn {
    background: linear-gradient(45deg, var(--accent-cyan), #00a8ff);
    color: var(--bg-color);
    padding: 1.5rem 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--accent-glow), inset 0 0 15px rgba(255, 255, 255, 0.4);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1;
    animation: subtle-glow 2s ease-in-out infinite;
}

/* Animated gradient background for the Waiting List button */
.waiting-list-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1), transparent);
    transition: 0.5s;
    z-index: -1;
}

.waiting-list-btn:hover::before {
    left: 100%;
}

.waiting-list-btn:hover {
    transform: translateY(-10px) scale(1.15);
    box-shadow: 0 20px 50px var(--accent-cyan), 0 0 45px var(--accent-cyan), inset 0 0 25px rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2em;
}

/* Pulsing animation for the Waiting List button */
.waiting-list-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 1rem;
    z-index: -1;
    filter: blur(30px);
    opacity: 0.9;
    animation: pulse-border 1.2s infinite, neon-pulse 1.5s infinite alternate;
}

/* Call to action shine effect */
.waiting-list-btn .cta-shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30px;
    height: 200%;
    background: rgba(255, 255, 255, 0.7);
    transform: rotate(25deg);
    transition: none;
    z-index: -1;
}

.waiting-list-btn:hover .cta-shine {
    left: 120%;
    transition: left 0.8s ease-in-out;
}

/* Additional cool effects */
.waiting-list-btn span {
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* Ultra-cool particle effects */
.waiting-list-btn .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.waiting-list-btn .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 3s infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

@keyframes neon-pulse {
    0% {
        box-shadow: 0 0 5px var(--accent-cyan);
    }
    100% {
        box-shadow: 0 0 30px var(--accent-cyan), 0 0 20px var(--accent-cyan);
    }
}

@keyframes pulse-glow {
    0% { 
        box-shadow: 0 0 20px var(--accent-glow), inset 0 0 15px rgba(255, 255, 255, 0.4);
    }
    100% { 
        box-shadow: 0 0 50px var(--accent-cyan), inset 0 0 30px rgba(255, 255, 255, 0.8);
    }
}

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

@keyframes attract {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 0 40px var(--accent-glow);
    }
    25% { 
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 0 50px var(--accent-cyan);
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 0 60px var(--accent-cyan);
    }
    75% { 
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 0 50px var(--accent-cyan);
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px) scale(1);
        opacity: 0;
    }
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 229, 255, 1), 0 0 30px rgba(0, 229, 255, 0.8);
    }
}

.waiting-list-btn:hover .shine {
    left: 120%;
    transition: left 0.7s ease-in-out;
}

/* Special shine effect on hover */
.waiting-list-btn .shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(25deg);
    transition: none;
    z-index: -1;
}

.waiting-list-btn:hover .shine {
    left: 120%;
    transition: left 0.6s ease-in-out;
}

@keyframes pulse-glow {
    0% { 
        box-shadow: 0 0 15px var(--accent-glow), inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% { 
        box-shadow: 0 0 30px var(--accent-cyan), inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}/* Enhanced "Coming Soon To:" section */
.store-buttons-container {
    animation: fadeIn 0.8s ease-out;
}

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

.store-buttons-container {
    animation: slideInUp 0.6s ease-out forwards;
}

/* Add individual entrance animations for store buttons */
.store-button {
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

.store-button:nth-child(1) {
    animation-delay: 0.1s;
}

.store-button:nth-child(2) {
    animation-delay: 0.2s;
}

.store-button:nth-child(3) {
    animation-delay: 0.3s;
}

/* Hover effects for store buttons */
.store-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Enhanced "Coming Soon To:" heading */
.animate-pulse-slow {
    animation: pulse-glow 3s infinite alternate;
}/* Epic hover effects for store buttons */
.store-button {
    transition: all 0.3s ease;
}

.store-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
}/* Cool store buttons unified design */
.cool-store-button {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cool-store-button:hover {
    transform: translateY(-5px) scale(1.05);
    z-index: 10;
}

/* Add ripple effect on hover */
.cool-store-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Enhanced store button container */
.store-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .store-buttons-container {
        gap: 0.75rem;
    }
    
    .cool-store-button .h-12 {
        height: 2.5rem;
    }
    
    .cool-store-button .text-[10px] {
        font-size: 0.6rem;
    }
}/* Perfect store button alignment for web and mobile */
.store-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Ensure all store buttons have consistent sizing */
.store-button {
    flex: 0 0 auto;
    min-width: 120px;
    max-width: 160px;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .store-buttons-container {
        gap: 0.75rem;
    }
    
    .store-button {
        min-width: 100px;
        max-width: 140px;
    }
    
    .store-button-img {
        height: 2.5rem;
    }
}

/* Ensure images maintain aspect ratio */
.store-button-img {
    height: 3rem;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

/* Perfect vertical alignment */
.store-button.flex.items-center {
    align-items: center;
}/* Enter the Arena Button Styles */
.coming-soon-btn {
    background: linear-gradient(45deg, var(--accent-cyan), #00a8ff);
    color: var(--bg-color);
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--accent-glow);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: not-allowed;
    font-size: 1.25rem;
}

.coming-soon-btn .btn-text {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.coming-soon-btn .coming-soon-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent-cyan), #00a8ff);
    color: var(--bg-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.coming-soon-btn:hover .btn-text {
    transform: translateY(-100%);
    opacity: 0;
}

.coming-soon-btn:hover .coming-soon-text {
    transform: translateY(0);
    opacity: 1;
}

/* Section title and subtitle styles */
.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--accent-glow);
}

.section-subtitle {
    text-align: center;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .coming-soon-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}/* Epic Animations for Join Waiting List Button */

/* Faster, more intense glow effect */
@keyframes epic-glow {
    0% {
        box-shadow: 0 0 30px var(--accent-glow), inset 0 0 15px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 60px var(--accent-cyan), 0 0 30px var(--accent-cyan), inset 0 0 25px rgba(255, 255, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 40px var(--accent-glow), inset 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

/* Rapid, bouncy float effect */
@keyframes rapid-float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(-2deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* High-energy pulse effect */
@keyframes energy-pulse {
    0% {
        transform: scale(1);
        filter: hue-rotate(0deg);
    }
    33% {
        transform: scale(1.03) skew(1deg, 1deg);
        filter: hue-rotate(10deg);
    }
    66% {
        transform: scale(0.98) skew(-1deg, -1deg);
        filter: hue-rotate(-10deg);
    }
    100% {
        transform: scale(1);
        filter: hue-rotate(0deg);
    }
}

/* Lightning strike effect */
@keyframes lightning-strike {
    0% {
        background: linear-gradient(45deg, var(--accent-cyan), #00a8ff);
    }
    10% {
        background: linear-gradient(45deg, #ffffff, var(--accent-cyan));
    }
    20% {
        background: linear-gradient(45deg, var(--accent-cyan), #00a8ff);
    }
    100% {
        background: linear-gradient(45deg, var(--accent-cyan), #00a8ff);
    }
}

/* Enhanced hover effects for even more epicness */
.waiting-list-btn:hover {
    animation: lightning-strike 0.3s ease-out, epic-glow 0.5s ease-out infinite alternate;
    transform: translateY(-15px) scale(1.2) rotate(2deg);
    box-shadow: 0 25px 60px var(--accent-cyan), 0 0 50px var(--accent-cyan), inset 0 0 30px rgba(255, 255, 255, 1);
    letter-spacing: 0.25em;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* Cooler, Call-to-Action Focused Animations for Join Waiting List Button */

/* Subtle glow that draws attention without distraction */
@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 0 30px var(--accent-glow), inset 0 0 15px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 45px var(--accent-cyan), inset 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

/* Gentle pulse that makes button feel alive */
@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Subtle attraction effect */
@keyframes subtle-attract {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Enhanced hover for clear call-to-action */
.waiting-list-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--accent-cyan), 0 0 35px var(--accent-cyan), inset 0 0 25px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2em;
    animation: gentle-pulse 1.5s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Shine effect on hover */
.waiting-list-btn .shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(25deg);
    transition: none;
}

.waiting-list-btn:hover .shine {
    left: 120%;
    transition: left 0.6s ease-in-out;
}
