/*==================================================
  GAM3RZA Website
  Version 2.0
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@500;600;700;800&display=swap');

/*==================================================
  VARIABLES
==================================================*/

:root{

    --primary:#d42027;
    --primary-hover:#f03a45;

    --bg:#080808;
    --surface:#111111;
    --surface-light:#1b1b1b;

    --text:#ffffff;
    --text-muted:#a5a5a5;

    --border:rgba(255,255,255,.08);

    --radius:18px;

    --shadow:
        0 20px 60px rgba(0,0,0,.45);

    --transition:.3s ease;

    --container:1400px;

}

/*==================================================
  RESET
==================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:'Inter',sans-serif;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    font:inherit;

    border:none;

    cursor:pointer;

    background:none;

}

/*==================================================
  TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4{

    font-family:'Orbitron',sans-serif;

    font-weight:700;

    line-height:1.15;

}

h1{

    font-size:clamp(3rem,7vw,5.5rem);

}

h2{

    font-size:clamp(2rem,4vw,3rem);

}

h3{

    font-size:1.6rem;

}

p{

    color:var(--text-muted);

}

/*==================================================
  LAYOUT
==================================================*/

.container{

    width:min(var(--container),92%);

    margin-inline:auto;

}

.section{

    padding:100px 0;

}

.hero + .section{

    padding-top:40px;

}

.grid{

    display:grid;

    gap:2rem;

}

.flex{

    display:flex;

}

/*==================================================
  UTILITIES
==================================================*/

.text-center{

    text-align:center;

}

.mt-2{

    margin-top:2rem;

}

.mt-4{

    margin-top:4rem;

}

.hidden{

    display:none;

}

/*==================================================
  NAVIGATION
==================================================*/

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(8,8,8,.75);

    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);

    border-bottom:1px solid var(--border);

    transition:.35s;

}

.navbar.scrolled{

    background:rgba(8,8,8,.95);

    box-shadow:var(--shadow);

}

.nav-container{

    width:min(var(--container),92%);

    margin:auto;

    min-height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:60px;

    transition:.3s;

}

.logo:hover img{

    transform:scale(1.03);

}

.nav-menu{

    display:flex;

    gap:2.5rem;

    align-items:center;

}

.nav-menu a{

    position:relative;

    font-weight:600;

    transition:.3s;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transform:translateX(-50%);

    transition:.3s;

}

.nav-menu a:hover::after,
.nav-menu a.active::after{

    width:100%;

}

.nav-toggle{

    display:none;

}

.nav-toggle span{

    display:block;

    width:28px;

    height:3px;

    margin:5px;

    background:#fff;

    transition:.3s;

}

/*==================================================
  HERO
==================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding-top:140px;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top,
        rgba(212,32,39,.18),
        transparent 55%);

    pointer-events:none;

}

.hero-content{

    max-width:900px;

    position:relative;

    z-index:2;

}

.hero-logo{

    width:460px;

    margin:0 auto 2rem;

}

.hero-icon{

    width:120px;
    height:120px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    margin:0 auto 2rem;

    box-shadow:0 20px 50px rgba(0,0,0,.45);

}

.hero-icon svg{

    width:56px;
    height:56px;

}

.hero-icon.youtube{

    background:#FF0000;
    color:#fff;

}

.hero-icon.twitch{

    background:#9146FF;
    color:#fff;

}

.hero h1{

    margin-bottom:1rem;

    color:#fff;

}

.hero p{

    max-width:720px;

    margin:0 auto 2.5rem;

    font-size:1.15rem;

}

/*==================================================
  BUTTONS
==================================================*/

.btn-group{

    display:flex;

    justify-content:center;

    gap:1rem;

    flex-wrap:wrap;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:all .3s ease;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-hover);

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(212,32,39,.35);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:#fff;

}

.btn-secondary:hover{

    background:var(--primary);

}

/*==================================================
  SECTION TITLES
==================================================*/

.section-header{

    text-align:center;

    margin-bottom:4rem;

}

.section-title{

    margin-bottom:1rem;

}

.section-subtitle{

    max-width:700px;

    margin:auto;

}

/*==================================================
  MOBILE NAVIGATION
==================================================*/

@media(max-width:900px){

.hero{

    padding-top:180px;

}

.hero-logo{

    width:340px;

}

.hero-icon{

    width:100px;
    height:100px;

}

.hero-icon svg{

    width:46px;
    height:46px;

}

.hero h1{

    font-size:clamp(2.5rem,10vw,4rem);

}

.btn-group{

    flex-direction:column;

    align-items:center;

}

.btn{

    width:260px;

}

}

/*==================================================
  HERO ANIMATION
==================================================*/

.hero-content>*{

    opacity:0;

    transform:translateY(35px);

    animation:heroFade .8s forwards;

}

.hero-content>*:nth-child(1){

    animation-delay:.15s;

}

.hero-content>*:nth-child(2){

    animation-delay:.35s;

}

.hero-content>*:nth-child(3){

    animation-delay:.55s;

}

.hero-content>*:nth-child(4){

    animation-delay:.75s;

}

@keyframes heroFade{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
  CONTENT SECTIONS
==================================================*/

.section-dark{

    background:var(--surface);

}

.section-alt{

    background:var(--surface-light);

}

/*==================================================
  CARD SYSTEM
==================================================*/

.card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    overflow:hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,32,39,.35);

    box-shadow:
        0 20px 50px rgba(0,0,0,.45);

}

.card img{

    width:100%;

    display:block;

}

.card-body{

    padding:1.8rem;

}

.card-title{

    margin-bottom:.75rem;

    color:#fff;

}

.card-text{

    color:var(--text-muted);

    margin-bottom:1.5rem;

}

/*==================================================
  VIDEO GRID
==================================================*/

.video-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(330px,1fr));

    gap:2rem;

}

.video-thumbnail{

    aspect-ratio:16/9;

    overflow:hidden;

    background:#000;

}

.video-thumbnail img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .45s ease;

}

.card:hover .video-thumbnail img{

    transform:scale(1.05);

}

.video-meta{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:1rem;

    color:var(--text-muted);

    font-size:.9rem;

}

/*==================================================
  FEATURED VIDEO
==================================================*/

.featured-video{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:3rem;

    align-items:center;

}

.featured-video iframe{

    width:100%;

    aspect-ratio:16/9;

    border:none;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.featured-content h2{

    margin-bottom:1rem;

}

.featured-content p{

    margin-bottom:2rem;

}

/*==================================================
  STREAM STATUS CARD
==================================================*/

.stream-card{

    background:linear-gradient(
        135deg,
        #171717,
        #101010
    );

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:2rem;

    text-align:center;

}

.stream-status{

    display:inline-flex;

    align-items:center;

    gap:.6rem;

    margin-bottom:1rem;

    font-weight:600;

}

.stream-status::before{

    content:"";

    width:12px;

    height:12px;

    border-radius:50%;

    background:#44ff66;

    animation:pulse 2s infinite;

}

.stream-card.offline .stream-status::before{

    background:#888;

    animation:none;

}

.stream-game{

    color:var(--text-muted);

    margin-top:1rem;

}

/*=====================================
CURRENTLY PLAYING
=====================================*/

.games-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

    margin-top:50px;

}

.game-card{

    background:var(--surface);

    border:1px solid rgba(255,255,255,.08);

    border-radius:var(--radius);

    padding:35px;

    text-align:center;

    transition:.3s ease;

    display:block;

    text-decoration:none;
    color:inherit;

}

.game-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.game-card h3{

    margin-bottom:12px;

}

.game-card p{

    color:var(--text-muted);

}

/* Game cards with cover artwork (used on Home / Streams / Videos) */

.game-card.with-art{

    padding:0;
    overflow:hidden;
    text-align:left;

}

.game-card-image{

    aspect-ratio:3/4;
    overflow:hidden;
    background:#000;

}

.game-card-image.wide{

    aspect-ratio:16/9;

}

.game-card-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;

}

.game-card.with-art:hover .game-card-image img{

    transform:scale(1.06);

}

.game-card-body{

    padding:20px 24px 26px;
    text-align:center;

}

.game-card-body h3{

    margin-bottom:6px;
    font-size:1.05rem;

}

.game-card-body p{

    color:var(--text-muted);
    font-size:.88rem;

}

/*==================================================
  ABOUT GRID
==================================================*/

.about-grid{

    display:grid;

    grid-template-columns:350px 1fr;

    gap:4rem;

    align-items:center;

}

.about-content-solo{

    max-width:800px;

    margin:0 auto;

}

.about-image img{

    border-radius:var(--radius);

    border:1px solid var(--border);

}

.about-content h2{

    margin-bottom:1rem;

}

.about-content p{

    margin-bottom:1.5rem;

}

.about-content ul{

    margin:0 0 1.5rem;

}

.about-content ul li{

    position:relative;
    padding-left:1.4rem;
    margin-bottom:.6rem;
    color:var(--text-muted);

}

.about-content ul li::before{

    content:"▸";
    position:absolute;
    left:0;
    color:var(--primary);

}

.about-content h3{

    margin-bottom:1rem;

}

/*==================================================
  STATS
==================================================*/

.stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:2rem;

    margin-top:4rem;

}

.stat{

    text-align:center;

    padding:2rem;

    background:var(--surface);

    border-radius:var(--radius);

    border:1px solid var(--border);

}

.stat h3{

    font-size:2.5rem;

    color:var(--primary);

    margin-bottom:.5rem;

}

.stat p{

    color:var(--text-muted);

}

/*==================================================
  PULSE ANIMATION
==================================================*/

@keyframes pulse{

    0%{

        transform:scale(1);

        opacity:1;

    }

    70%{

        transform:scale(1.8);

        opacity:0;

    }

    100%{

        transform:scale(1);

        opacity:0;

    }

}

/*==================================================
  RESPONSIVE CONTENT
==================================================*/

@media(max-width:992px){

.featured-video{

    grid-template-columns:1fr;

}

.about-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.about-image{

    max-width:350px;

    margin:auto;

}

}

/*==================================================
  CONTACT
==================================================*/

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:3rem;

    align-items:start;

}

.contact-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:2rem;

}

.contact-card h3{

    margin-bottom:1rem;

}

.contact-card p{

    margin-bottom:1rem;

}

/*==================================================
  FORMS
==================================================*/

.form-group{

    margin-bottom:1.5rem;

}

.form-group label{

    display:block;

    margin-bottom:.5rem;

    font-weight:600;

    color:var(--text);

}

.form-control{

    width:100%;

    padding:15px 18px;

    background:#0f0f0f;

    border:1px solid var(--border);

    border-radius:12px;

    color:var(--text);

    transition:all .3s ease;

}

.form-control:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(212,32,39,.15);

}

textarea.form-control{

    resize:vertical;

    min-height:180px;

}

/*==================================================
  FOOTER
==================================================*/

.footer{

    background:#050505;

    border-top:1px solid var(--border);

    margin-top:120px;

    padding:70px 0 40px;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:40px;

}

.footer-brand{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-logo{

    width:180px;

    height:auto;

}

.footer-copy{

    color:var(--text-muted);

    font-size:.95rem;

    line-height:1.6;

}

.footer-links{

    display:flex;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

}

.footer-links a{

    color:var(--text);

    text-decoration:none;

    font-weight:500;

    transition:all .3s ease;

    position:relative;

}

.footer-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:width .3s ease;

}

.footer-links a:hover{

    color:var(--primary);

}

.footer-links a:hover::after{

    width:100%;

}

.footer-social{

    display:flex;

    gap:16px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid var(--border);

    color:var(--text);

    transition:all .3s ease;

}

.footer-social a:hover{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(214,68,48,.35);

}

/*==================================================
  MOBILE FOOTER
==================================================*/

@media (max-width:768px){

    .footer{

        text-align:center;

    }

    .footer-content{

        flex-direction:column;

    }

    .footer-brand{

        align-items:center;

    }

    .footer-links{

        justify-content:center;

        gap:20px;

    }

    .footer-social{

        justify-content:center;

    }

}

.footer-social a:hover{

    background:var(--primary);

    border-color:var(--primary);

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:40px;

    text-align:center;

    color:#777;

    font-size:.9rem;

}

/*==================================================
  SCROLL REVEAL
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
  LOGO SHINE
==================================================*/

.logo{

    position:relative;

    overflow:hidden;

}

.logo::after{

    content:"";

    position:absolute;

    top:0;

    left:-180%;

    width:60%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:skewX(-20deg);

    animation:logoShine 18s infinite;

}

@keyframes logoShine{

    0%{

        left:-180%;

    }

    8%{

        left:180%;

    }

    100%{

        left:180%;

    }

}

/*==================================================
  SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0a0a0a;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-hover);

}

/*==================================================
  TEXT SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*==================================================
  LARGE SCREENS
==================================================*/

@media(min-width:1600px){

.hero-content{

    max-width:1050px;

}

.section{

    padding:120px 0;

}

}

/*==================================================
  TABLETS
==================================================*/

@media(max-width:900px){

.contact-grid{

    grid-template-columns:1fr;

}

.footer-social{

    flex-wrap:wrap;

}

}

/*==================================================
  PHONES
==================================================*/

@media(max-width:600px){

.section{

    padding:70px 0;

}

.hero{

    padding-top:160px;

}

.hero-logo{

    width:260px;

}

.hero-icon{

    width:80px;
    height:80px;

}

.hero-icon svg{

    width:36px;
    height:36px;

}


.hero p{

    font-size:1rem;

}

.card-body{

    padding:1.25rem;

}

}

@media(max-width:400px){

.video-grid{

    grid-template-columns:1fr;

}

}

/*==================================================
  FINAL UTILITIES
==================================================*/

.spacer-1{margin-top:1rem;}
.spacer-2{margin-top:2rem;}
.spacer-3{margin-top:3rem;}
.spacer-4{margin-top:4rem;}

.w-100{width:100%;}
.text-left{text-align:left;}
.text-right{text-align:right;}

.rounded{
    border-radius:var(--radius);
}

.shadow{
    box-shadow:var(--shadow);
}

/*==================================================
  IMAGE EFFECTS
==================================================*/

img{
    transition:
        transform .35s ease,
        opacity .35s ease;
}

.card:hover img{
    transform:scale(1.04);
}

/*==================================================
  LINK EFFECTS
==================================================*/

a{
    transition:
        color .3s ease,
        opacity .3s ease;
}

a:hover{
    color:var(--primary);
}

/*==================================================
  BUTTON IMPROVEMENTS
==================================================*/

.btn{
    user-select:none;
}

.btn:active{
    transform:translateY(1px);
}

.btn:focus-visible{
    outline:2px solid var(--primary);
    outline-offset:4px;
}

/*==================================================
  FORM IMPROVEMENTS
==================================================*/

input,
textarea,
button,
select{

    font-family:inherit;

}

::placeholder{

    color:#777;

}

/*==================================================
  ACCESSIBILITY
==================================================*/

a:focus-visible{

    outline:2px solid var(--primary);

    outline-offset:4px;

    border-radius:6px;

}

.nav-toggle:focus-visible{

    outline:2px solid var(--primary);

    outline-offset:4px;

}

/*==================================================
  SMOOTH HOVER EFFECTS
==================================================*/

.card,
.btn,
.nav-menu a,
.footer-social a,
.logo img{

    will-change:transform;

}

/*==================================================
  LOADING ANIMATION
==================================================*/

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

body{

    animation:fadeIn .5s ease;

}

/*==================================================
  PRINT
==================================================*/

@media print{

    .navbar,
    footer,
    .btn,
    .nav-toggle{

        display:none !important;

    }

    body{

        background:#fff;

        color:#000;

    }

}

/*==================================================
  OTHER
==================================================*/

.badge{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:6px 14px;

    border-radius:999px;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:1rem;

    text-transform:uppercase;

}

.badge-outline{

    background:transparent;

    border:1px solid var(--primary);

    color:var(--primary);

    margin-left:.6rem;

}

.badge-outline a{

    color:inherit;

}

.featured-player{

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

}

/*==================================================
  LATEST VIDEO SECTION
==================================================*/

.video-card{

    overflow:hidden;

}

.video-card .card-title{

    font-size:1.35rem;

    margin-bottom:1rem;

}

.video-card .card-text{

    min-height:70px;

}

.video-card:hover{

    transform:translateY(-8px);

}

.video-thumbnail{

    position:relative;

    overflow:hidden;

}

.video-thumbnail::after{

    content:"▶";

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:70px;

    height:70px;

    border-radius:50%;

    background:rgba(0,0,0,.65);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    opacity:0;

    transition:.3s;

}

.video-card:hover .video-thumbnail::after{

    opacity:1;

}

.video-card:hover img{

    transform:scale(1.08);

}

/*==================================================
  TWITCH SECTION
==================================================*/

.stream-card{

    max-width:750px;

    margin:auto;

    text-align:center;

}

.stream-status{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:.5rem;

    padding:8px 18px;

    border-radius:999px;

    font-weight:700;

    letter-spacing:1px;

    background:#2a2a2a;

    color:#fff;

    margin-bottom:20px;

}

.stream-status.live{

    background:#7f39fb;

    color:#fff;

}

.stream-status.offline{

    background:#444;

    color:#ddd;

}

#stream-title{

    margin-bottom:15px;

}

#stream-game{

    max-width:600px;

    margin:auto;

}

/*=====================================
 MOBILE NAVIGATION
=====================================*/

@media (max-width:900px){

    .nav-toggle{

        display:block;

    }

    .nav-menu{

        position:absolute;

        top:85px;

        left:0;

        width:100%;

        background:#111;

        flex-direction:column;

        padding:30px;

        gap:25px;

        display:none;

    }

    .nav-menu.active{

        display:flex;

    }

    .nav-menu li{

        width:100%;

    }

    .nav-menu a{

        display:block;

        width:100%;

        padding:14px;

        text-align:center;

    }

}

/*=====================================
 SCROLL ANIMATION
=====================================*/

.section,
.card,
.hero-content{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.visible{

    opacity:1;

    transform:translateY(0);

}