/* ------------------------------
   TEMEL AYARLAR
------------------------------ */

:root {
    --red: #e50914;
    --dark-red: #9f0710;
    --light-red: #ff3440;
    --white: #ffffff;
    --light-gray: #b8b8b8;
    --gray: #777777;
    --dark-gray: #171717;
    --card: #111111;
    --black: #050505;
    --border: rgba(255, 255, 255, 0.09);
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.section-heading h2,
.about-content h2,
.contact-content h2 {
    margin-bottom: 15px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
}

.section-heading p,
.about-content p,
.contact-content p {
    max-width: 650px;
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.8;
}

/* ------------------------------
   BUTONLAR
------------------------------ */

.primary-button,
.secondary-button,
.youtube-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.primary-button,
.youtube-button {
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 35px rgba(229, 9, 20, 0.25);
}

.primary-button:hover,
.youtube-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(229, 9, 20, 0.4);
}

.secondary-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.secondary-button:hover {
    transform: translateY(-3px);
    border-color: var(--red);
    background: rgba(229, 9, 20, 0.1);
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: none;
    background: transparent;
    color: var(--white);
    font-weight: 800;
    white-space: nowrap;
}

.text-button span {
    color: var(--red);
    font-size: 22px;
    transition: transform 0.25s ease;
}

.text-button:hover span {
    transform: translateX(5px);
}

/* ------------------------------
   ÜST MENÜ
------------------------------ */

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.88);
    border-color: var(--border);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1;
}

.brand-text span {
    color: var(--white);
    font-weight: 400;
    letter-spacing: 4px;
}

.brand-text strong {
    margin-top: 5px;
    color: var(--red);
    font-size: 15px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    position: relative;
    color: #d0d0d0;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.youtube-button {
    min-height: 44px;
    padding-inline: 20px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 10px;
    background: var(--white);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------
   ANA KARŞILAMA
------------------------------ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 1) 0%,
            rgba(5, 5, 5, 0.97) 42%,
            rgba(5, 5, 5, 0.8) 100%
        ),
        radial-gradient(
            circle at 75% 50%,
            rgba(229, 9, 20, 0.14),
            transparent 38%
        );
}

.hero-background::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 75%,
            transparent
        );
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-one {
    top: 8%;
    right: -10%;
    width: 460px;
    height: 460px;
    background: rgba(229, 9, 20, 0.17);
}

.hero-glow-two {
    bottom: -25%;
    left: 20%;
    width: 390px;
    height: 390px;
    background: rgba(229, 9, 20, 0.08);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    animation: heroContent 0.8s ease both;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 9px 14px;
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 100px;
    background: rgba(229, 9, 20, 0.08);
    color: #ededed;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(229, 9, 20, 0.12);
    animation: pulse 1.6s infinite;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 26px;
    font-size: clamp(48px, 6.3vw, 85px);
    line-height: 0.98;
    letter-spacing: -4px;
}

.hero h1 span {
    display: block;
    color: var(--red);
}

.hero-content > p {
    max-width: 620px;
    color: var(--light-gray);
    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.hero-statistics {
    display: flex;
    gap: 42px;
    margin-top: 48px;
}

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

.statistic strong {
    font-size: 19px;
}

.statistic span {
    color: var(--gray);
    font-size: 13px;
}

.hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroVisual 0.9s 0.15s ease both;
}

.logo-circle {
    position: relative;
    width: min(510px, 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(229, 9, 20, 0.1),
            rgba(255, 255, 255, 0.02) 48%,
            transparent 68%
        );
}

.logo-circle::before,
.logo-circle::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(229, 9, 20, 0.15);
}

.logo-circle::before {
    inset: 35px;
}

.logo-circle::after {
    inset: 80px;
}

.logo-light {
    position: absolute;
    inset: 23%;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.25);
    filter: blur(75px);
}

.hero-logo {
    position: relative;
    z-index: 3;
    width: 76%;
    height: 76%;
    object-fit: contain;
    filter:
        drop-shadow(0 25px 20px rgba(0, 0, 0, 0.65))
        drop-shadow(0 0 35px rgba(229, 9, 20, 0.22));
    animation: floatLogo 4s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 215px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(17, 17, 17, 0.82);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(15px);
}

.floating-card-top {
    top: 16%;
    right: -3%;
}

.floating-card-bottom {
    bottom: 15%;
    left: -7%;
}

.floating-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(229, 9, 20, 0.13);
    color: var(--red);
}

.floating-card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-card strong {
    font-size: 14px;
}

.floating-card small {
    color: var(--gray);
    font-size: 11px;
}

.scroll-indicator {
    position: absolute;
    z-index: 4;
    bottom: 28px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: var(--gray);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 36px;
    background:
        linear-gradient(
            to bottom,
            var(--red),
            transparent
        );
}

/* ------------------------------
   VİDEOLAR
------------------------------ */

.videos-section {
    position: relative;
    background: #090909;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--card);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.placeholder-thumbnail {
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at center,
            rgba(229, 9, 20, 0.2),
            transparent 40%
        ),
        linear-gradient(145deg, #1b1b1b, #080808);
}

.placeholder-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            transparent 55%
        );
}

.thumbnail-logo {
    width: 43%;
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.25));
}

.play-button {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    padding-left: 4px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.42);
    transform: translate(-50%, -50%);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.video-card:hover .play-button {
    background: var(--light-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    padding: 5px 8px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.85);
    font-size: 11px;
    font-weight: 800;
}

.video-information {
    padding: 22px;
}

.video-category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.video-information h3 {
    margin-bottom: 11px;
    font-size: 18px;
    line-height: 1.4;
}

.video-information p {
    color: var(--gray);
    font-size: 13px;
}

/* ------------------------------
   MAĞAZA
------------------------------ */

.store-section {
    background:
        radial-gradient(
            circle at 15% 45%,
            rgba(229, 9, 20, 0.07),
            transparent 30%
        ),
        var(--black);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--card);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 9, 20, 0.42);
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 5;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            transparent 55%
        );
}

.product-image-one {
    background:
        radial-gradient(circle, #4e1115, transparent 60%),
        linear-gradient(145deg, #1c0507, #080808);
}

.product-image-two {
    background:
        radial-gradient(circle, #341b12, transparent 60%),
        linear-gradient(145deg, #1b0e08, #080808);
}

.product-image-three {
    background:
        radial-gradient(circle, #142848, transparent 60%),
        linear-gradient(145deg, #07101f, #080808);
}

.product-image-four {
    background:
        radial-gradient(circle, #263314, transparent 60%),
        linear-gradient(145deg, #101807, #080808);
}

.game-symbol {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 1000;
    letter-spacing: -5px;
    text-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.discount-badge {
    position: absolute;
    z-index: 4;
    top: 13px;
    left: 13px;
    padding: 7px 10px;
    border-radius: 6px;
    background: var(--red);
    font-size: 10px;
    font-weight: 900;
}

.steam-label {
    position: absolute;
    z-index: 4;
    right: 13px;
    bottom: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.product-information {
    padding: 19px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #7fe38c;
    font-size: 11px;
    font-weight: 800;
}

.stock-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4bd45f;
    box-shadow: 0 0 8px rgba(75, 212, 95, 0.7);
}

.product-information h3 {
    min-height: 44px;
    margin-bottom: 19px;
    font-size: 16px;
    line-height: 1.4;
}

.price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price-line > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-line del {
    color: var(--gray);
    font-size: 11px;
}

.price-line strong {
    font-size: 18px;
}

.cart-button {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    border: 1px solid rgba(229, 9, 20, 0.35);
    border-radius: 9px;
    background: rgba(229, 9, 20, 0.12);
    color: var(--red);
    font-size: 25px;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.cart-button:hover {
    background: var(--red);
    color: var(--white);
    transform: scale(1.05);
}

.store-warning {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 17px 20px;
    border: 1px solid rgba(229, 9, 20, 0.18);
    border-radius: 10px;
    background: rgba(229, 9, 20, 0.06);
    color: var(--light-gray);
    font-size: 13px;
    line-height: 1.6;
}

.store-warning > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-weight: 900;
}

/* ------------------------------
   HAKKIMDA
------------------------------ */

.about-section {
    background: #090909;
}

.about-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-logo-box {
    position: relative;
    width: min(450px, 100%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 25px;
    background:
        radial-gradient(
            circle,
            rgba(229, 9, 20, 0.14),
            transparent 48%
        ),
        #0e0e0e;
}

.about-logo-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.18);
    filter: blur(70px);
}

.about-logo-box img {
    position: relative;
    z-index: 2;
    width: 78%;
    height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.65));
}

.about-content h2 span {
    color: var(--red);
}

.about-content p {
    margin-bottom: 17px;
}

.about-content .primary-button {
    margin-top: 15px;
}

/* ------------------------------
   İLETİŞİM
------------------------------ */

.contact-section {
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(229, 9, 20, 0.09),
            transparent 33%
        ),
        var(--black);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 80px;
}

.contact-content {
    position: sticky;
    top: 130px;
}

.contact-form {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 19px;
}

.form-group label {
    color: #dddddd;
    font-size: 13px;
    font-weight: 800;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 9px;
    outline: none;
    background: #0c0c0c;
    color: var(--white);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group input {
    min-height: 52px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 145px;
    padding: 15px 16px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555555;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.08);
}

.form-button {
    border: none;
}

.form-message {
    min-height: 20px;
    margin-top: 16px;
    color: #7fe38c;
    font-size: 13px;
    font-weight: 700;
}

/* ------------------------------
   ALT KISIM
------------------------------ */

.footer {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    background: #070707;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-container p {
    color: var(--gray);
    font-size: 12px;
    text-align: center;
}

.footer-youtube {
    color: var(--light-gray);
    font-size: 13px;
    font-weight: 800;
    transition: color 0.25s ease;
}

.footer-youtube:hover {
    color: var(--red);
}

/* ------------------------------
   BİLDİRİM
------------------------------ */

.notification {
    position: fixed;
    z-index: 2000;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(100% - 50px);
    padding: 16px 20px;
    border: 1px solid rgba(75, 212, 95, 0.25);
    border-radius: 11px;
    background: rgba(15, 20, 16, 0.96);
    color: var(--white);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(25px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #42b854;
    font-weight: 900;
}

.notification p {
    font-size: 13px;
    font-weight: 700;
}

/* ------------------------------
   ANİMASYONLAR
------------------------------ */

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(229, 9, 20, 0.13);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(229, 9, 20, 0);
    }
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }
}

@keyframes heroContent {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroVisual {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ------------------------------
   TABLET
------------------------------ */

@media (max-width: 1050px) {
    .nav-menu {
        gap: 20px;
    }

    .desktop-youtube {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr 0.85fr;
        gap: 35px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .floating-card-top {
        right: 0;
    }

    .floating-card-bottom {
        left: 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ------------------------------
   MOBİL MENÜ VE TELEFON
------------------------------ */

@media (max-width: 800px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 80px 0;
    }

    .menu-button {
        display: block;
    }

    .nav-menu {
        position: fixed;
        z-index: 999;
        top: 86px;
        right: -100%;
        width: min(330px, 88%);
        height: calc(100vh - 86px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 30px;
        border-left: 1px solid var(--border);
        background: rgba(5, 5, 5, 0.98);
        transition: right 0.3s ease;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
        font-size: 16px;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 135px 0 85px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        letter-spacing: -2.5px;
    }

    .hero-content > p {
        margin-inline: auto;
        font-size: 16px;
    }

    .hero-buttons,
    .hero-statistics {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
    }

    .logo-circle {
        max-width: 430px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-visual {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .contact-content {
        position: static;
    }
}

/* ------------------------------
   KÜÇÜK TELEFON
------------------------------ */

@media (max-width: 560px) {
    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-text {
        font-size: 14px;
    }

    .brand-text strong {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-statistics {
        gap: 20px;
        justify-content: space-between;
    }

    .statistic strong {
        font-size: 15px;
    }

    .statistic span {
        font-size: 10px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .floating-card {
        min-width: auto;
        padding: 12px;
    }

    .floating-card-top {
        top: 7%;
    }

    .floating-card-bottom {
        bottom: 6%;
    }

    .floating-card small {
        display: none;
    }

    .video-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 22px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-brand {
        justify-content: center;
    }
}
/* ------------------------------
   GERÇEK YOUTUBE VİDEOLARI
------------------------------ */

.video-link {
    display: block;
}

.video-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.video-card:hover .video-thumbnail-image {
    transform: scale(1.055);
    filter: brightness(0.72);
}

.real-video-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7),
            transparent 60%
        );
    pointer-events: none;
}

.video-date {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.5;
}

.video-channel {
    margin-top: 7px;
    color: #a5a5a5;
    font-size: 12px;
    font-weight: 700;
}

.video-information h3 a {
    transition: color 0.25s ease;
}

.video-information h3 a:hover {
    color: var(--red);
}

/* Video yüklenirken görünen alan */

.video-loading,
.video-error,
.video-empty {
    grid-column: 1 / -1;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--card);
    color: var(--light-gray);
    text-align: center;
}

.loading-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid rgba(255, 255, 255, 0.09);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: loadingRotation 0.8s linear infinite;
}

.video-error strong,
.video-empty strong {
    color: var(--white);
    font-size: 18px;
}

.video-error p,
.video-empty p {
    max-width: 570px;
    color: var(--light-gray);
    font-size: 13px;
    line-height: 1.7;
}

.retry-button {
    min-height: 43px;
    padding: 0 20px;
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 8px;
    background: rgba(229, 9, 20, 0.1);
    color: var(--white);
    font-weight: 800;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.retry-button:hover {
    background: var(--red);
    transform: translateY(-2px);
}

@keyframes loadingRotation {
    to {
        transform: rotate(360deg);
    }
}
/* ------------------------------
   BÜTÜN VİDEOLAR SAYFASI
------------------------------ */

.videos-page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 1),
            rgba(5, 5, 5, 0.91)
        ),
        radial-gradient(
            circle at 75% 50%,
            rgba(229, 9, 20, 0.25),
            transparent 38%
        );
}

.videos-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
}

.videos-page-glow {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.13);
    filter: blur(110px);
}

.videos-page-hero-container {
    position: relative;
    z-index: 2;
}

.videos-page-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(55px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: -5px;
}

.videos-page-hero h1 span {
    color: var(--red);
}

.videos-page-hero-container > p {
    max-width: 650px;
    color: var(--light-gray);
    font-size: 17px;
    line-height: 1.8;
}

.video-page-information {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 42px;
}

.video-page-information > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.video-page-information strong {
    color: var(--white);
    font-size: 20px;
}

.video-page-information span {
    color: var(--gray);
    font-size: 12px;
}

.all-videos-section {
    background:
        radial-gradient(
            circle at 10% 25%,
            rgba(229, 9, 20, 0.06),
            transparent 28%
        ),
        #090909;
}

.videos-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.videos-page-heading h2 {
    font-size: clamp(34px, 5vw, 54px);
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.load-more-button {
    border: none;
}

.load-more-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.all-videos-message {
    min-height: 24px;
    margin-top: 25px;
    color: var(--gray);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 800px) {
    .videos-page-hero {
        min-height: 460px;
        padding-top: 135px;
    }

    .videos-page-hero h1 {
        letter-spacing: -3px;
    }

    .video-page-information {
        gap: 25px;
        justify-content: space-between;
    }

    .videos-page-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .videos-page-hero h1 {
        font-size: 55px;
        letter-spacing: -2px;
    }

    .video-page-information {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ------------------------------
   STEAM VE PUBG MAĞAZASI
------------------------------ */

.catalog-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(229, 9, 20, 0.2),
            transparent 35%
        ),
        #050505;
}

.catalog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
}

.catalog-hero-glow {
    position: absolute;
    top: 10%;
    right: 6%;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.15);
    filter: blur(115px);
}

.catalog-hero-content {
    position: relative;
    z-index: 2;
}

.catalog-hero h1 {
    max-width: 850px;
    margin-bottom: 25px;
    font-size: clamp(55px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: -5px;
}

.catalog-hero h1 span {
    display: block;
    color: var(--red);
}

.catalog-hero-content > p {
    max-width: 660px;
    color: var(--light-gray);
    font-size: 17px;
    line-height: 1.8;
}

.catalog-hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 42px;
}

.catalog-hero-info > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.catalog-hero-info strong {
    font-size: 20px;
}

.catalog-hero-info span {
    color: var(--gray);
    font-size: 12px;
}

.catalog-section {
    background:
        radial-gradient(
            circle at 10% 25%,
            rgba(229, 9, 20, 0.06),
            transparent 28%
        ),
        #090909;
}

.catalog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 35px;
}

.catalog-heading h2 {
    margin-bottom: 15px;
    font-size: clamp(35px, 5vw, 55px);
}

.catalog-heading p {
    max-width: 650px;
    color: var(--light-gray);
    line-height: 1.7;
}

.catalog-search-box input {
    width: 270px;
    min-height: 50px;
    padding: 0 17px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    background: #111111;
    color: var(--white);
}

.catalog-search-box input:focus {
    border-color: var(--red);
    box-shadow:
        0 0 0 4px rgba(229, 9, 20, 0.08);
}

.catalog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 40px;
}

.catalog-category {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #111111;
    color: var(--light-gray);
    font-size: 13px;
    font-weight: 800;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.catalog-category:hover,
.catalog-category.active {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
}

.catalog-product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #111111;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.catalog-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 9, 20, 0.35);
    box-shadow:
        0 24px 45px rgba(0, 0, 0, 0.35);
}

.catalog-product-cover {
    position: relative;
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.catalog-product-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78),
            transparent 60%
        );
}

.catalog-cover-steam {
    background:
        radial-gradient(
            circle,
            #244d7c,
            transparent 65%
        ),
        linear-gradient(
            145deg,
            #0d2138,
            #05090d
        );
}

.catalog-cover-pubg {
    background:
        radial-gradient(
            circle,
            #876018,
            transparent 65%
        ),
        linear-gradient(
            145deg,
            #302006,
            #080603
        );
}

.catalog-product-badge {
    position: absolute;
    z-index: 3;
    top: 13px;
    left: 13px;
    padding: 7px 10px;
    border-radius: 6px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
}

.catalog-product-symbol {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(42px, 5vw, 67px);
    font-weight: 1000;
    letter-spacing: -4px;
    text-shadow:
        0 15px 25px rgba(0, 0, 0, 0.5);
}

.catalog-product-category {
    position: absolute;
    z-index: 3;
    right: 13px;
    bottom: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.catalog-product-content {
    padding: 20px;
}

.catalog-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 900;
}

.catalog-stock > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.catalog-stock.unavailable {
    color: #ff7777;
}

.catalog-stock.unavailable > span {
    background: var(--red);
    box-shadow:
        0 0 8px rgba(229, 9, 20, 0.7);
}

.catalog-product-content h3 {
    min-height: 48px;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.4;
}

.catalog-product-content > p {
    min-height: 22px;
    color: var(--gray);
    font-size: 12px;
}

.catalog-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.catalog-product-bottom > strong {
    font-size: 20px;
}

.catalog-disabled-button {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #181818;
    color: #666666;
    font-size: 11px;
    font-weight: 900;
    cursor: not-allowed;
}

.catalog-information {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 38px;
    padding: 20px;
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 12px;
    background: rgba(229, 9, 20, 0.06);
}

.catalog-information > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-weight: 900;
}

.catalog-information div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.catalog-information strong {
    font-size: 14px;
}

.catalog-information p {
    color: var(--light-gray);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1050px) {
    .catalog-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .catalog-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-search-box,
    .catalog-search-box input {
        width: 100%;
    }

    .catalog-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-hero h1 {
        letter-spacing: -3px;
    }
}

@media (max-width: 560px) {
    .catalog-hero h1 {
        font-size: 53px;
        letter-spacing: -2px;
    }

    .catalog-products-grid {
        grid-template-columns: 1fr;
    }

    .catalog-hero-info {
        gap: 25px;
    }

    .catalog-category {
        flex: 1;
    }
}
/* ------------------------------
   MAĞAZA SEPETİ VE SİPARİŞ FORMU
------------------------------ */

.store-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-cart-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid rgba(229, 9, 20, 0.35);
    border-radius: 9px;
    background: rgba(229, 9, 20, 0.1);
    color: var(--white);
    font-weight: 800;
}

.store-cart-button span {
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    font-size: 11px;
}

.catalog-cart-button {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--red);
    border-radius: 8px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.cart-overlay {
    position: fixed;
    z-index: 1490;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(5px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    z-index: 1500;
    top: 0;
    right: -100%;
    width: min(490px, 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
    background: #090909;
    box-shadow:
        -20px 0 60px rgba(0, 0, 0, 0.55);
    transition: right 0.35s ease;
}

.cart-panel.open {
    right: 0;
}

.cart-panel-header {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.cart-panel-header h2 {
    font-size: 29px;
}

.cart-close-button {
    width: 43px;
    height: 43px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 27px;
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 22px;
}

.cart-items {
    margin-bottom: 25px;
}

.empty-cart {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border: 1px dashed var(--border);
    border-radius: 12px;
    color: var(--gray);
    text-align: center;
}

.empty-cart strong {
    color: var(--white);
    font-size: 19px;
}

.empty-cart p {
    max-width: 280px;
    font-size: 12px;
    line-height: 1.6;
}

.cart-item {
    display: grid;
    grid-template-columns: 68px 1fr 30px;
    align-items: center;
    gap: 14px;
    margin-bottom: 13px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #111111;
}

.cart-item-symbol {
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--white);
    font-size: 18px;
    font-weight: 1000;
}

.cart-item-information {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cart-item-information > strong {
    font-size: 13px;
    line-height: 1.4;
}

.cart-item-information > span {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 9px;
}

.cart-quantity button {
    width: 27px;
    height: 27px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #090909;
    color: var(--white);
}

.cart-quantity span {
    min-width: 15px;
    font-size: 12px;
    text-align: center;
}

.cart-remove-button {
    border: none;
    background: transparent;
    color: var(--gray);
    font-size: 23px;
}

.cart-remove-button:hover {
    color: var(--red);
}

.order-form {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.order-form h3 {
    margin-bottom: 20px;
    font-size: 21px;
}

.order-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.order-form-group label {
    color: #dddddd;
    font-size: 12px;
    font-weight: 800;
}

.order-form-group input,
.order-form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    background: #0d0d0d;
    color: var(--white);
}

.order-form-group input {
    min-height: 48px;
    padding: 0 14px;
}

.order-form-group textarea {
    padding: 13px 14px;
    resize: vertical;
}

.order-form-group input:focus,
.order-form-group textarea:focus {
    border-color: var(--red);
    box-shadow:
        0 0 0 4px rgba(229, 9, 20, 0.08);
}

.cart-total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 22px 0 17px;
}

.cart-total-line span {
    color: var(--light-gray);
}

.cart-total-line strong {
    font-size: 22px;
}

.order-submit-button {
    width: 100%;
    border: none;
}

.order-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.order-form-message {
    min-height: 20px;
    margin-top: 13px;
    color: var(--gray);
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.pubg-order-fields[hidden] {
    display: none;
}

@media (max-width: 1050px) {
    .store-header-actions .desktop-youtube {
        display: none;
    }
}

@media (max-width: 600px) {
    .store-header-actions {
        margin-left: auto;
    }

    .store-cart-button {
        padding-inline: 12px;
    }
}
/* ------------------------------
   ÇEKİLİŞ SAYFASI
------------------------------ */

.giveaway-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(229, 9, 20, 0.22),
            transparent 35%
        ),
        #050505;
}

.giveaway-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
}

.giveaway-glow {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.16);
    filter: blur(120px);
}

.giveaway-hero-content {
    position: relative;
    z-index: 2;
}

.giveaway-hero h1 {
    margin-bottom: 25px;
    font-size: clamp(58px, 8vw, 105px);
    line-height: 0.94;
    letter-spacing: -5px;
}

.giveaway-hero h1 span {
    display: block;
    color: var(--red);
}

.giveaway-hero-content > p {
    max-width: 680px;
    color: var(--light-gray);
    font-size: 17px;
    line-height: 1.8;
}

.giveaway-hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 42px;
}

.giveaway-hero-info > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.giveaway-hero-info strong {
    font-size: 20px;
}

.giveaway-hero-info span {
    color: var(--gray);
    font-size: 12px;
}

.giveaway-section {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(229, 9, 20, 0.07),
            transparent 28%
        ),
        #090909;
}

.giveaway-section-heading {
    margin-bottom: 40px;
}

.giveaway-section-heading h2 {
    margin-bottom: 13px;
    font-size: clamp(36px, 5vw, 56px);
}

.giveaway-section-heading p {
    color: var(--light-gray);
}

.giveaway-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 25px;
}

.giveaway-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #111111;
}

.giveaway-card-top {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(
            90deg,
            rgba(229, 9, 20, 0.11),
            transparent
        );
}

.giveaway-status {
    padding: 7px 11px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 900;
}

.giveaway-status-active {
    background: rgba(75, 212, 95, 0.13);
    color: #7fe38c;
}

.giveaway-status-upcoming {
    background: rgba(255, 185, 50, 0.13);
    color: #ffc767;
}

.giveaway-status-completed {
    background: rgba(255, 255, 255, 0.08);
    color: var(--light-gray);
}

.giveaway-count {
    color: var(--gray);
    font-size: 11px;
    font-weight: 800;
}

.giveaway-card-content {
    padding: 28px;
}

.giveaway-prize-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.giveaway-card-content h2 {
    margin-bottom: 13px;
    font-size: 28px;
    line-height: 1.2;
}

.giveaway-prize {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 21px;
    font-weight: 900;
}

.giveaway-card-content > p {
    color: var(--light-gray);
    font-size: 13px;
    line-height: 1.8;
}

.giveaway-dates {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin-top: 23px;
}

.giveaway-dates > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #0b0b0b;
}

.giveaway-dates span {
    color: var(--gray);
    font-size: 10px;
    font-weight: 800;
}

.giveaway-dates strong {
    font-size: 12px;
    line-height: 1.5;
}

.giveaway-entry-form {
    margin-top: 25px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.giveaway-entry-form h3 {
    margin-bottom: 18px;
    font-size: 20px;
}

.giveaway-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.giveaway-form-group label {
    font-size: 12px;
    font-weight: 800;
}

.giveaway-form-group input {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    background: #090909;
    color: var(--white);
}

.giveaway-form-group input:focus {
    border-color: var(--red);
    box-shadow:
        0 0 0 4px rgba(229, 9, 20, 0.08);
}

.giveaway-rules-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 17px 0;
    color: var(--light-gray);
    font-size: 11px;
    line-height: 1.6;
}

.giveaway-rules-check input {
    margin-top: 3px;
    accent-color: var(--red);
}

.giveaway-submit-button {
    width: 100%;
    border: none;
}

.giveaway-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.giveaway-form-message {
    min-height: 19px;
    margin-top: 13px;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.giveaway-form-message.success {
    color: #7fe38c;
}

.giveaway-form-message.error {
    color: #ff7777;
}

.giveaway-closed,
.giveaway-winner {
    margin-top: 24px;
    padding: 20px;
    border-radius: 11px;
    text-align: center;
}

.giveaway-closed {
    border: 1px solid var(--border);
    background: #0b0b0b;
}

.giveaway-closed strong {
    display: block;
    margin-bottom: 8px;
}

.giveaway-closed p {
    color: var(--gray);
    font-size: 12px;
}

.giveaway-winner {
    border: 1px solid rgba(255, 190, 45, 0.3);
    background: rgba(255, 190, 45, 0.08);
}

.giveaway-winner > span {
    display: block;
    margin-bottom: 9px;
    color: #ffc767;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.giveaway-winner strong {
    display: block;
    margin-bottom: 5px;
    font-size: 21px;
}

.giveaway-winner p {
    color: var(--light-gray);
    font-size: 12px;
}

.giveaway-legal-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
    padding: 19px;
    border: 1px solid rgba(229, 9, 20, 0.18);
    border-radius: 11px;
    background: rgba(229, 9, 20, 0.05);
}

.giveaway-legal-note > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--red);
}

.giveaway-legal-note p {
    color: var(--light-gray);
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 850px) {
    .giveaway-grid {
        grid-template-columns: 1fr;
    }

    .giveaway-hero h1 {
        letter-spacing: -3px;
    }
}

@media (max-width: 560px) {
    .giveaway-hero h1 {
        font-size: 55px;
        letter-spacing: -2px;
    }

    .giveaway-dates {
        grid-template-columns: 1fr;
    }

    .giveaway-card-content {
        padding: 21px;
    }
}
/* ------------------------------
   404 HATA SAYFASI
------------------------------ */

.error-page-body {
    min-height: 100vh;
    overflow-x: hidden;
    background: #050505;
}

.error-page {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 35px 20px;
    background:
        radial-gradient(
            circle at center,
            rgba(229, 9, 20, 0.13),
            transparent 45%
        ),
        #050505;
}

.error-page::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
}

.error-page-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.15);
    filter: blur(130px);
}

.error-page-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: center;
}

.error-page-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.error-page-content h1 {
    margin: 10px 0;
    font-size: clamp(110px, 20vw, 220px);
    line-height: 0.85;
    letter-spacing: -15px;
}

.error-page-content h1 span {
    color: var(--red);
}

.error-page-content h2 {
    margin-bottom: 15px;
    font-size: clamp(26px, 5vw, 45px);
}

.error-page-content p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--light-gray);
    line-height: 1.7;
}

.error-page-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
    margin-top: 30px;
}

@media (max-width: 560px) {
    .error-page-content h1 {
        letter-spacing: -8px;
    }

    .error-page-buttons a {
        width: 100%;
    }
}
/* ------------------------------
   HAKKIMDA BÖLÜMÜ
------------------------------ */

.about-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(229, 9, 20, 0.09),
            transparent 30%
        ),
        #080808;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 70px;
}

.about-heading {
    position: sticky;
    top: 130px;
}

.about-heading h2 {
    margin-top: 8px;
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -4px;
}

.about-heading h2 span {
    display: block;
    color: var(--red);
}

.about-content > p {
    margin-bottom: 20px;
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.9;
}

.about-live-card {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-top: 35px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            rgba(229, 9, 20, 0.11),
            rgba(255, 255, 255, 0.02)
        ),
        #101010;
}

.about-live-card::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.13);
    filter: blur(65px);
}

.about-live-icon {
    position: relative;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.15);
    color: var(--red);
    font-size: 23px;
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(229, 9, 20, 0.35);
    }

    50% {
        box-shadow:
            0 0 0 11px rgba(229, 9, 20, 0);
    }
}

.about-live-information {
    position: relative;
    z-index: 2;
}

.about-live-information h3 {
    margin: 7px 0 12px;
    font-size: 27px;
}

.about-live-information > p {
    color: var(--light-gray);
    font-size: 13px;
    line-height: 1.8;
}

.about-live-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px 0;
}

.about-live-details > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.28);
}

.about-live-details span {
    color: var(--gray);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-live-details strong,
.about-live-details a {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.about-live-details a:hover {
    color: var(--red);
}

.about-live-note {
    padding-left: 13px;
    border-left: 3px solid var(--red);
}

.about-kick-button {
    margin-top: 22px;
}


/* ------------------------------
   EKİP BÖLÜMÜ
------------------------------ */

.team-section {
    position: relative;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(229, 9, 20, 0.08),
            transparent 28%
        ),
        #050505;
}

.team-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 42px;
}

.team-heading h2 {
    margin: 8px 0 14px;
    font-size: clamp(40px, 6vw, 65px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.team-heading h2 span {
    color: var(--red);
}

.team-heading p {
    max-width: 600px;
    color: var(--light-gray);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    position: relative;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            transparent
        ),
        #101010;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.team-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.08);
    filter: blur(50px);
}

.team-card:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.35);
}

.team-card-owner {
    border-color: rgba(229, 9, 20, 0.35);
    background:
        linear-gradient(
            145deg,
            rgba(229, 9, 20, 0.14),
            transparent
        ),
        #101010;
}

.team-avatar {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            var(--red),
            #750008
        );
    color: var(--white);
    font-size: 25px;
    font-weight: 1000;
    letter-spacing: -1px;
    box-shadow:
        0 15px 25px rgba(0, 0, 0, 0.3);
}

.team-information {
    position: relative;
    z-index: 2;
}

.team-owner-badge,
.team-member-badge {
    display: inline-block;
    margin-bottom: 9px;
    padding: 6px 9px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.team-owner-badge {
    background: var(--red);
    color: var(--white);
}

.team-member-badge {
    background: rgba(255, 255, 255, 0.07);
    color: var(--light-gray);
}

.team-information h3 {
    margin-bottom: 5px;
    font-size: 23px;
}

.team-information p {
    color: var(--gray);
    font-size: 12px;
}

@media (max-width: 950px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 35px;
        .about-live-details {
   grid-template-columns: repeat(2, 1fr);
}
    }

    .about-heading {
        position: static;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-heading h2 {
        letter-spacing: -2px;
    }

    .about-live-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .about-live-details {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        min-height: 220px;
    }
}
.about-live-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.about-live-buttons .about-kick-button {
    margin-top: 0;
}

.about-discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
}

@media (max-width: 560px) {
    .about-live-buttons {
        flex-direction: column;
    }

    .about-live-buttons a {
        width: 100%;
    }
}
/* Üyelik menü butonları */

.header-auth-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.header-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.header-login-button:hover {
    border-color: #e50914;
    color: #e50914;
}

.header-register-button {
    min-height: 44px;
    padding: 0 18px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .header-auth-actions {
        width: 100%;
        margin: 15px 0 0;
    }

    .header-auth-actions a {
        flex: 1;
    }
}
/* Giriş yapan kullanıcı başlık alanı */

.header-auth-guest,
.header-auth-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-auth-guest[hidden],
.header-auth-user[hidden] {
    display: none !important;
}

.header-user-name {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.header-user-name span {
    color: #999999;
    font-size: 12px;
    font-weight: 600;
}

.header-user-name strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.header-user-name:hover {
    border-color: #e50914;
}

.header-user-name:hover strong {
    color: #e50914;
}

.header-logout-button {
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid rgba(229, 9, 20, 0.45);
    border-radius: 8px;
    background: rgba(229, 9, 20, 0.1);
    color: #ff565e;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
}

.header-logout-button:hover {
    border-color: #e50914;
    background: #e50914;
    color: #ffffff;
}

.header-logout-button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .header-auth-guest,
    .header-auth-user {
        width: 100%;
    }

    .header-user-name,
    .header-logout-button {
        flex: 1;
    }
}
/* Mağaza üyelik bilgi kutusu */

.store-auth-notice {
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    font-size: 12px;
    line-height: 1.7;
}

.store-auth-notice.loading {
    background: rgba(255, 255, 255, 0.04);
    color: #aaaaaa;
}

.store-auth-notice.success {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.08);
    color: #7fe38c;
}

.store-auth-notice.warning {
    border-color: rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.08);
    color: #ffbd45;
}

.store-auth-notice a {
    color: #ffffff;
    font-weight: 900;
    text-decoration: underline;
}

.order-form input[readonly] {
    cursor: not-allowed;
    opacity: 0.75;
    background: #111111;
}
/* Footer bağlantıları */

.footer-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-admin-link {
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.footer-admin-link:hover {
    color: #ffffff;
}

@media (max-width: 700px) {
    .footer-actions {
        justify-content: center;
    }
}
/* ==================================================
   MAĞAZA ÜRÜN RESİMLERİ
================================================== */

.catalog-product-cover {
    position: relative;
    overflow: hidden;
}

.catalog-product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Resmin üzerinde yazıların görünmesini sağlar. */
.catalog-product-badge,
.catalog-product-category,
.catalog-product-symbol {
    position: relative;
    z-index: 2;
}

/* Resim üzerindeki yazıların daha rahat okunması için. */
.catalog-product-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.75)
        );
}
