/* styling/components.css
===== BUTTONS ===== */
.cta-button, .back-button, .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-green), #88ff88);
    color: #000;
    box-shadow: 0 4px 15px rgba(102, 221, 102, 0.3);
}

.back-button {
    background: linear-gradient(45deg, var(--primary-blue), #88ccff);
    color: #000;
    box-shadow: 0 4px 15px rgba(102, 170, 255, 0.3);
}

.cta-button:hover, .back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 221, 102, 0.5);
}

/* ===== CARDS ===== */
.gaming-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gaming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    background-size: 200% 100%;
    animation: gradient-flow 6s ease-in-out infinite;
}

/* ===== FORMS ===== */
.gaming-field {
    width: 100%;
    margin-bottom: 1rem;
}

/* ===== HIGHLIGHT BOXES ===== */
.highlight-box {
    background: linear-gradient(45deg, rgba(102, 221, 102, 0.1), rgba(102, 170, 255, 0.1));
    border: 2px solid rgba(102, 221, 102, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.warning-box {
    background: linear-gradient(45deg, rgba(255, 170, 0, 0.1), rgba(255, 100, 0, 0.1));
    border: 2px solid rgba(255, 170, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}


/* ===== ANIMATED LOGO BANNER ===== */
.animated-banner {
    position: relative;
    width: 200px;
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner-c-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: auto;
    z-index: 1;
    filter: drop-shadow(0 0 8px var(--primary-green));
}

.banner-eeq-text {
    position: absolute;
    top: 0;
    left: -150px;
    height: 50px;
    width: auto;
    z-index: 2;
    animation: flyInFromLeft 2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes flyInFromLeft {
    0% {
        left: -250px;
        opacity: 0;
        transform: translateX(-20px);
    }
    80% {
        transform: translateX(5px);
    }
    100% {
        left: 2px;
        opacity: 1;
        transform: translateX(0);
    }
}

.animated-banner:hover .banner-c-icon {
    filter: drop-shadow(0 0 15px var(--primary-green));
    transition: filter 0.3s ease;
}

.animated-banner:hover .banner-eeq-text {
    filter: drop-shadow(0 0 10px var(--primary-blue));
    transition: filter 0.3s ease;
}
