/* Hyper Kyro Guild - Slingo Blast Website Styles */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
}

.site-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #a78bfa;
}

/* Hero */
.hero {
    padding: 3rem 0 4rem;
    text-align: center;
}

.hero-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.hero h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* CTA Button */
.cta-block {
    text-align: center;
    margin: 2rem 0;
}

.cta-block a {
    display: inline-block;
}

.cta-block img {
    height: 56px;
    width: auto;
    transition: transform 0.2s;
}

.cta-block img:hover {
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.feature-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.feature-card-content {
    padding: 1.25rem;
}

.feature-card h3 {
    color: #a78bfa;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Content Blocks */
.content-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.content-block img {
    max-width: 160px;
    height: auto;
    margin-bottom: 1rem;
}

.content-block h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-block p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

/* Page Content */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.page-content h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.page-content h2 {
    color: #a78bfa;
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.page-content p,
.page-content li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.page-content ul {
    margin-left: 1.5rem;
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo span {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #a78bfa;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Games Page Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card-body {
    padding: 1.5rem;
}

.game-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.game-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Age Gate Overlay */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 41, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    isolation: isolate;
}
.age-gate-overlay.active {
    display: flex;
}
.age-gate-modal {
    width: min(540px, 92vw);
    background: rgba(48, 43, 99, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.age-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #a78bfa;
    border: 2px solid #a78bfa;
    margin: 0 auto 1rem;
}
.age-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.age-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.age-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.age-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    border: none;
}
.age-btn--primary {
    background: #a78bfa;
    color: #0f0c29;
}
.age-btn--primary:hover {
    background: #c4b5fd;
    transform: translateY(-1px);
}
.age-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.age-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}
.age-note {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    padding: 18px 24px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(48, 43, 99, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}
.cookie-text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    min-width: 200px;
}
.cookie-text a {
    color: #a78bfa;
    text-decoration: none;
}
.cookie-text a:hover {
    text-decoration: underline;
}
.cookie-actions {
    flex-shrink: 0;
}
