@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --accent: #2EB5F7;
    /* Cinematic Blue */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* MESH GRADIENT BACKGROUND */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(at 0% 0%, rgba(46, 181, 247, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.15) 0px, transparent 50%);
    z-index: -1;
    filter: blur(80px);
}

/* Typography */
h1,
h2 {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    line-height: 1;
}

h1 {
    font-size: 8vw;
    /* Responsive huge text */
    font-weight: 700;
    letter-spacing: -2px;
}

h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 600px;
}

/* SCROLL SNAP STRUCTURE */
main {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

section {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    position: relative;
}

/* HERO SECTION */
.hero-content {
    animation: fadeIn 1.5s ease-out;
}

.hero-tag {
    font-family: 'Syncopate', sans-serif;
    font-size: 1rem;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

/* Horizontal Scroll Area (Games) */
.horizontal-scroll-container {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 0;
    width: 100%;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none;
}

.game-card {
    min-width: 60vw;
    /* Big posters */
    height: 60vh;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s;
}

.game-card:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.game-card iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.4s;
    pointer-events: none;
    /* Interact via logic or overlay */
}

.game-card:hover iframe {
    opacity: 1;
}

.game-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* CONTACT - Minimalist */
.minimal-form input,
.minimal-form textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    width: 100%;
    padding: 20px 0;
    color: white;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    transition: 0.3s;
}

.minimal-form input:focus,
.minimal-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.minimal-form button {
    margin-top: 40px;
    background: white;
    color: black;
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.minimal-form button:hover {
    background: var(--accent);
    color: white;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.reveal-text.visible span {
    opacity: 1;
    transform: translateY(0);
}

/* SOCIAL BUTTONS */
.social-btn {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
}

.social-btn:hover {
    background: var(--accent);
    color: black;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(46, 181, 247, 0.4);
    transform: translateY(-3px);
}

/* APP SHOWCASE (Bento Style) */
.app-showcase-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.app-brand-col {
    flex: 1;
    min-width: 300px;
}

.app-main-logo {
    width: 200px;
    height: 200px;
    border-radius: 40px;
    box-shadow: 0 0 50px rgba(46, 181, 247, 0.3);
    transition: transform 0.5s ease;
}

.app-main-logo:hover {
    transform: rotate(-5deg) scale(1.05);
}

.cta-button {
    background: var(--text-main);
    color: black;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-family: 'Syncopate';
    transition: 0.3s;
    border: 2px solid white;
    display: inline-block;
}

.cta-button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.app-features-col {
    flex: 1.5;
    min-width: 300px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    border-left: 2px solid var(--accent);
    transition: 0.3s;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.bento-item h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.bento-item p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .app-showcase-container {
        flex-direction: column;
        text-align: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item {
        grid-column: auto !important;
    }
}

/* CUSTOM SCROLLBARS */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) var(--bg-dark);
}