/* *{
    border: 1px white solid;
} */

body{
    background-color: #181818;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html{
    overflow-x: hidden;
}

h1{
    font-size: 50px;
}

h2{
    font-size: 40px;
}

h3{
    font-size: 30px;
}

.btn-container a{
    text-decoration: none;
    color: white;
    background-color: rgb(190, 0, 0);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 20px;
}

.textblock{
    width: 80%;
    margin: 0 auto;
}

.logo-tc{
    width: 50%;
    height: auto;
}

.slogan{
    font-size: 45px
}

.welcome-sect{
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: red;
}

.socials{
    align-items: center;
    justify-content: center;
}

.socialicon{
    width: 5%;
    height: auto;
    margin: 0 10px;
    padding: 0;
}

.cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: auto;
    /* padding: 40px 24px 80px; */
}

.game{
    background-color: #212121;
    border-radius: 10px;
    padding: 20px 10px;
    width: 70%;
    margin: 20px auto;
}

.game h3{
    font-size: 40px;
}

.btn-container{
    padding-top: 15px;
}

.formm{
    background-color: #252525;
    border-radius: 25px;
    padding: 20px 70px;
}

input{
    border-radius: 7px;

}

.l{
    padding-bottom: 10px;
}

.games{
    width: 95%;
    margin: 0 auto;
    padding: 10px 0 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.games-track{
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding: 12px 24px 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-sizing: border-box;
}

.games-track::-webkit-scrollbar{
    display: none;
}

.game-card{
    position: relative;
    display: block;
    flex: 0 0 90%;
    max-width: 80%;
    min-width: 80%;
    aspect-ratio: 16 / 9;
    /* min-height: 380px; */
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 35%), #252525;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    scroll-snap-align: center;
    color: #ffffff;
    text-decoration: none;
    text-align: left;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.game-card:hover{
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

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

.game-info{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.85) 100%);
}

.game-info h2{
    margin: 0 0 6px 0;
    font-size: clamp(22px, 5vw, 70px);
    letter-spacing: 1px;
}

.game-info p{
    margin: 0;
    font-size: 16px;
    color: #e6e6e6;
}

.games-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.games-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #444444;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.games-dot.active{
    background-color: #ffffff;
    transform: scale(1.1);
}

.games-dot:focus-visible{
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.game-detail{
    padding: 140px 10vw 80px;
    display: grid;
    gap: 40px;
    align-items: start;
}

.game-hero{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 36px;
}

.game-hero__media{
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 35%), #1f1f1f;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.game-hero__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-hero__content h1{
    margin: 0 0 12px 0;
    font-size: clamp(32px, 4vw, 56px);
}

.game-tagline{
    margin: 0 0 18px 0;
    font-size: 1.05rem;
    color: #dcdcdc;
    line-height: 1.5;
}

.game-description{
    margin: 0 0 24px 0;
    font-size: 1rem;
    color: #cfcfcf;
    line-height: 1.7;
}

.game-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 14px 0;
}

.game-badge{
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

.game-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.game-cta{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #111;
    background: linear-gradient(135deg, #f7c200, #ffed8a);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.game-cta:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.game-cta.secondary{
    background: linear-gradient(135deg, #3ac9ff, #8ee6ff);
    color: #072c3b;
}

.game-cta.outline{
    background: transparent;
    color: #f6f6f6;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.game-cta.outline:hover{
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.contact-page{
    min-height: 100vh;
    padding: 140px 6vw 96px;
    background: radial-gradient(120% 90% at 12% 10%, rgba(255, 0, 0, 0.05), transparent 38%),
                radial-gradient(80% 120% at 85% 18%, rgba(255, 255, 255, 0.05), transparent 32%),
                #181818;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: #f3f3f3;
    text-align: left;
}

.contact-header{
    max-width: 880px;
    margin: 0 auto 8px;
}

.contact-header h1{
    margin: 10px 0 12px;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 0.02em;
}

.contact-subtitle{
    margin: 0;
    color: #dcdcdc;
    line-height: 1.5;
    font-size: 1.02rem;
}

.eyebrow{
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: #ff5a5a;
    margin: 0;
}

.contact-grid{
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

.contact-card{
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
    text-align: left;
}

.contact-card__header h3{
    margin: 6px 0 10px;
    font-size: 1.4rem;
}

.contact-card__note{
    margin: 2px 0 0;
    color: #cfcfcf;
    font-size: 0.95rem;
}

.contact-list{
    list-style: none;
    padding: 0;
    margin: 12px 0 22px;
    display: grid;
    gap: 10px;
}

.contact-list li{
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.98rem;
}

.contact-meta{
    display: grid;
    gap: 14px;
}

.meta-item{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-label{
    color: #cfcfcf;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.meta-value{
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
}

.meta-value:hover{
    color: #ff5a5a;
}

.meta-links{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.meta-links a{
    color: #ffffff;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.meta-links a:hover{
    color: #ff5a5a;
    border-color: rgba(255, 90, 90, 0.6);
}

.contact-form-card{
    background: linear-gradient(160deg, rgba(255, 0, 0, 0.06), rgba(255, 255, 255, 0.01));
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form label{
    font-weight: 600;
    letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 12px 14px;
    font-size: 1rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline: none;
    border-color: rgba(255, 90, 90, 0.75);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.18);
}

.contact-form textarea{
    resize: vertical;
    min-height: 140px;
}

.btn-primary{
    margin-top: 6px;
    align-self: flex-start;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #ff2d2d, #ff5a5a);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 14px 20px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(255, 45, 45, 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover{
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(255, 45, 45, 0.42);
    filter: brightness(1.02);
}

.btn-primary:active{
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(255, 45, 45, 0.3);
}

.contact-single{
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.philo-page{
    min-height: 100vh;
    padding: 140px 6vw 96px;
    background: radial-gradient(120% 90% at 15% 12%, rgba(255, 0, 0, 0.05), transparent 38%),
                radial-gradient(90% 100% at 85% 10%, rgba(255, 255, 255, 0.05), transparent 35%),
                #181818;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: #f2f2f2;
    text-align: left;
}

.philo-header{
    max-width: 960px;
    margin: 0 auto 4px;
}

.philo-header h1{
    margin: 10px 0 12px;
    font-size: clamp(34px, 4.6vw, 52px);
    letter-spacing: 0.02em;
}

.philo-subtitle{
    margin: 0;
    color: #d9d9d9;
    line-height: 1.5;
    font-size: 1.02rem;
}

.philo-grid{
    width: 100%;
    max-width: 1100px;
    margin: 6px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.philo-card{
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.philo-card h3{
    margin: 6px 0 8px;
    font-size: 1.28rem;
}

.philo-card p{
    margin: 0;
    color: #d9d9d9;
    line-height: 1.5;
}

.philo-panel{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.philo-panel__inner{
    background: linear-gradient(160deg, rgba(255, 0, 0, 0.06), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #ff2d2d;
    border-radius: 22px;
    padding: 26px 24px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.philo-panel__header h3{
    margin: 8px 0 10px;
    font-size: 1.3rem;
}

.philo-panel__text{
    margin: 0;
    color: #dcdcdc;
    line-height: 1.5;
}

.philo-list{
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.philo-list li{
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 12px;
    color: #e8e8e8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    body{
        overflow-x: hidden;
    }

    .logo-tc {
        width: 90%;
    }

    .slogan {
        font-size: 25px;
    }

    .socialicon{
        width: 10%;
        height: auto;
    }

    .textblock{
        width: 90%;
        margin: 0 auto;
    }

    .game-info h2{
        font-size: 30px;
    }

    .game-info p{
        font-size: 14px;
    }

    .games{
        width: 100%;
        padding: 4px 0 0;
        overflow: hidden;
    }

    .games-track{
        padding: 0 10px 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 100vw;
        gap: 10px;
        scroll-padding: 0 10px;
    }

    .game-card{
        flex-basis: 82%;
        max-width: 82%;
        min-width: 82%;
        min-height: 320px;
        aspect-ratio: 9 / 16;
    }

    .game-detail{
        padding: 120px 6vw 64px;
    }

    .game-hero{
        grid-template-columns: 1fr;
    }

    .game-hero__media{
        max-width: 82%;
        margin: 0 auto;
        aspect-ratio: 9 / 16;
    }

    .game-actions{
        justify-content: center;
    }

    .contact-page{
        padding: 120px 5vw 72px;
    }

    .contact-card{
        padding: 24px 20px;
    }

    .contact-subtitle{
        font-size: 0.98rem;
    }

    .philo-page{
        padding: 120px 5vw 72px;
    }

    .philo-card,
    .philo-panel__inner{
        padding: 20px 18px;
    }
}

.legal-container{
    width: 80%;
    margin: 0 auto;
}

.site-footer{
    margin-top: auto;
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 6vw;
    color: #e8e8e8;
}

.footer-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand{
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.footer-logo{
    font-weight: 700;
    font-size: 1.05rem;
}

.footer-links{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a{
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 10px;
    border-radius: 10px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.footer-links a:hover{
    color: #ff5a5a;
    background: rgba(255, 90, 90, 0.08);
}
