@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.notification-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    padding: 16px 20px;
    min-width: 320px;
    max-width: 400px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-toast.hiding {
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.notification-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-title {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.notification-message {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.notification-toast.login {
    border-left: 3px solid #10b981;
}

.notification-toast.logout {
    border-left: 3px solid #ef4444;
}

.notification-toast.welcome_back {
    border-left: 3px solid #3b82f6;
}

/* ============================================ */
/* GLOBAL STYLES */
/* ============================================ */

html,
body.home-page {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

html:has(body.home-page) {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.home-page {
    font-family: 'PoppinsExtraLight', sans-serif;
    background: linear-gradient(
        135deg,
        rgba(18, 18, 20, 0.92) 0%,
        rgba(28, 28, 32, 0.94) 55%,
        rgba(0, 0, 0, 0.1) 100%
    );
    background-attachment: fixed;
}

/* ============================================ */
/* YENİ ETKİLEYİCİ HERO SECTION */
/* ============================================ */
.hero-section-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    /* Navbar yüksekliği kadar yukarı kaydır ve üstten telafi et */
    margin-top: -140px;
    padding-top: calc(2rem + 140px);
    background-image: url('/files/images/homeyellow-backgroundd.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
    z-index: 1;
}

/* Background Layers */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: transparent;
    animation: none;
}

.hero-bg-1 {
    background: transparent;
    animation: none;
}

.hero-bg-2 {
    background: transparent;
    animation: none;
}

.hero-bg-3 {
    background: transparent;
    animation: none;
}

@keyframes bgPulse1 {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes bgPulse2 {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2) rotate(5deg);
    }
}

@keyframes bgRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Particle Canvas */
.particle-canvas {
    /* Efektleri kapatmak için tamamen gizlendi */
    display: none;
}

/* Main Content */
.hero-content-new {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Badge */
.hero-badge-new {
    margin-bottom: 2rem;
    display: inline-block;
}

.badge-inner {
    position: relative;
    padding: 0.75rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #ffffff;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.badge-text-new {
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.badge-particles {
    /* Küçük hareketli noktaları kapat */
    display: none;
}

.badge-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffd700;
    animation: particleFloat 3s ease-in-out infinite;
}

.badge-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.badge-particles .particle:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.badge-particles .particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translate(20px, -20px) scale(1.5);
        opacity: 1;
    }
}

/* Title */
.hero-title-container {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-title-new {
    font-family: 'HiJack', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25em;
}

.title-word {
    display: inline-block;
    position: relative;
    color: #ffd700;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
    animation: titleWordAppear 1s ease-out forwards;
    opacity: 0;
    text-rendering: optimizeLegibility;
    position: relative;
    z-index: 2;
}

.title-word::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 170, 0, 0.1));
    border-radius: 4px;
    z-index: -1;
    filter: blur(6px);
    opacity: 0.5;
}

.title-word-1 {
    animation-delay: 0.1s;
}

.title-word-2 {
    margin: 0 0.3em;
    font-size: 0.65em;
    font-weight: 500;
    letter-spacing: 0.15em;
    animation-delay: 0.25s;
    opacity: 0.95;
}

.title-word-3 {
    animation-delay: 0.4s;
}

@keyframes titleWordAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.title-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    filter: blur(25px);
    z-index: 1;
    animation: titleGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes titleGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Subtitle */
.hero-subtitle-new {
    max-width: 1000px;
    margin: 0 auto 5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

.subtitle-line-1 {
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

.subtitle-line-2 {
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.highlight-word {
    color: #ffffff;
    font-weight: 700;
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.7),
        0 0 30px rgba(255, 255, 255, 0.4);
    position: relative;
    display: inline-block;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Stats — tipografi: rakamlar HiJack (hero başlık), metinler PoppinsExtraLight (gövde) */
.hero-stats-new {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1.35rem;
    margin-bottom: 4rem;
    padding: 0 0.75rem;
    box-sizing: border-box;
    font-family: 'PoppinsExtraLight', 'Segoe UI', system-ui, sans-serif;
}

.hero-stats-rail {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-evenly;
    width: 100%;
    max-width: 52rem;
    padding: 1.1rem 0.5rem;
    border-radius: 9999px;
    /* Koyu cam + belirgin siyah gölge katmanları */
    background: linear-gradient(
        165deg,
        rgba(18, 14, 10, 0.82) 0%,
        rgba(6, 5, 4, 0.88) 48%,
        rgba(0, 0, 0, 0.9) 100%
    );
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.65),
        0 4px 6px rgba(0, 0, 0, 0.55),
        0 12px 28px rgba(0, 0, 0, 0.6),
        0 24px 56px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -3px 14px rgba(0, 0, 0, 0.55);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    box-sizing: border-box;
}

.hero-stats-rail:hover {
    border-color: rgba(255, 215, 0, 0.32);
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.7),
        0 6px 10px rgba(0, 0, 0, 0.58),
        0 16px 36px rgba(0, 0, 0, 0.62),
        0 32px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -3px 16px rgba(0, 0, 0, 0.5);
}

.stat-item-new {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.35rem 0.6rem;
    gap: 0.25rem;
}

.stat-rail-divider {
    flex-shrink: 0;
    align-self: center;
    width: 1px;
    height: 2.75rem;
    border-radius: 1px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(140, 100, 50, 0.45) 22%,
        rgba(255, 210, 100, 0.55) 50%,
        rgba(140, 100, 50, 0.45) 78%,
        transparent 100%
    );
}

.stat-label-new {
    order: 2;
    font-size: 0.62rem;
    font-family: 'PoppinsExtraLight', 'Segoe UI', system-ui, sans-serif;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.75);
}

.stat-number-new {
    order: 1;
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 900;
    font-family: 'HiJack', sans-serif;
    line-height: 1.05;
    letter-spacing: 0.03em;
    color: #ffd700;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 3px 10px rgba(0, 0, 0, 0.85),
        0 0 14px rgba(255, 215, 0, 0.35),
        0 0 24px rgba(255, 215, 0, 0.15);
    margin: 0;
    font-variant-numeric: tabular-nums;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.stat-number-new.stat-text {
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    letter-spacing: 0.04em;
}

.stat-item-new--extra .stat-subtitle {
    order: 3;
    max-width: min(18rem, 100%);
}

.stat-subtitle {
    font-size: 0.68rem;
    font-family: 'PoppinsExtraLight', 'Segoe UI', system-ui, sans-serif;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.04em;
    font-weight: 400;
    margin: 0.15rem 0 0;
    line-height: 1.35;
    max-width: 12rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* Buttons */
.hero-actions-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.btn-new {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    min-width: 220px;
    width: 220px;
    height: 56px;
    perspective: 1000px;
}

.btn-bg {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.btn-text {
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-shine-new {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-new:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-new:hover .btn-shine-new {
    left: 100%;
}

.btn-new:hover .btn-icon {
    transform: rotate(15deg) scale(1.2);
}

.btn-new:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-discord .btn-bg {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    box-shadow:
        0 10px 40px rgba(88, 101, 242, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-discord {
    color: white;
    border-color: rgba(88, 101, 242, 0.5);
}

.btn-discord:hover .btn-bg {
    background: linear-gradient(135deg, #4752C4 0%, #5865F2 100%);
    box-shadow:
        0 15px 60px rgba(88, 101, 242, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-join .btn-bg {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    box-shadow:
        0 10px 40px rgba(255, 215, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-join {
    color: #000;
    border-color: rgba(255, 215, 0, 0.5);
}

.btn-join:hover .btn-bg {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    box-shadow:
        0 15px 60px rgba(255, 215, 0, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-contact .btn-bg {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.btn-contact {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-contact:hover .btn-bg {
    background: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 15px 60px rgba(255, 255, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.hero-scroll-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(15px);
    }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: linear-gradient(to bottom, #ffd700, transparent);
    border-radius: 2px;
    animation: mouseScroll 1.5s ease-in-out infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.scroll-text {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Animated Borders */
.hero-border-top,
.hero-border-bottom {
    display: none;
}

@keyframes borderFlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section-new {
        padding: 2rem 1rem;
    }

    .hero-stats-new {
        margin-top: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .hero-stats-rail {
        flex-direction: column;
        flex-wrap: nowrap;
        border-radius: 1.25rem;
        padding: 1rem 1.25rem;
        gap: 0;
    }

    .stat-rail-divider {
        width: min(12rem, 72%);
        height: 1px;
        margin: 0.35rem auto;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(140, 100, 50, 0.4) 20%,
            rgba(255, 205, 90, 0.5) 50%,
            rgba(140, 100, 50, 0.4) 80%,
            transparent 100%
        );
    }

    .stat-item-new {
        padding: 0.5rem 0.25rem;
    }

    .stat-number-new {
        font-size: 1.55rem;
    }

    .stat-number-new.stat-text {
        font-size: 1.2rem;
    }

    .stat-label-new {
        font-size: 0.58rem;
        letter-spacing: 0.16em;
    }

    .stat-subtitle {
        font-size: 0.62rem;
        margin-top: 0.1rem;
    }

    .floating-shape {
        opacity: 0.05;
    }

    .hero-title-new {
        gap: 0.15em;
        letter-spacing: 0.01em;
    }

    .title-word-2 {
        margin: 0 0.2em;
        font-size: 0.6em;
    }

    .title-word::before {
        inset: -1px;
        filter: blur(4px);
    }

    .title-glow {
        inset: -15px;
        filter: blur(20px);
    }
}

/* ============================================ */
/* CONTENT SECTIONS */
/* ============================================ */
.content-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.content-section.alt-bg {
    background: rgba(10, 10, 14, 0.5);
}

.section-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0e 0%, #1a1a24 50%, #2a2a34 100%);
    opacity: 0.95;
    z-index: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.content-section.alt-bg .section-background {
    background: linear-gradient(135deg, #1a1a24 0%, #0a0a0e 50%, #1a1a24 100%);
}

.container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd700;
}

.section-title {
    font-family: 'HiJack', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.title-accent {
    display: block;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    color: #ffffff;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================ */
/* CARDS GRID */
/* ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 10px;
}

.forum-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* ============================================ */
/* LOADING STATE */
/* ============================================ */
.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: rgba(255, 255, 255, 0.6);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, 0.2);
    border-top-color: #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================ */
/* NEWS CAROUSEL */
/* ============================================ */
.news-container {
    margin-top: 3rem;
    touch-action: none;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.news-carousel {
    position: relative;
    touch-action: none;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    touch-action: none;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: none;
}

/* Desktop'ta carousel wrapper - mobildeki gibi */
@media (min-width: 769px) {
    .carousel-wrapper {
        border-radius: 20px;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        display: block;
        aspect-ratio: 16 / 9;
        height: auto;
        max-height: 500px;
        touch-action: none;
        overscroll-behavior: none;
        -webkit-overflow-scrolling: none;
    }
    
    .carousel-container {
        width: 100%;
        display: flex;
        height: 100%;
        touch-action: none;
        overscroll-behavior: none;
        -webkit-overflow-scrolling: none;
        overflow: hidden;
    }
    
    .carousel-slide {
        flex-shrink: 0;
        flex-grow: 0;
        display: block !important;
        background: rgba(0, 0, 0, 0.3);
        overflow: hidden;
        position: relative;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 0;
        height: 100%;
        touch-action: none;
        overscroll-behavior: none;
        /* width ve min-width JavaScript tarafından dinamik olarak ayarlanacak */
    }
    
    .carousel-slide img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        cursor: pointer;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        vertical-align: top;
        border: none;
        outline: none;
        touch-action: none;
        user-select: none;
        -webkit-user-drag: none;
    }
}

.carousel-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: none;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
}

#haberlerCarousel .carousel-slide {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
}

#haberlerCarousel .carousel-slide > img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #ffd700;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    z-index: 10;
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    overflow: visible;
    min-height: 20px;
    line-height: 1;
}

.carousel-indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 9px;
    min-height: 9px;
    display: block;
    box-sizing: border-box;
    overflow: visible;
}

.carousel-indicator:hover {
    background: rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.carousel-indicator.active {
    background: #ffd700;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 7px rgba(255, 215, 0, 0.5);
    transform: scale(1.15);
}

/* Carousel mobil stilleri ana responsive bölümünde yapıldı */

.news-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200001;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

html.news-modal-open,
body.news-modal-open {
    overflow: hidden !important;
    height: 100% !important;
}

/* Haberler alanı üzerinde sayfa scroll'u serbest (wheel + touch drag) */
#haberlerCarousel,
#haberlerCarousel .carousel-wrapper,
#haberlerCarousel .carousel-container,
#haberlerCarousel .carousel-slide,
#haberlerCarousel .carousel-slide > img {
    touch-action: pan-y !important;
    overscroll-behavior: auto !important;
}

.news-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
}

.modal-content-wrapper {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    z-index: 1;
    overflow: hidden;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-wrapper.grabbing {
    cursor: grabbing;
}

.modal-image {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: 10px;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
    margin: 0 auto;
}

.modal-image.zoomed {
    cursor: grab;
}

.modal-image.zoomed:active {
    cursor: grabbing;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: rotate(90deg);
}

/* ============================================ */
/* FORMS CONTAINER - Modern Cards */
/* ============================================ */
.forms-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.form-card-modern {
    position: relative;
    background: rgba(30, 30, 35, 0.95);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.form-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.form-card-modern:hover .form-card-glow {
    opacity: 0;
}

.form-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.form-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.form-card-modern:hover .form-card-image img {
    transform: scale(1.1);
}

.form-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.form-card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.form-card-status.active {
    color: #79ff00;
    border: 1px solid rgba(121, 255, 0, 0.3);
}

.form-card-status.inactive {
    color: #ff6500;
    border: 1px solid rgba(255, 101, 0, 0.3);
}

.form-card-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.form-card-content {
    padding: 1.5rem;
}

.form-card-title {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.form-card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.form-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: none;
}

.form-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.form-card-date i,
.form-card-date iconify-icon {
    color: #ffd700;
}

.form-card-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #ffd700;
    transition: all 0.3s ease;
}

.form-card-arrow iconify-icon {
    font-size: 0.95rem;
    color: #ffd700;
}

.form-card-modern:hover .form-card-arrow {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateX(4px);
}

.form-card-glow {
    position: absolute;
    inset: 0;
    background: none;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    filter: none;
}

/* Forms mobil optimizasyonu ana responsive bölümünde yapıldı */

/* ============================================ */
/* LAST EVENT SECTION — formlar / lobiler ile benzer yoğunluk */
/* ============================================ */
.last-event-container {
    margin: 0 auto;
    padding: 1rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.last-event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-title-section {
    flex: 1;
    min-width: 0;
}

/* Form kartı .form-card-title ile aynı başlık tipografisi */
.event-name {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.45rem;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.event-score {
    text-align: center;
    margin-bottom: 0.65rem;
}

.event-score > span:not(.event-score-sep) {
    font-size: 1.05rem;
}

.event-score-sep {
    margin: 0 0.35rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.event-score-draw {
    margin-top: 0.25rem;
}

.event-score-draw span {
    color: #fb923c;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
}

.event-meta i,
.event-meta iconify-icon {
    color: #ffd700;
}

.event-meta iconify-icon {
    font-size: 1em;
    width: 1em;
    height: 1em;
}

.event-map-image {
    width: 140px;
    height: 84px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.28);
    flex-shrink: 0;
}

.event-map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-teams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.team-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-winners {
    border-color: rgba(121, 255, 0, 0.3);
}

.team-losers {
    border-color: rgba(255, 101, 0, 0.3);
}

.team-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
}

.team-winners .team-header i,
.team-winners .team-header iconify-icon {
    color: #79ff00;
}

.team-losers .team-header i,
.team-losers .team-header iconify-icon {
    color: #ff6500;
}

.team-header iconify-icon {
    font-size: 0.9rem;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.team-players {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.player-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.player-card.mvp {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
}

.player-avatar {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: visible;
    border: 1px solid rgba(255, 215, 0, 0.28);
    flex-shrink: 0;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mvp-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.6rem;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    border: 1px solid #0f0f13;
    z-index: 2;
}

.mvp-badge iconify-icon {
    width: 10px;
    height: 10px;
    color: #000;
}

.player-info {
    flex: 1;
    min-width: 0;
}

.player-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.1rem;
    font-size: 0.8rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-game-nick {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.player-rank {
    font-size: 0.65rem;
    color: #ffd700;
    line-height: 1.2;
}

.player-stats {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.stat-value {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffffff;
}

.stat-item.highlight .stat-value {
    color: #ffd700;
}

.event-spectators {
    margin-bottom: 0.65rem;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spectators-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

.spectators-header i,
.spectators-header iconify-icon {
    color: #ffd700;
}

.spectators-header iconify-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.spectators-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.spectator-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.55rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spectator-item img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.spectator-item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
}

.event-footer {
    text-align: center;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.event-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.event-view-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.event-view-btn iconify-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

/* ============================================ */
/* ACTIVE LOBBIES SECTION */
/* ============================================ */
.active-lobbies-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 1rem 0;
    min-height: 500px;
    align-items: stretch;
    justify-items: stretch;
}

/* Lobi varsa normal grid görünümü */
.active-lobbies-container:has(.active-lobby-card) {
    align-items: stretch;
}

/* Empty state - Lobi yokken gösterilecek */
.active-lobbies-empty {
    grid-column: 1 / -1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 500px;
    width: 100%;
}

.active-lobbies-empty-icon {
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.4);
    margin-bottom: 2rem;
}

.active-lobbies-empty-icon i,
.active-lobbies-empty-icon iconify-icon {
    display: block;
}

.active-lobbies-empty-icon iconify-icon {
    width: 1em;
    height: 1em;
}

.active-lobbies-empty-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.active-lobbies-empty-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    color: #ffd700 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.active-lobbies-empty-btn:hover {
    background: rgba(255, 215, 0, 0.25) !important;
    border-color: rgba(255, 215, 0, 0.6) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #ffd700 !important;
}

.active-lobbies-empty-btn i,
.active-lobbies-empty-btn iconify-icon {
    font-size: 1.25rem;
}

.active-lobbies-empty-btn iconify-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.active-lobbies-empty-btn span {
    color: #ffd700 !important;
}

/* Eski "no-active-lobbies" mesajını gizle */
.active-lobbies-container .no-active-lobbies {
    display: none !important;
}

.active-lobbies-container .loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.active-lobby-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.active-lobby-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
}

.lobby-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lobby-creator {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.lobby-creator img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.creator-info {
    flex: 1;
    min-width: 0;
}

.creator-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lobby-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.lobby-stats {
    display: flex;
    gap: 0.5rem;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-badge i,
.stat-badge iconify-icon {
    color: #ffd700;
}

.stat-badge iconify-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.lobby-type iconify-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.lobby-description {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.lobby-description i,
.lobby-description iconify-icon {
    color: #ffd700;
    margin-top: 0.2rem;
}

.lobby-description iconify-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.lobby-players {
    margin-bottom: 1.5rem;
}

.players-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.players-header i,
.players-header iconify-icon {
    color: #ffd700;
}

.players-header iconify-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.players-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.player-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.player-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-avatar-small.empty {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.3);
}

.player-avatar-small.empty iconify-icon {
    width: 1rem;
    height: 1rem;
}

.lobby-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.lobby-channel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.lobby-channel i,
.lobby-channel iconify-icon {
    color: #ffd700;
}

.lobby-channel iconify-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.lobby-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.lobby-join-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateX(4px);
}

.lobby-join-btn iconify-icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.no-active-lobbies {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Last event ve active lobbies mobil optimizasyonu ana responsive bölümünde yapıldı */

/* ============================================ */
/* ABOUT SECTION - Centered Vertically */
/* ============================================ */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.about-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-text {
    text-align: center;
    width: 100%;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-description p {
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    color: #ffffff;
}

.about-signature {
    margin: 3rem 0;
    text-align: center;
}

.signature-box {
    display: inline-block;
    padding: 2rem 3rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.signature-name {
    font-family: 'ShimesOnePersonal', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.signature-quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.about-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* ============================================ */
/* SCROLL INDICATOR NAV */
/* ============================================ */
.scroll-indicator-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Mobilde scroll indicator'ları gizle */
@media (max-width: 768px) {
    .scroll-indicator-nav {
        display: none !important;
    }
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.scroll-dot:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.scroll-dot.active {
    background: #ffd700;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.scroll-dot::after {
    content: attr(title);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: "PoppinsExtraLight", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.35;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.scroll-dot:hover::after {
    opacity: 1;
}

/* Masaüstü: isteğe bağlı tekerlek bölüm atlama — tek satır, sağ alt (mobilde gizli) */
.home-wheel-snap-toggle.home-wheel-snap-toggle--dock {
    position: fixed;
    right: max(0.65rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    z-index: 1180;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: auto;
    max-width: calc(100vw - 1.5rem);
    padding: 0.32rem 0.55rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 215, 0, 0.45);
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 250, 220, 0.96);
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.12s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .home-wheel-snap-toggle.home-wheel-snap-toggle--dock {
        display: none !important;
    }
}

.home-wheel-snap-toggle.home-wheel-snap-toggle--dock:hover {
    border-color: rgba(255, 215, 0, 0.65);
    background: rgba(22, 18, 10, 0.88);
}

.home-wheel-snap-toggle.home-wheel-snap-toggle--dock:active {
    transform: scale(0.98);
}

.home-wheel-snap-toggle.home-wheel-snap-toggle--dock[aria-pressed="true"] {
    border-color: rgba(255, 215, 0, 0.75);
    background: rgba(255, 215, 0, 0.1);
    color: #fff3b0;
}

.home-wheel-snap-toggle__icon {
    font-size: 0.85rem !important;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
    color: rgba(255, 215, 0, 0.95);
}

.home-wheel-snap-toggle__text {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: #ffe566;
}

/* Sponsor bölümü: sarı çerçeve + çok hafif parlama */
@keyframes scroll-dot-sponsor-soft-glow {
    0%,
    100% {
        box-shadow: 0 0 4px rgba(255, 215, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 7px rgba(255, 215, 0, 0.18);
    }
}

.scroll-dot.scroll-dot--sponsor {
    background: rgba(255, 255, 255, 0.28);
    border: 2px solid rgba(255, 215, 0, 0.82);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.12);
    animation: scroll-dot-sponsor-soft-glow 3.5s ease-in-out infinite;
}

.scroll-dot.scroll-dot--sponsor:hover {
    background: rgba(255, 215, 0, 0.35);
    transform: scale(1.15);
}

.scroll-dot.scroll-dot--sponsor.active {
    background: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.9);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.14);
    animation: scroll-dot-sponsor-soft-glow 3.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-dot.scroll-dot--sponsor,
    .scroll-dot.scroll-dot--sponsor.active {
        animation: none;
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.12);
    }
}

/* Mobil: önceki / sonraki bölüm FAB (masaüstünde gizli) */
.home-section-nav-fab {
    position: fixed;
    right: max(0.65rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    z-index: 1200;
    display: none;
    flex-direction: column;
    gap: 0.45rem;
    pointer-events: none;
}

@media (max-width: 768px) {
    .home-section-nav-fab {
        display: flex;
    }
}

.home-section-nav-fab__btn {
    pointer-events: auto;
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 250, 220, 0.98);
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.home-section-nav-fab__btn:hover {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(28, 24, 12, 0.88);
}

.home-section-nav-fab__btn:active {
    transform: scale(0.96);
}

.home-section-nav-fab__btn:focus-visible {
    outline: 2px solid rgba(255, 215, 0, 0.75);
    outline-offset: 2px;
}

.home-section-nav-fab__icon {
    font-size: 1.15rem !important;
    line-height: 1 !important;
    width: 1.15em;
    height: 1.15em;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
    vertical-align: middle;
}

/* ============================================ */
/* RESPONSIVE - MOBİL OPTİMİZASYONU */
/* ============================================ */
@media (max-width: 768px) {
    body.home-page {
        margin: 0;
        padding-top: 0 !important;
    }

    /* Hero Section */
    .hero-section-new {
        padding: 1rem;
        min-height: 100dvh;
        margin-top: 0;
        padding-top: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content-new {
        max-width: 100%;
        padding: 0;
    }

    /* Badge */
    .hero-badge-new {
        margin-bottom: 1rem;
    }

    .badge-inner {
        padding: 0.5rem 1rem;
    }

    .badge-text-new {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    /* Title */
    .hero-title-container {
        margin-bottom: 1rem;
    }

    .hero-title-new {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        gap: 0.15em;
    }

    .title-word-2 {
        margin: 0 0.15em;
        font-size: 0.6em;
    }

    /* Subtitle */
    .hero-subtitle-new {
        font-size: clamp(0.875rem, 2vw, 1rem);
        line-height: 1.6;
        margin: 0 auto 2rem;
        padding: 0 0.5rem;
    }

    .subtitle-line-1,
    .subtitle-line-2 {
        margin-bottom: 0.5rem;
    }

    /* Stats — cam şerit mobilde dikey */
    .hero-stats-new {
        margin: 1rem 0 2rem;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats-rail {
        padding: 0.9rem 1rem;
    }

    .stat-number-new {
        font-size: 1.45rem;
    }

    .stat-number-new.stat-text {
        font-size: 1.05rem;
    }

    .stat-label-new {
        font-size: 0.52rem;
        letter-spacing: 0.14em;
    }

    .stat-subtitle {
        font-size: 0.58rem;
    }

    /* Buttons */
    .hero-actions-new {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .btn-new {
        width: 100%;
        max-width: 240px;
        min-width: auto;
        height: 44px;
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }

    .btn-text {
        font-size: 0.65rem;
    }

    .btn-icon {
        font-size: 0.8rem;
    }

    /* Scroll Indicator */
    .hero-scroll-new {
        margin-top: 1rem;
    }

    .scroll-mouse {
        width: 24px;
        height: 36px;
    }

    .mouse-wheel {
        width: 3px;
        height: 6px;
    }

    .scroll-text {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

    /* Content Sections */
    .content-section {
        padding: 1.5rem 1rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .content-section .container {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        overflow-x: hidden;
        padding: 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-badge {
        padding: 0.375rem 1rem;
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 0.75rem;
    }

    .section-description {
        font-size: 0.875rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    /* Cards Grid */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: visible;
        padding-top: 10px;
    }
    
    /* Kraliyet ve Dominara fermanları container - Mobil için özel düzenleme */
    #announcementsPlace,
    #dominaraUpdatesPlace {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        overflow-x: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.875rem !important;
    }
    
    #announcementsPlace > *,
    #dominaraUpdatesPlace > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        overflow-x: hidden !important;
    }
    
    #announcementsPlace .edict-card,
    #dominaraUpdatesPlace .edict-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        overflow-x: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

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

    /* Cards */
    .edict-card,
    .forum-card {
        padding: 1rem;
        border-radius: 12px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Forum gönderileri başlığına göre içerik yazı boyutu - başlık: clamp(1.5rem, 5vw, 2.5rem) */
    .forum-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem;
    }

    .forum-card p {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
    }

    .forum-card .text-sm {
        font-size: 0.7rem !important;
    }

    .forum-card .font-semibold {
        font-size: 0.75rem !important;
    }

    .forum-card button {
        font-size: 0.7rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    .edict-card .edict-content {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Fermanlar başlığına göre içerik yazı boyutu - başlık: clamp(1.5rem, 5vw, 2.5rem) */
    .edict-card .edict-content p,
    .edict-card .edict-content div {
        font-size: 0.75rem !important;
    }

    .edict-card .font-bold {
        font-size: 0.8rem !important;
    }

    .edict-card .text-sm {
        font-size: 0.7rem !important;
    }

    /* News Carousel */
    .news-container {
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
        touch-action: none !important;
        overscroll-behavior: none !important;
        -webkit-overflow-scrolling: none !important;
        overflow: hidden !important;
    }
    
    .news-carousel {
        width: 100%;
        max-width: 100%;
        touch-action: none !important;
        overscroll-behavior: none !important;
        -webkit-overflow-scrolling: none !important;
        overflow: hidden !important;
    }

    .carousel-wrapper {
        border-radius: 12px;
        max-width: 100%;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        display: block;
        aspect-ratio: 16 / 9;
        height: auto;
        touch-action: none !important;
        overscroll-behavior: none !important;
        -webkit-overflow-scrolling: none !important;
    }

    .carousel-container {
        width: 100%;
        display: flex;
        height: 100%;
        touch-action: none !important;
        overscroll-behavior: none !important;
        -webkit-overflow-scrolling: none !important;
        overflow: hidden !important;
    }

    .carousel-slide {
        flex-shrink: 0;
        flex-grow: 0;
        display: block !important;
        background: rgba(0, 0, 0, 0.3);
        overflow: hidden;
        position: relative;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 0;
        height: 100%;
        touch-action: none !important;
        overscroll-behavior: none !important;
        /* width ve min-width JavaScript tarafından dinamik olarak ayarlanacak */
    }

    .carousel-slide img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        cursor: pointer;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        vertical-align: top;
        border: none;
        outline: none;
        touch-action: none !important;
        user-select: none !important;
        -webkit-user-drag: none !important;
        pointer-events: auto;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .carousel-btn-prev {
        left: 0.5rem;
    }

    .carousel-btn-next {
        right: 0.5rem;
    }

    .carousel-indicators {
        gap: 0.4rem;
        margin-top: 0.875rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem 0.5rem;
        max-width: 100%;
        flex-wrap: wrap;
        overflow: visible;
        min-height: 18px;
        line-height: 1;
    }

    .carousel-indicator {
        width: 7px;
        height: 7px;
        border-width: 1px;
        display: block;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .carousel-indicator:hover {
        transform: scale(1.1);
    }
    
    .carousel-indicator.active {
        transform: scale(1.15);
        box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
    }

    /* Loading State */
    .loading-state {
        padding: 2rem 1rem;
    }

    .spinner {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    /* Scroll Indicator Nav */
    .scroll-indicator-nav {
        right: 0.5rem;
    }

    .scroll-dot {
        width: 8px;
        height: 8px;
    }

    .scroll-dot::after {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        right: 12px;
    }

    /* Container */
    .container {
        padding: 0;
    }

    /* Forms Container */
    .forms-container {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        padding: 0.5rem 0;
        width: 100%;
        max-width: 100%;
    }

    .form-card-modern {
        border-radius: 12px;
    }

    .form-card-image {
        height: 150px;
    }

    .form-card-content {
        padding: 1rem;
    }

    .form-card-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .form-card-description {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .form-card-status {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
    }

    .form-card-footer {
        padding-top: 0.75rem;
    }

    .form-card-date {
        font-size: 0.8rem;
    }

    .form-card-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    /* Last event — mobil: tek sütun takım, kompakt ölçü */
    .last-event-card {
        padding: 0.75rem 0.65rem;
    }

    .event-header {
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-bottom: 0.65rem;
        padding-bottom: 0.65rem;
    }

    .event-name {
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
    }

    .event-meta span {
        font-size: 0.72rem;
    }

    .event-map-image {
        width: 112px;
        height: 68px;
    }

    .event-teams {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        margin-bottom: 0.65rem;
    }

    .team-section {
        padding: 0.55rem 0.6rem;
    }

    .team-header {
        margin-bottom: 0.4rem;
        font-size: 0.78rem;
    }

    .team-players {
        gap: 0.3rem;
    }

    .player-card {
        padding: 0.35rem 0.4rem;
        gap: 0.4rem;
    }

    .player-avatar {
        width: 32px;
        height: 32px;
    }

    .player-name {
        font-size: 0.75rem;
    }

    .player-game-nick {
        font-size: 0.65rem;
    }

    .player-stats {
        gap: 0.28rem;
    }

    .stat-value {
        font-size: 0.72rem;
    }

    .stat-label {
        font-size: 0.52rem;
    }

    .event-score > span:not(.event-score-sep) {
        font-size: 0.95rem;
    }

    .event-spectators {
        margin-bottom: 0.5rem;
        padding: 0.45rem 0.55rem;
    }

    .spectators-header {
        font-size: 0.72rem;
        margin-bottom: 0.35rem;
    }

    .spectator-item span {
        font-size: 0.68rem;
    }

    .event-view-btn {
        padding: 0.45rem 0.95rem;
        font-size: 0.75rem;
    }

    /* Active Lobbies */
    .active-lobbies-container {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        padding: 0.5rem 0;
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }

    .active-lobby-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .active-lobbies-empty {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .active-lobbies-empty-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .active-lobbies-empty-text {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .active-lobbies-empty-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .active-lobbies-empty-btn i,
    .active-lobbies-empty-btn iconify-icon {
        font-size: 1rem;
    }

    .active-lobbies-empty-btn iconify-icon {
        width: 1rem;
        height: 1rem;
    }

    /* About Section */
    .about-section {
        min-height: 100vh;
        padding: 1.5rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
        box-sizing: border-box !important;
    }

    .about-description {
        font-size: 0.875rem !important;
        line-height: 1.7 !important;
        padding: 0 0.5rem !important;
        box-sizing: border-box !important;
    }

    .about-description p {
        margin-bottom: 1rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .about-signature {
        margin-top: 2rem;
    }

    .signature-box {
        padding: 1rem;
    }

    .signature-name {
        font-size: 1.25rem;
    }

    .signature-quote {
        font-size: 0.875rem;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
    .hero-section-new {
        padding: 0.75rem;
        min-height: 100dvh;
        margin-top: 0;
        padding-top: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title-new {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }

    .hero-subtitle-new {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats-new {
        max-width: 100%;
        padding: 0 0.35rem;
    }

    .hero-stats-rail {
        padding: 0.75rem 0.65rem;
        border-radius: 1rem;
    }

    .stat-number-new {
        font-size: 1.3rem;
    }

    .stat-number-new.stat-text {
        font-size: 0.95rem;
    }

    .stat-label-new {
        font-size: 0.5rem;
        letter-spacing: 0.12em;
    }

    .stat-subtitle {
        font-size: 0.54rem;
    }

    .btn-new {
        padding: 0.45rem 0.875rem;
        font-size: 0.6rem;
        width: 100%;
        max-width: 220px;
        min-width: auto;
        height: 40px;
    }

    .btn-text {
        font-size: 0.6rem;
    }

    .btn-icon {
        font-size: 0.75rem;
    }

    .carousel-indicators {
        gap: 0.35rem;
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem 0.5rem;
        max-width: 100%;
        flex-wrap: wrap;
        overflow: visible;
        min-height: 16px;
        line-height: 1;
    }

    .carousel-indicator {
        width: 6px;
        height: 6px;
        border-width: 1px;
        display: block;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .carousel-indicator:hover {
        transform: scale(1.1);
    }
    
    .carousel-indicator.active {
        transform: scale(1.12);
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }

    .content-section {
        padding: 1.25rem 0.75rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .content-section .container {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        overflow-x: hidden;
        padding: 0;
    }

    .section-title {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    }

    .section-description {
        font-size: 0.8rem;
    }

    .cards-grid {
        gap: 0.75rem;
        overflow-x: hidden;
        overflow-y: visible;
        padding-top: 10px;
    }

    .edict-card,
    .forum-card {
        padding: 0.875rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Çok küçük ekranlarda fermanlar ve forum yazı boyutları */
    .edict-card .edict-content {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .edict-card .edict-content p,
    .edict-card .edict-content div {
        font-size: 0.7rem !important;
    }

    .edict-card .font-bold {
        font-size: 0.75rem !important;
    }

    .edict-card .text-sm {
        font-size: 0.65rem !important;
    }

    .forum-card h3 {
        font-size: 0.9rem !important;
    }

    .forum-card p {
        font-size: 0.7rem !important;
    }

    .forum-card .text-sm {
        font-size: 0.65rem !important;
    }

    .forum-card .font-semibold {
        font-size: 0.7rem !important;
    }

    .forum-card button {
        font-size: 0.65rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    /* Forms */
    .form-card-image {
        height: 120px;
    }

    .form-card-title {
        font-size: 1rem;
    }

    .form-card-description {
        font-size: 0.8rem;
    }

    /* Last event — çok dar ekran */
    .last-event-card {
        padding: 0.55rem 0.5rem;
        border-radius: 10px;
    }

    .event-name {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .event-map-image {
        width: 100px;
        height: 60px;
    }

    .team-section {
        padding: 0.45rem 0.5rem;
    }

    .player-card {
        padding: 0.3rem 0.35rem;
    }

    .player-avatar {
        width: 28px;
        height: 28px;
    }

    .player-name {
        font-size: 0.7rem;
    }

    .stat-value {
        font-size: 0.68rem;
    }

    /* Active Lobbies */
    .active-lobbies-empty-icon {
        font-size: 2.5rem;
    }

    .active-lobbies-empty-text {
        font-size: 1rem;
    }

    .active-lobbies-empty-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    /* About */
    .about-content {
        padding: 0 1.25rem !important;
    }

    .about-description {
        font-size: 0.8rem !important;
        padding: 0 0.5rem !important;
    }

    .lead-text {
        font-size: 0.95rem;
    }

    .signature-name {
        font-size: 1.125rem;
    }

    .signature-quote {
        font-size: 0.8rem;
    }
}

/* ============================================ */
/* EXISTING CARD STYLES (API Generated) */
/* ============================================ */
/* Kraliyet ve Dominara Fermanları - Desktop Grid Layout */
/* ============================================ */
@media (min-width: 769px) {
    .container #announcementsPlace,
    .container #dominaraUpdatesPlace {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
        width: 100% !important;
        flex-direction: unset !important;
        flex-wrap: unset !important;
    }
    
    .container #announcementsPlace > *,
    .container #dominaraUpdatesPlace > * {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Her iki bölüm için de aynı kart stilleri */
    .container #announcementsPlace .edict-card,
    .container #dominaraUpdatesPlace .edict-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 400px !important;
        max-height: 500px !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* İçerik kısıtlaması - her iki bölüm için aynı - TÜM İÇERİK ELEMENTLERİNE UYGULA */
    .container #announcementsPlace .edict-card .edict-content,
    .container #dominaraUpdatesPlace .edict-card .edict-content {
        flex: 1 !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 10 !important;
        line-clamp: 10 !important;
        -webkit-box-orient: vertical !important;
        text-overflow: ellipsis !important;
        max-height: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        min-height: 0 !important;
    }
    
    /* İçerik içindeki tüm elementlere de kısıtlama uygula */
    .container #announcementsPlace .edict-card .edict-content > *,
    .container #dominaraUpdatesPlace .edict-card .edict-content > * {
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Line-clamp sınıfı olan içerikler için */
    .container #announcementsPlace .edict-card .line-clamp-15,
    .container #dominaraUpdatesPlace .edict-card .line-clamp-15 {
        display: -webkit-box !important;
        -webkit-line-clamp: 10 !important;
        line-clamp: 10 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-height: 100% !important;
        min-height: 0 !important;
    }
    
    /* Eğer line-clamp sınıfı yoksa, içeriğe doğrudan uygula */
    .container #announcementsPlace .edict-card .edict-content:not(.line-clamp-15),
    .container #dominaraUpdatesPlace .edict-card .edict-content:not(.line-clamp-15) {
        display: -webkit-box !important;
        -webkit-line-clamp: 10 !important;
        line-clamp: 10 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-height: 100% !important;
        min-height: 0 !important;
    }
}

/* ============================================ */
.edict-card {
    background: rgba(50, 49, 55, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.forum-card {
    background: rgba(30, 30, 35, 0.95) !important;
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.edict-card:hover,
.forum-card:hover {
    transform: translateY(-5px);
    z-index: 10;
    position: relative;
    background: rgba(40, 40, 45, 0.95) !important;
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

/* Forum kartı içindeki "Gönderiye Git" butonuna cursor pointer ve stil */
.forum-card button {
    cursor: default;
}

.forum-card button[onclick*="forum"],
.forum-card button[onclick*="location.href='/forum/"],
.forum-card button.bg-blue-800,
.forum-card button:last-of-type {
    cursor: pointer !important;
    background: rgba(255, 215, 0, 0.1) !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    border-radius: 8px !important;
    color: #ffd700 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.forum-card button[onclick*="forum"]:hover,
.forum-card button[onclick*="location.href='/forum/"]:hover,
.forum-card button.bg-blue-800:hover,
.forum-card button:last-of-type:hover {
    background: rgba(255, 215, 0, 0.2) !important;
    border-color: rgba(255, 215, 0, 0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
}

/* ============================================ */
/* EDICT CARD - Okunabilirlik İyileştirmeleri */
/* ============================================ */
.edict-card {
    background: rgba(30, 30, 35, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.edict-card:hover,
.forum-card:hover {
    background: rgba(40, 40, 45, 0.95) !important;
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

/* API'den gelen class'ları override et */
.edict-card.bg-white {
    background: rgba(30, 30, 35, 0.95) !important;
}

.edict-card.text-black {
    color: #ffffff !important;
}

.edict-card .edict-content {
    color: #e0e0e0 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    text-align: left !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Desktop'ta her iki bölüm için de içerik kısıtlaması - Genel stil override */
@media (min-width: 769px) {
    /* Ana içerik kısıtlaması - TÜM YOLLARLA UYGULA */
    .container #announcementsPlace .edict-card .edict-content,
    .container #dominaraUpdatesPlace .edict-card .edict-content,
    .container #announcementsPlace .edict-card [class*="edict-content"],
    .container #dominaraUpdatesPlace .edict-card [class*="edict-content"] {
        display: -webkit-box !important;
        -webkit-line-clamp: 10 !important;
        line-clamp: 10 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-height: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        min-height: 0 !important;
    }
    
    /* İçerik içindeki tüm paragraf ve div elementlerine de kısıtlama */
    .container #announcementsPlace .edict-card .edict-content p,
    .container #dominaraUpdatesPlace .edict-card .edict-content p,
    .container #announcementsPlace .edict-card .edict-content div:not(.read-more-btn),
    .container #dominaraUpdatesPlace .edict-card .edict-content div:not(.read-more-btn),
    .container #announcementsPlace .edict-card .edict-content span,
    .container #dominaraUpdatesPlace .edict-card .edict-content span {
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* px-2 wrapper'ı için de kısıtlama - buton görünür olmalı */
    .container #announcementsPlace .edict-card .px-2,
    .container #dominaraUpdatesPlace .edict-card .px-2 {
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        min-height: 0 !important;
    }
    
    /* İçerik kısıtlaması için sadece edict-content'e overflow hidden */
    .container #announcementsPlace .edict-card .px-2 .edict-content,
    .container #dominaraUpdatesPlace .edict-card .px-2 .edict-content {
        overflow: hidden !important;
    }
    
    .container #announcementsPlace .edict-card .px-2 .edict-content,
    .container #dominaraUpdatesPlace .edict-card .px-2 .edict-content {
        display: -webkit-box !important;
        -webkit-line-clamp: 10 !important;
        line-clamp: 10 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-height: 100% !important;
        min-height: 0 !important;
    }
    
    /* Kart içindeki tüm metin içeriğini kısıtla - Son çare */
    .container #announcementsPlace .edict-card,
    .container #dominaraUpdatesPlace .edict-card {
        position: relative !important;
    }
}

.edict-card .edict-content * {
    color: #e0e0e0 !important;
}

.edict-card .edict-content b,
.edict-card .edict-content strong {
    color: #ffd700 !important;
    font-weight: 600 !important;
}

.edict-card .edict-content u {
    color: #ffd700 !important;
    text-decoration: underline;
}

/* Kullanıcı adı ve avatar */
.edict-card .font-bold {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

.edict-card .text-sm {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.875rem !important;
}

/* Avatar container */
.edict-card .w-8 {
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* Line clamp - 10 satırla sınırlandır */
.edict-card .line-clamp-15 {
    display: -webkit-box !important;
    -webkit-line-clamp: 10 !important;
    line-clamp: 10 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-height: 100% !important;
    min-height: 0 !important;
    position: relative !important;
}

/* Kart yüksekliğini sabit tut - 10 satıra uygun */
.edict-card {
    height: auto !important;
    min-height: 180px !important;
    display: flex !important;
    flex-direction: column !important;
}

.edict-card .px-2 {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

/* Mention ve role span'leri */
.edict-card .edict-content span {
    color: #ffd700 !important;
    background: rgba(255, 215, 0, 0.15) !important;
    padding: 0.125rem 0.5rem !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
}

.edict-card .edict-content span:hover {
    background: rgba(255, 215, 0, 0.25) !important;
}

/* Discord özel emoji — satır içi boyut (cdn tam çözünürlük gönderir) */
.edict-card .edict-content img.d-emoji,
.edict-modal-body img.d-emoji {
    display: inline-block;
    width: 1.35em;
    height: 1.35em;
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
    vertical-align: -0.15em;
    margin: 0 0.12em;
}

/* Diğer inline görseller (emoji dışı) */
.edict-card .edict-content img:not(.d-emoji) {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

/* Haberler/Duyurular medya çerçevesi: görsel-kapsayıcı tam uyum */
#announcementsPlace .edict-card .edict-content .embed-image,
#announcementsPlace .edict-card .edict-content .message-attachment,
#dominaraUpdatesPlace .edict-card .edict-content .embed-image,
#dominaraUpdatesPlace .edict-card .edict-content .message-attachment {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0b0b0f;
}

#announcementsPlace .edict-card .edict-content .embed-image img,
#announcementsPlace .edict-card .edict-content .message-attachment img,
#dominaraUpdatesPlace .edict-card .edict-content .embed-image img,
#dominaraUpdatesPlace .edict-card .edict-content .message-attachment img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: cover;
}

/* Medya içeren kartlarda line-clamp görsel yerleşimini bozmasın */
#announcementsPlace .edict-card.has-media .edict-content,
#dominaraUpdatesPlace .edict-card.has-media .edict-content {
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Devamını oku butonu - Her iki bölüm için de görünür olmalı */
.edict-card .read-more-btn,
#announcementsPlace .edict-card .read-more-btn,
#dominaraUpdatesPlace .edict-card .read-more-btn {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #ffd700;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
    position: relative;
    flex-shrink: 0;
}

.edict-card .read-more-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* ============================================ */
/* MODAL STYLES */
/* ============================================ */
.edict-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.edict-modal.active {
    display: flex;
}

.edict-modal-content {
    background: rgba(30, 30, 35, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.edict-modal-content::-webkit-scrollbar {
    width: 8px;
}

.edict-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.edict-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

.edict-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

.edict-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.edict-modal-close:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.edict-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.edict-modal-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.edict-modal-author {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.edict-modal-body {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    word-wrap: break-word;
}

.edict-modal-body * {
    color: #e0e0e0 !important;
}

.edict-modal-body b,
.edict-modal-body strong {
    color: #ffd700 !important;
    font-weight: 600 !important;
}

.edict-modal-body u {
    color: #ffd700 !important;
}

.edict-modal-body span {
    color: #ffd700 !important;
    background: rgba(255, 215, 0, 0.15) !important;
    padding: 0.125rem 0.5rem !important;
    border-radius: 4px !important;
}

/* Ferman modal: Discord markdown (başlık, italik, kod, spoiler) */
.disc-md-root .discord-ts,
.edict-modal-body .discord-ts {
    background: rgba(79, 84, 92, 0.24);
    border-radius: 3px;
    padding: 0 2px;
    cursor: default;
    font-size: 0.95em;
}
.edict-modal-body .disc-md-h {
    color: #ffd700 !important;
    font-weight: 700;
    margin: 0.5rem 0 0.35rem;
    line-height: 1.3;
    background: transparent !important;
    padding: 0 !important;
}
.edict-modal-body .disc-md-h1 { font-size: 1.35rem; }
.edict-modal-body .disc-md-h2 { font-size: 1.18rem; }
.edict-modal-body .disc-md-h3 { font-size: 1.05rem; opacity: 0.95; }
.edict-modal-body em,
.edict-modal-body i {
    color: #e0e0e0 !important;
    font-style: italic !important;
    background: transparent !important;
    padding: 0 !important;
}
.edict-modal-body del {
    text-decoration: line-through;
    opacity: 0.8;
}
.edict-modal-body code {
    font-family: ui-monospace, "Cascadia Mono", monospace !important;
    font-size: 0.9em;
    background: rgba(0, 0, 0, 0.4) !important;
    color: #e8e8e8 !important;
    padding: 0.1em 0.35em !important;
    border-radius: 4px;
}
.edict-modal-body pre.hljs {
    margin: 0.65rem 0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    text-align: left;
    font-size: 0.85rem;
}
.edict-modal-body .d-spoiler {
    filter: blur(5px);
    cursor: help;
    color: rgba(224, 224, 224, 0.9) !important;
}
.edict-modal-body .d-spoiler:hover {
    filter: none;
}
.edict-modal-body .d-emoji {
    padding: 0 !important;
    background: transparent !important;
    vertical-align: -0.15em;
    width: 1.35em;
    height: 1.35em;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}
/* ============================================ */
/* TAKIM OYUNCULARI SECTION STYLES */
/* ============================================ */

.teams-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    overflow-x: hidden;
}

.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid rgba(var(--team-color), 0.3);
    border-radius: 12px;
    padding: 1rem;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    --team-color: #339ffd;
    --team-bg: #339ffd;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--team-color), transparent);
    transition: width 0.3s ease;
    z-index: 1;
}

.team-card:hover {
    border-top-color: rgba(var(--team-color), 0.6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover::after {
    width: 100%;
}

.team-card-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--team-color);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.team-logo-container {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-badge {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--team-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-members-container {
    position: relative;
    z-index: 1;
}

.members-section {
    margin-bottom: 1rem;
}

.members-section:last-child {
    margin-bottom: 0;
}

.members-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--team-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.members-section-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 12px;
    background: var(--team-color);
    border-radius: 2px;
    opacity: 0.8;
}

.members-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--team-color);
    flex-shrink: 0;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.member-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--team-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--team-bg), transparent);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.member-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-role-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.member-role-badge.coach {
    background: rgba(255, 105, 180, 0.2);
    color: #ff69b4;
    border: 1px solid rgba(255, 105, 180, 0.4);
}

.member-role-badge.player {
    background: rgba(100, 200, 255, 0.2);
    color: #64c8ff;
    border: 1px solid rgba(100, 200, 255, 0.4);
}

.member-role-badge.substitute {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.no-members {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3rem;
    }
}

@media (max-width: 768px) {
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .team-card {
        padding: 1rem;
    }

    .team-card-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .team-logo-container {
        width: 40px;
        height: 40px;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .member-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .member-avatar,
    .member-avatar-placeholder {
        width: 36px;
        height: 36px;
    }

    .member-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .teams-grid {
        gap: 1rem;
    }

    .team-card {
        padding: 0.75rem;
    }

    .team-name {
        font-size: 1rem;
    }

    .members-section {
        margin-bottom: 1rem;
    }

    .member-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .member-avatar,
    .member-avatar-placeholder {
        width: 32px;
        height: 32px;
    }

    .member-role-badge {
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
    }
}

/* ========== Ana sayfa sponsor (modal + ara bloklar) — tam ekran ========== */
@media (max-width: 768px) {
    .sponsor-hide-on-narrow {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media (min-width: 769px) {
    .sponsor-hide-on-wide {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* Giriş modalı: PC görseli yalnız geniş, telefon görseli yalnız dar ekranda */
.anasayfa-sponsor-modal-img.anasayfa-sponsor-img--desk-only {
    display: block;
}

.anasayfa-sponsor-modal-img.anasayfa-sponsor-img--mob-only {
    display: none;
}

@media (max-width: 768px) {
    .anasayfa-sponsor-modal-img.anasayfa-sponsor-img--desk-only {
        display: none !important;
    }

    .anasayfa-sponsor-modal-img.anasayfa-sponsor-img--mob-only {
        display: block !important;
    }
}

/* Ara sponsor şeridi: tek görsel yalnız ilgili viewport’ta */
.sponsor-home-inline-img.sponsor-home-inline-img--desk-only {
    display: block;
}

.sponsor-home-inline-img.sponsor-home-inline-img--mob-only {
    display: none;
}

@media (max-width: 768px) {
    .sponsor-home-inline-img.sponsor-home-inline-img--desk-only {
        display: none !important;
    }

    .sponsor-home-inline-img.sponsor-home-inline-img--mob-only {
        display: block !important;
    }
}

.anasayfa-sponsor-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    isolation: isolate;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.anasayfa-sponsor-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.anasayfa-sponsor-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.anasayfa-sponsor-modal-panel {
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-width: none;
    max-height: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: #0a0a0e;
}

.anasayfa-sponsor-modal-link {
    position: absolute;
    inset: 0;
    display: block;
    line-height: 0;
}

.anasayfa-sponsor-modal-link picture,
.anasayfa-sponsor-modal-panel > picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.anasayfa-sponsor-modal-link .anasayfa-sponsor-modal-img,
.anasayfa-sponsor-modal-panel > .anasayfa-sponsor-modal-img,
.anasayfa-sponsor-modal-link picture .anasayfa-sponsor-modal-img,
.anasayfa-sponsor-modal-panel > picture .anasayfa-sponsor-modal-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.anasayfa-sponsor-modal-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    z-index: 200000;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    transition: background 0.15s ease;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.anasayfa-sponsor-modal-close:hover {
    background: rgba(220, 38, 38, 0.85);
}

/* Sponsor modal açıkken kaydırma yok + scrollbar görünmez */
html.anasayfa-sponsor-scroll-lock,
body.anasayfa-sponsor-scroll-lock {
    overflow: hidden !important;
    overscroll-behavior: none;
}

html.anasayfa-sponsor-scroll-lock {
    height: 100%;
    scrollbar-width: none;
}

html.anasayfa-sponsor-scroll-lock::-webkit-scrollbar,
body.anasayfa-sponsor-scroll-lock::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

body.anasayfa-sponsor-scroll-lock {
    scrollbar-width: none;
}

/* Sponsor modal — sağ şerit: editoryal panel + ince ışık çizgisi */
.anasayfa-sponsor-site-chip {
    --sponsor-rail-w: 5px;
    position: fixed;
    isolation: isolate;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: clamp(7.25rem, 24vw, 12rem);
    z-index: 199999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: max(1rem, env(safe-area-inset-top, 0px)) max(0.65rem, env(safe-area-inset-right, 0px)) max(1rem, env(safe-area-inset-bottom, 0px))
        calc(0.85rem + var(--sponsor-rail-w));
    border: none;
    border-radius: 0;
    background: linear-gradient(270deg, rgba(2, 2, 6, 0.72) 0%, rgba(2, 2, 6, 0.28) 52%, rgba(2, 2, 6, 0) 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.22);
    pointer-events: auto;
}

.anasayfa-sponsor-site-chip__accent {
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 8%;
    width: var(--sponsor-rail-w);
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, #fafafa 0%, #a1a1aa 45%, #52525b 100%);
    box-shadow: 2px 0 12px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.anasayfa-sponsor-site-chip__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
}

.anasayfa-sponsor-site-chip__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    text-align: left;
}

.anasayfa-sponsor-site-chip__kicker {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(212, 212, 216, 0.75);
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
}

.anasayfa-sponsor-site-chip__mark {
    margin: 0;
    line-height: 0.95;
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 800;
    color: #fafafa;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.anasayfa-sponsor-site-chip__mark-word {
    font-size: clamp(1.05rem, 3.2vw, 1.45rem);
    letter-spacing: -0.03em;
}

.anasayfa-sponsor-site-chip__mark-tld {
    font-size: clamp(0.72rem, 2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(228, 228, 231, 0.72);
}

.anasayfa-sponsor-site-chip__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    margin: 0;
    padding: 0.55rem 0.65rem;
    border-radius: 9999px;
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
    color: rgba(250, 250, 250, 0.95);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.38);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.12s ease;
    -webkit-tap-highlight-color: transparent;
}

.anasayfa-sponsor-site-chip__btn-arrow {
    font-size: 0.95em;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.anasayfa-sponsor-site-chip__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.anasayfa-sponsor-site-chip__btn:hover .anasayfa-sponsor-site-chip__btn-arrow {
    transform: translateX(3px);
    opacity: 1;
}

.anasayfa-sponsor-site-chip__btn:active {
    transform: scale(0.98);
}

.anasayfa-sponsor-site-chip__btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    /* Mobilde altta yatay bar, içerik dikey hiyerarşi korunur */
    .anasayfa-sponsor-site-chip {
        --sponsor-rail-w: 4px;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: calc(1.05rem + var(--sponsor-rail-w)) max(1rem, env(safe-area-inset-left, 0px))
            max(1.1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-right, 0px));
        background: linear-gradient(0deg, rgba(2, 2, 6, 0.92) 0%, rgba(2, 2, 6, 0.72) 55%, rgba(2, 2, 6, 0.2) 100%);
        box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.35);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

    .anasayfa-sponsor-site-chip__accent {
        left: 8%;
        right: 8%;
        top: 0;
        bottom: auto;
        width: auto;
        height: var(--sponsor-rail-w);
        border-radius: 0 0 3px 3px;
        background: linear-gradient(90deg, #fafafa 0%, #a1a1aa 45%, #52525b 100%);
        box-shadow: 0 2px 12px rgba(255, 255, 255, 0.1);
    }

    .anasayfa-sponsor-site-chip__inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.62rem;
        width: fit-content;
        max-width: 100%;
    }

    .anasayfa-sponsor-site-chip__head {
        width: 100%;
        gap: 0.2rem;
        align-items: center;
        text-align: left;
        margin: 0;
    }

    .anasayfa-sponsor-site-chip__mark {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
        align-self: center;
    }

    .anasayfa-sponsor-site-chip__kicker {
        font-size: 0.52rem;
        padding-bottom: 0;
        border-bottom: none;
        width: auto;
        text-align: center;
        align-self: flex-start;
    }

    .anasayfa-sponsor-site-chip__mark-word {
        font-size: clamp(1rem, 4.2vw, 1.2rem);
    }

    .anasayfa-sponsor-site-chip__mark-tld {
        font-size: clamp(0.68rem, 2.8vw, 0.82rem);
    }

    .anasayfa-sponsor-site-chip__btn {
        flex-shrink: 0;
        width: 100%;
        min-width: 0;
        font-size: 0.64rem;
        padding: 0.5rem 0.85rem;
    }
}

/* Ara sponsor: tek tam ekran şerit (bölümler arası) */
.sponsor-home-inline--fullscreen.content-section {
    display: block;
    align-items: initial;
    justify-content: initial;
}

.sponsor-home-inline--fullscreen {
    padding: 0 !important;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    max-width: 100vw;
}

.sponsor-home-inline--fullscreen .sponsor-home-inline-bg {
    opacity: 0.35;
}

.sponsor-home-inline--fullscreen .sponsor-home-inline-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

.sponsor-home-inline-link {
    position: absolute;
    inset: 0;
    display: block;
    line-height: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.sponsor-home-inline-inner > picture,
.sponsor-home-inline-link picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.sponsor-home-inline-inner > .sponsor-home-inline-img,
.sponsor-home-inline-inner > picture .sponsor-home-inline-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sponsor-home-inline-link .sponsor-home-inline-img,
.sponsor-home-inline-link picture .sponsor-home-inline-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile fix: Haberler alanında dikey sayfa scroll'u her zaman serbest */
@media (max-width: 1024px) {
    body.home-page #haberlerCarousel,
    body.home-page #haberlerCarousel .news-carousel,
    body.home-page #haberlerCarousel .carousel-wrapper,
    body.home-page #haberlerCarousel .carousel-container,
    body.home-page #haberlerCarousel .carousel-slide,
    body.home-page #haberlerCarousel .carousel-slide > img,
    body.home-page .news-container {
        touch-action: pan-y !important;
        overscroll-behavior-y: auto !important;
        overscroll-behavior-x: contain !important;
        -webkit-overflow-scrolling: touch !important;
    }
}