/* ==================================================
   SHADOW WOLVES MULTIGAMING
   STYLE.CSS
================================================== */


/* ==================================================
   ROOT
================================================== */

:root{

    --primary:#00AEEF;
    --primary-dark:#0084C7;

    --background:#050A12;
    --background-light:#0B1320;

    --surface:#121C2C;

    --white:#FFFFFF;

    --text:#E8EEF8;

    --text-light:#AAB7CC;

    --border:rgba(255,255,255,.08);

    --radius:20px;

    --shadow:
        0 20px 60px rgba(0,0,0,.35);

    --transition:.35s ease;

    --max-width:1400px;

}


/* ==================================================
   RESET
================================================== */

*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:var(--background);

    color:var(--text);

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}


/* ==================================================
   TYPOGRAPHY
================================================== */

h1,
h2,
h3,
h4{

    font-family:"Orbitron",sans-serif;

    color:var(--white);

    font-weight:700;

}

p{

    color:var(--text-light);

    line-height:1.8;

}


/* ==================================================
   CONTAINER
================================================== */

.container{

    width:min(92%,var(--max-width));

    margin:auto;

}


/* ==================================================
   BACKGROUND
================================================== */

.background-grid{

    position:fixed;

    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),

        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size:42px 42px;

    z-index:-3;

}

.background-glow{

    position:fixed;

    width:900px;

    height:900px;

    top:-350px;

    right:-250px;

    border-radius:50%;

    background:

        radial-gradient(circle,

        rgba(0,174,239,.20),

        transparent 70%);

    filter:blur(70px);

    z-index:-2;

}


/* ==================================================
   BUTTONS
================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:.8rem;

    padding:16px 34px;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

    cursor:pointer;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

}

.btn-secondary:hover{

    border-color:var(--primary);

}


/* ==================================================
   HEADER
================================================== */

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:22px 0;

    z-index:1000;

    transition:.35s;

}

#header.scrolled{

    background:rgba(5,10,18,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid var(--border);

}

.header-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:1rem;

}

.logo img{

    width:100px;

}

.logo-title{

    display:block;

    font-size:1.15rem;

    font-family:"Orbitron",sans-serif;

}

.logo-subtitle{

    display:block;

    letter-spacing:3px;

    color:var(--primary);

    font-size:.8rem;

}

#navigation{

    display:flex;

    gap:2rem;

}

#navigation a{

    transition:.3s;

}

#navigation a:hover{

    color:var(--primary);

}


/* ==================================================
   HERO
================================================== */

#hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-background{

    position:absolute;

    inset:0;

    background:url("../images/hero-bg.png") center center / cover no-repeat;

    z-index:1;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        90deg,

        rgba(5,10,18,.90) 0%,

        rgba(5,10,18,.72) 30%,

        rgba(5,10,18,.38) 60%,

        rgba(5,10,18,.08) 100%

    );

    z-index:2;

}

#hero .container{

    position:relative;

    z-index:5;

}

.hero-content{

    max-width:760px;

    padding-top:0;

}

.hero-badge{

    display:inline-flex;

    padding:10px 20px;

    margin-bottom:2rem;

    border-radius:50px;

    background:rgba(0,174,239,.10);

    border:1px solid rgba(0,174,239,.30);

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.8rem;

}

.hero-content h1{

    font-size:clamp(4rem,7vw,7rem);

    line-height:.9;

    margin-bottom:2rem;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content h2{

    font-size:1.6rem;

    margin-bottom:2.2rem;

}

.hero-content p{

    max-width:620px;

    margin-bottom:2.5rem;

    font-size:1.1rem;

}

.hero-buttons{

    display:flex;

    gap:1rem;

    flex-wrap:wrap;

    margin-top:1rem;
	
    margin-bottom:3rem;

}

.hero-platforms{

    display:flex;

    gap:1rem;

    flex-wrap:wrap;

}

.platform{

    display:flex;

    align-items:center;

    gap:.7rem;

    padding:14px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

}

.platform i{

    color:var(--primary);

}
/* ==================================================
   GENERAL SECTIONS
================================================== */

section{

    position:relative;

    padding:120px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title.left{

    text-align:left;

}

.section-title small{

    display:inline-block;

    margin-bottom:15px;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.85rem;

    font-weight:700;

}

.section-title h2{

    font-size:clamp(2.3rem,4vw,3.8rem);

    margin-bottom:20px;

}

.section-title p{

    max-width:760px;

    margin:auto;

}


/* ==================================================
   GLASS DESIGN
================================================== */

.why-card,
.library-category,
.news-card,
.featured-game,
.discord-wrapper{

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    border-radius:var(--radius);

    backdrop-filter:blur(16px);

    transition:var(--transition);

}

.why-card:hover,
.library-category:hover,
.news-card:hover,
.featured-game:hover{

    transform:translateY(-8px);

    border-color:rgba(0,174,239,.35);

    box-shadow:var(--shadow);

}


/* ==================================================
   WHY SHADOW WOLVES
================================================== */

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    padding:40px 30px;

    text-align:center;

}

.why-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,174,239,.10);

    border:1px solid rgba(0,174,239,.30);

}

.why-icon i{

    font-size:2rem;

    color:var(--primary);

}

.why-card h3{

    margin-bottom:15px;

    font-size:1.4rem;

}

.why-card p{

    font-size:1rem;

}


/* ==================================================
   ABOUT
================================================== */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-content p{

    margin-bottom:25px;

}

.about-image{

    position:relative;

    overflow:hidden;

    border-radius:var(--radius);

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.about-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.about-image:hover img{

    transform:scale(1.05);

}


/* ==================================================
   FEATURED GAMES
================================================== */

.featured-games-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.featured-game{

    position:relative;

    min-height:380px;

    overflow:hidden;

}

.featured-game img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.featured-game:hover img{

    transform:scale(1.08);

}

.featured-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;

    background:

    linear-gradient(

        180deg,

        rgba(5,10,18,.05) 0%,

        rgba(5,10,18,.45) 40%,

        rgba(5,10,18,.94) 100%

    );

}

.game-type{

    align-self:flex-start;

    margin-bottom:18px;

    padding:8px 18px;

    border-radius:30px;

    background:rgba(0,174,239,.12);

    border:1px solid rgba(0,174,239,.35);

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.75rem;

    font-weight:700;

}

.featured-overlay h3{

    font-size:2rem;

    margin-bottom:15px;

}

.featured-overlay p{

    color:#E8EEF8;

}
/* ==================================================
   GAME LIBRARY
================================================== */

.library-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.library-category{

    padding:35px;

}

.library-category h3{

    margin-bottom:20px;

    font-size:1.4rem;

}

.library-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.library-tags span{

    padding:10px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:var(--text);

    font-size:.95rem;

    transition:var(--transition);

}

.library-tags span:hover{

    background:rgba(0,174,239,.15);

    border-color:rgba(0,174,239,.35);

    color:var(--primary);

}


/* ==================================================
   NEWS
================================================== */

.news-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.news-card{

    overflow:hidden;

}

.news-image{

    overflow:hidden;

}

.news-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.6s;

}

.news-card:hover .news-image img{

    transform:scale(1.08);

}

.news-content{

    padding:30px;

}

.news-date{

    display:inline-block;

    margin-bottom:15px;

    color:var(--primary);

    font-size:.8rem;

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;

}

.news-content h3{

    margin-bottom:18px;

    font-size:1.45rem;

}

.news-content p{

    margin-bottom:25px;

}


/* ==================================================
   DISCORD
================================================== */

.discord-wrapper{

    padding:90px 70px;

    text-align:center;

    background:

    linear-gradient(

        135deg,

        rgba(0,174,239,.12),

        rgba(18,28,44,.95)

    );

    border:1px solid rgba(0,174,239,.25);

    box-shadow:var(--shadow);

}

.discord-icon{

    font-size:5rem;

    color:var(--primary);

    margin-bottom:25px;

}

.discord-wrapper small{

    display:block;

    margin-bottom:18px;

    color:var(--primary);

    letter-spacing:3px;

    font-weight:700;

    text-transform:uppercase;

}

.discord-wrapper h2{

    font-size:clamp(2.4rem,4vw,3.8rem);

    margin-bottom:20px;

}

.discord-wrapper p{

    max-width:760px;

    margin:0 auto 40px;

}


/* ==================================================
   FOOTER
================================================== */

#footer{

    background:#04080F;

    border-top:1px solid var(--border);

    padding:90px 0 35px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:60px;

}

.footer-brand img{
	
    width:150px;
    height:auto;

    filter:
        drop-shadow(0 0 12px rgba(0,174,239,.18));
    
}

.footer-brand h3{

    margin-bottom:20px;

}

.footer-brand p{

    max-width:420px;

}

.footer-links h4{

    margin-bottom:20px;

}

.footer-links a{

    display:block;

    margin-bottom:14px;

    color:var(--text-light);

    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--primary);

    padding-left:6px;

}

.footer-network{

    display:flex;

    justify-content:center;

    align-items:flex-start;

}

.footer-network img{

    width:350px;

    transition:var(--transition);

}

.footer-network img:hover{

    transform:scale(1.05);

}

.copyright{

    text-align:center;

    padding-top:35px;

    border-top:1px solid var(--border);

    color:var(--text-light);

    font-size:.95rem;

}
/* ==================================================
   COOKIE BANNER
================================================== */

.cookie-banner{

    position:fixed;

    left:50%;

    bottom:30px;

    transform:translateX(-50%) translateY(150%);

    width:min(92%,850px);

    padding:22px 30px;

    border-radius:18px;

    background:rgba(11,19,32,.96);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    z-index:2000;

    transition:.45s ease;

}

.cookie-banner.active{

    transform:translateX(-50%) translateY(0);

}

.cookie-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

}

.cookie-content p{

    margin:0;

    flex:1;

}


/* ==================================================
   SCROLL TO TOP
================================================== */

#topButton{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1.1rem;

    opacity:0;

    visibility:hidden;

    transform:translateY(25px);

    transition:var(--transition);

    z-index:1000;

}

#topButton.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

#topButton:hover{

    background:var(--primary-dark);

}


/* ==================================================
   MOBILE MENU
================================================== */

.menu-toggle{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

}

.menu-toggle span{

    width:28px;

    height:3px;

    background:var(--white);

    border-radius:5px;

    transition:var(--transition);

}

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg) translateY(12px);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg) translateY(-12px);

}


/* ==================================================
   ANIMATION HELPERS
================================================== */

.fade{

    opacity:1;

    transform:translateY(0);

}

.hidden{

    display:none;

}

.text-center{

    text-align:center;

}

.mb-1{

    margin-bottom:1rem;

}

.mb-2{

    margin-bottom:2rem;

}

.mb-3{

    margin-bottom:3rem;

}

.mb-4{

    margin-bottom:4rem;

}


/* ==================================================
   IMAGE HELPERS
================================================== */

img{

    user-select:none;

    -webkit-user-drag:none;

}


/* ==================================================
   SELECTION
================================================== */

::selection{

    background:var(--primary);

    color:#fff;

}


/* ==================================================
   SCROLLBAR
================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08111D;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}


/* ==================================================
   END OF FILE
================================================== */