/* ===========================
   THEME COLORS
=========================== */
:root {
    --theme-primary: #CC0000;
    --theme-secondary: #FFD43B;
	
	--font-light: #FFFFFF;
	--font-dark: #000000;

    --theme-bg-primary: #1A1A1A;
    --theme-bg-secondary: #3A3A3A;
    --theme-bg-tertiary: #262626;

    --font-primary: #FFFFFF;
    --font-primary-hover: #FFFD43B;
    --font-secondary: #CCCCCC;
    --font-secondary-hover: #FFFFFF;

    --btn-primary: #cc0000;
    --btn-primary-hover: #a80000;
    --btn-secondary: #262626;
    --btn-secondary-hover: #333;
}

/* ===========================
   GENERAL
=========================== */
html {
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    line-height: 1.6;
    box-sizing: border-box;
}

/* LINKS */
a {
    color: var(--font-light)fff;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover,
a:visited:hover,
a:active,
a:visited,
a:active {
    color: var(--font-light)fff;
    text-decoration: none;
}

/* DIVIDERS */
.divider-big {
    width: 80px;
    height: 5px;
    background-color: var(--theme-secondary);
    margin: 20px 0;
    border-radius: 3px;
}

.divider-small {
    width: 40px;
    height: 3px;
    background-color: var(--theme-secondary);
    margin: 10px 0;
    border-radius: 2px;
}

/* ===========================
   INTRO LOADING
=========================== */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #18191b;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#intro-overlay img {
    max-width: 100%;
    max-height: 100%;
    animation: pulse 0.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 50%, 100% { transform: scale(1); }
    25%, 75% { transform: scale(1.05); }
}

/* ===========================
   TOOLTIP
=========================== */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: var(--font-light);
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-bottom: 8px;
}

.tooltip::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tooltip:hover::after,
.tooltip:hover::before {
    opacity: 1;
}

/* ===========================
   NAVBAR
=========================== */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--theme-bg-primary);
    border-bottom: 1px solid var(--theme-secondary);
    z-index: 1000;
}

@media (max-width: 768px) {
    .navigation {
        height: 70px;
    }
}

/* Brand Logo */
.brand {
    position: absolute;
    float: left;
    line-height: 50px;
	border-radius: 50%;
    font-size: 1.4em;
}

.brand img {
	margin-top: 10px;
    max-height: 50px;
}

@media (max-width: 768px) {
    .brand img {
		margin-left: 7px;
    }
}

/* Nav Container */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Nav */
nav {
    float: right;
}

@media (max-width: 768px) {
    nav {
        width: 100%;
        padding: 70px 0 0;
    }
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
}

nav ul li {
    float: left;
    position: relative;
    text-align: left;
}

/* Mobile */
@media (max-width: 768px) {
    nav ul li {
        float: none;
        text-align: center;
    }
}

nav ul li a,
nav ul li a:visited {
    display: block;
    padding: 0 20px;
    line-height: 70px;
    background: var(--theme-bg-primary);
    color: var(--font-light);
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    nav ul li a {
        padding: 15px;
        line-height: 20px;
    }
}

nav ul li a:hover,
nav ul li a:visited:hover {
    background: var(--theme-secondary);
    color: var(--font-dark);
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: " ▾";
}

nav ul li.no-caret > a::after {
    content: none;
}

nav ul li ul li {
    min-width: 190px;
}

/* Mobile */
@media (max-width: 768px) {
    nav ul li ul li a {
        padding-left: 30px;
    }
}

nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
    background: var(--theme-bg-tertiary) !important;
    color: var(--font-light) !important;
}

nav ul li ul li a:hover {
    background: var(--theme-secondary) !important;
    color: var(--font-light) !important;
}

/* Mobile */
@media (max-width: 768px) {
    nav ul li ul li a:hover {
        background: var(--theme-bg-secondary) !important;
    }
}

.nav-dropdown {
	border-top: 1px solid var(--theme-secondary);
    position: absolute;
    display: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    z-index: 1100;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-dropdown {
        position: static;
        z-index: 1100;
    }
}

.nav-dropdown li a[target="_blank"]::after {
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    content: "\f35d";
    margin-left: 4px;
    font-size: 0.75rem;
    display: inline-block;
    vertical-align: middle;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme-bg-primary);
    height: 70px;
    width: 70px;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-mobile {
        display: block;
    }
}

#nav-toggle {
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: #ffffff;
    position: absolute;
    display: block;
    content: "";
    transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
    top: -10px;
}

#nav-toggle span:after {
    bottom: -10px;
}

#nav-toggle.active span {
    background-color: transparent;
}

#nav-toggle.active span:before {
    top: 0;
    transform: rotate(45deg);
}

#nav-toggle.active span:after {
    top: 0;
    transform: rotate(-45deg);
}

/* STREAM ONLINE/OFFLINE BUTTON */
#stream-online {
    margin-left: 50px;
    background-color: #00cc00 !important;
    color: var(--font-light) !important;
}

/* Mobile */
@media (max-width: 768px) {
    #stream-online {
        margin-left: 0 !important;
    }
}

#stream-online:hover {
    background-color: #009900 !important;
    color: var(--font-light) !important;
}

#stream-offline {
    margin-left: 50px;
    background-color: #cc0000 !important;
    color: var(--font-light) !important;
}

/* Mobile */
@media (max-width: 768px) {
    #stream-offline {
        margin-left: 0 !important;
    }
}

#stream-offline:hover {
    background-color: #990000 !important;
    color: var(--font-light) !important;
}

/* ===========================
   VIDEO SLIDER
=========================== */
.video-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .video-slider {
        margin-top: 0;
    }
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 10;
}

.video-content {
    position: relative;
    color: white;
    height: 100%;
    max-width: 1200px;
    width: 100%;
    padding: 80px 20px 80px 7px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
    z-index: 20;
}

/* Mobile */
@media (max-width: 768px) {
    .video-content {
        padding: 40px 40px;
        max-width: 100%;
    }
}

.small-title {
	color: var(--font-dark);
	background-color: var(--theme-secondary);
	padding: 3px;
    font-size: 1.2rem;
	border-radius: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.big-title {
    font-size: 3rem;
    margin: 5px 0;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .big-title {
        font-size: 2.2rem;
    }
}

.sub-title {
    font-family: "Open Sans", sans-serif;
    font-size: 1.3rem;
    margin: 15px 0 30px 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
    .sub-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

.video-slider-bounce-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 1000;
}

@keyframes bounce {
    0%,100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===========================
   ABOUT US
=========================== */
.about-us {
    background-color: #111;
    padding: 100px 20px;
    color: var(--font-light);
}

.about-us-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

/* Mobile */
@media (max-width: 768px) {
    .about-us-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

.about-us-counters {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.counter-box {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.counter-box i {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--theme-secondary);
}

.counter-box h2 {
    font-size: 3rem;
    margin: 5px 0;
    color: #fff;
}

.counter-box p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .about-us-counters {
        grid-template-columns: repeat(2,1fr);
    }
}

.about-us-content {
    flex: 1 1 400px;
}

/* Mobile */
@media (max-width: 768px) {
    .about-us-content {
        margin-top: 30px;
        text-align: center;
        flex: 1 1 100%;
    }
}

.about-us-title {
    font-size: 2.5rem;
    font-family: "Bebas Neue", sans-serif;
    margin-bottom: 10px;
    color: var(--font-light);
    position: relative;
}

.about-us-title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--theme-secondary);
}

.about-us-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    font-family: "Open Sans", sans-serif;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    border-top: 2px solid var(--theme-secondary);
	/* Arka plan resminin görünmesi için, 0.99 değerini 0.9 veya daha az olacak şekilde azalt.*/
    background-image: 
        linear-gradient(rgba(26, 26, 26, 0.99), rgba(26, 26, 26, 0.99)),
        url('https://i.pinimg.com/originals/fa/42/c1/fa42c17c9a02d6411baee1e9a94b18ea.png');
    background-size: cover;
    background-position: center;
    color: #ccc;
    padding: 60px 20px 30px;
    font-family: "Open Sans", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

.footer-column {
    flex: 1 1 220px;
}

.footer-logo {
    max-width: 120px;
    border-radius: 50%;
}

.footer-title-about,
.footer-title {
    font-size: 1.1rem;
    color: var(--font-light);
    font-family: "Bebas Neue", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    margin-top: 30px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--theme-secondary);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--theme-secondary);
    margin-left: 0.2rem;
}

.footer-links a i {
    transition: transform 0.3s, color 0.3s;
}

.footer-links a:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--theme-secondary);
}

.footer-news-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #aaa;
}

.footer-newsletter {
    display: flex;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-newsletter {
        flex-direction: row;
    }
}

.footer-newsletter input[type="email"] {
    flex: 1;
    padding: 12px;
    border: none;
    background-color: #333;
    color: var(--font-light);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-newsletter input[type="email"],
    .footer-newsletter button {
        width: auto;
    }
}

.footer-newsletter button {
    padding: 12px 16px;
    background-color: var(--theme-secondary);
    border: none;
    color: var(--font-light);
    cursor: pointer;
    transition: background 0.3s;
}

.footer-newsletter button:hover {
    background-color: #a80000;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
}

/* SOCIAL ICONS */
ul.social-icons {
    display: flex;
    column-gap: 0.625rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
}

/* Mobile */
@media (max-width: 768px) {
    ul.social-icons {
        justify-content: center;
    }
}

ul.social-icons li a {
    display: grid;
    place-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    border: 1.5px solid #fff;
}

/* Mobile */
@media (max-width: 768px) {
    ul.social-icons li a {
        width: 1.975rem;
        height: 1.975rem;
    }
}

ul.social-icons li:hover a {
    border-color: var(--theme-secondary);
    background-color: transparent;
    animation: shake 0.3s ease;
}

ul.social-icons li:hover i {
    color: var(--theme-secondary);
}

.social-icons i {
    color: var(--font-light)fff;
    font-size: 1rem;
}

@keyframes shake {
    0%,100% { transform: scale(1,1); }
    25% { transform: scale(0.9,1.1); }
    50% { transform: scale(1.1,0.9); }
    75% { transform: scale(0.95,1.05); }
}



/* ===========================
   BUTTONS
=========================== */
.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.button-group {
    display: flex;
    text-decoration: none;
    font-family: sans-serif;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.button-group:hover {
    transform: translateY(-2px);
}

.btn-icon, 
.btn-text {
    transition: background 0.3s, color 0.3s;
}

.btn-icon {
    width: 50px;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    font-size: 1.4rem;
    color: var(--font-light);
}

.btn-text {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--font-light);
    display: flex;
    align-items: center;
}

/* ===========================
   SOCIAL BUTTONS
=========================== */
.steam-icon, .steam2-icon { background: #2c3e50; }
.steam-btn, .steam2-btn { background: #34495e; }

.button-group:hover .steam-icon { background: #22303c; }
.button-group:hover .steam-btn { background: #2a3a4a; }
.button-group:hover .steam2-icon { background: #34495e; }
.button-group:hover .steam2-btn { background: #2c3e50; }

.youtube-icon, .youtube2-icon { background: #c0392b; }
.youtube-btn, .youtube2-btn { background: #e74c3c; }

.button-group:hover .youtube-icon { background: #a5281e; }
.button-group:hover .youtube-btn { background: #b73225; }
.button-group:hover .youtube2-icon { background: #e74c3c; }
.button-group:hover .youtube2-btn { background: #c0392b; }

.discord-icon { background: #5865F2; }
.discord-btn { background: #4752c4; }

.button-group:hover .discord-icon { background: #4752c4; }
.button-group:hover .discord-btn { background: #3c45a5; }

.twitch-icon { background: #9146FF; }
.twitch-btn { background: #772ce8; }

.button-group:hover .twitch-icon { background: #772ce8; }
.button-group:hover .twitch-btn { background: #5b1bb0; }

.facebook-icon { background: #3b5998; }
.facebook-btn { background: #4a69ad; }

.button-group:hover .facebook-icon { background: #4a69ad; }
.button-group:hover .facebook-btn { background: #2e4173; }

.x-icon { background: #000000; }
.x-btn { background: #1a1a1a; }

.button-group:hover .x-icon { background: #1a1a1a; }
.button-group:hover .x-btn { background: #000000; }

.kick-icon { background: #52ff00; }
.kick-btn { background: #42cc00; }

.button-group:hover .kick-icon { background: #42cc00; }
.button-group:hover .kick-btn { background: #38a800; }

.instagram-icon { background: #e1306c; }
.instagram-btn { background: #c1275b; }

.button-group:hover .instagram-icon { background: #c1275b; }
.button-group:hover .instagram-btn { background: #a51f4b; }

.telegram-icon { background: #0088cc; }
.telegram-btn { background: #007ab8; }

.button-group:hover .telegram-icon { background: #007ab8; }
.button-group:hover .telegram-btn { background: #006aa3; }

/* ===========================
   FIXED SOCIAL BUTTONS
=========================== */
#fixed-social {
    position: fixed;
    top: 200px;
    right: 0;
}

#fixed-social a {
    color: var(--font-light);
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 1px;
    position: relative;
    z-index: 2;
}

#fixed-social a span {
    right: 60px;
    position: absolute;
    text-align: center;
    width: 120px;
    visibility: hidden;
    opacity: 0;
    line-height: 40px;
    transition: 0.5s;
    z-index: 1;
}

#fixed-social a:hover > span {
    visibility: visible;
    right: 41px;
    opacity: 1;
}

/* Fixed button colors */
.fixed-facebook { background-color: #00AAE5; } 
.fixed-facebook span { background-color: #00AAE5; }

.fixed-twitter { background-color: #7D3895; } 
.fixed-twitter span { background-color: #7D3895; }

.fixed-instagrem { background-color: #ED2B29; } 
.fixed-instagrem span { background-color: #ED2B29; }

.fixed-steam { background-color: #171a21; } 
.fixed-steam span { background-color: #171a21; }

.fixed-discord { background-color: #5865F2; } 
.fixed-discord span { background-color: #5865F2; }

.fixed-youtube { background-color: #FF0000; } 
.fixed-youtube span { background-color: #FF0000; }

.fixed-x { background-color: #000000; } 
.fixed-x span { background-color: #000000; }

.fixed-kick { background-color: #52ff00; } 
.fixed-kick span { background-color: #52ff00; }

.fixed-twitch { background-color: #9146FF; } 
.fixed-twitch span { background-color: #9146FF; }

.fixed-telegram { background-color: #0088cc; } 
.fixed-telegram span { background-color: #0088cc; }

/* ===========================
   SCROLL TOP
=========================== */
.progress-wrap {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--font-light)fff;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.lightScrollIcon::after {
    color: #ecedf3 !important;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    content: '\f062';
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    opacity: 0;
    background-image: linear-gradient(298deg, var(--theme-secondary), var(--theme-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--theme-secondary);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}