/* Bator Games — landing page
   Visual identity matched to BateCards (dark teal bg, cyan accents) */

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #092b36 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.container {
    max-width: 960px;
    width: 100%;
    text-align: center;
}

/* Header */
.site-header {
    position: relative;
    margin-bottom: 50px;
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 153, 204, 0.08) 100%);
    border: 3px solid rgba(0, 212, 255, 0.2);
    border-radius: 17px;
}

.age-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4444 0%, #cc2222 100%);
    color: #ffffff;
    font-size: 0.8em;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4);
}

h1 {
    font-size: 3em;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
}

.subtagline {
    color: #5f9ab8;
    font-size: 1em;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.game-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #0e4354 100%);
    border: 3px solid #0f0f0f;
    border-radius: 17px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    padding: 35px 25px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 20px 45px rgba(0, 212, 255, 0.15), 0 15px 35px rgba(0, 0, 0, 0.6);
}

.game-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.game-title {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.game-description {
    color: #cccccc;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.play-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #2b7780 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1em;
    padding: 12px 30px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.game-card:hover .play-btn {
    background: linear-gradient(135deg, #0099cc 0%, #2c8f87 100%);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Coming soon cards */
.game-card.coming-soon {
    cursor: default;
    opacity: 0.55;
}

.game-card.coming-soon:hover {
    transform: none;
    border-color: #0f0f0f;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.soon-badge {
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    color: #aaaaaa;
    font-weight: 600;
    font-size: 0.85em;
    padding: 10px 24px;
    border-radius: 25px;
    border: 1px solid #6a6a6a;
}

/* External links section */
.links-section {
    margin-bottom: 40px;
}

.links-title {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.link-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(14, 67, 84, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 18px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.15);
}

.link-name {
    color: #ffffff;
    font-size: 1.05em;
    font-weight: 700;
}

.link-desc {
    color: #aaaaaa;
    font-size: 0.8em;
    line-height: 1.4;
}

.link-domain {
    color: #00d4ff;
    font-size: 0.8em;
    font-weight: 600;
    margin-top: 4px;
}

/* Footer */
.site-footer {
    color: #5f9ab8;
    font-size: 0.85em;
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 2.1em;
    }

    .tagline {
        font-size: 1.05em;
    }

    .site-header {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}
