/* About page styles */

/* Coming Soon section */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 4rem 2rem;
    text-align: center;
}

.coming-soon-heading {
    color: var(--cryptids-green, #00FF7F); /* Using CSS variable with fallback */
    font-family: 'Gameria', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries */
@media only screen and (max-width: 767px) {
    .coming-soon-heading {
        font-size: 3rem;
    }
}

/* Shared game styles */

/* Section Styles */
.section-title {
    font-family: 'Gameria', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.cta-button {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: var(--dark);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.secondary:hover {
    background: rgba(0, 255, 153, 0.1);
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Media Queries */
@media only screen and (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        width: 95%;
        padding: 0 0.5rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    color: transparent;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.border-glow {
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 153, 0.3);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}
