@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;
}

*,
*::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.jpg');
    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 */
.hero-stats-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-card-new {
    position: relative;
    padding: 2rem 2.5rem;
    background: rgba(20, 20, 25, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-sizing: border-box;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.06);
}

.stat-card-new:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(30, 30, 35, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.8),
        inset 0 0 30px rgba(255, 255, 255, 0.16);
}

.stat-icon {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

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

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

.stat-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.stat-number-new {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'HiJack', sans-serif;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 50px rgba(255, 255, 255, 0.25);
    line-height: 1;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

.stat-label-new {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-subtitle {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 0.25rem;
    font-style: italic;
    line-height: 1.2;
    max-height: 1.2em;
    overflow: hidden;
}

.stat-glow {
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.stat-card-new:hover .stat-glow {
    opacity: 1;
}

/* 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 {
        gap: 1.5rem;
    }

    .stat-card-new {
        width: 180px;
        min-width: 180px;
        max-width: 180px;
        height: 160px;
        min-height: 160px;
        max-height: 160px;
        flex: 0 0 180px;
        padding: 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .stat-number-new {
        font-size: 2rem;
        letter-spacing: 0.5px;
        text-shadow:
            1px 1px 3px rgba(0, 0, 0, 0.8),
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.4);
    }

    .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, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.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;
}

.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: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.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;
}

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

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

.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(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.2);
}

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

.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: 'HiJack', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    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: 1px solid rgba(255, 255, 255, 0.1);
}

.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 {
    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-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: -2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

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

/* ============================================ */
/* LAST EVENT SECTION */
/* ============================================ */
.last-event-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 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: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.event-title-section {
    flex: 1;
}

.event-name {
    font-family: 'HiJack', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

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

.event-map-image {
    width: 200px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

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

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

.team-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1.5rem;
    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.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

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

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

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

.player-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    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: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: visible;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

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

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

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

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

.player-game-nick {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.player-rank {
    font-size: 0.75rem;
    color: #ffd700;
}

.player-stats {
    display: flex;
    gap: 0.75rem;
}

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

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

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

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

.event-spectators {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

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

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

.event-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    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);
}

/* ============================================ */
/* 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 {
    display: block;
}

.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 {
    font-size: 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 {
    color: #ffd700;
}

.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 {
    color: #ffd700;
    margin-top: 0.2rem;
}

.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 {
    color: #ffd700;
}

.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);
}

.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 {
    color: #ffd700;
}

.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);
}

.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-size: 0.875rem;
    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;
}

/* ============================================ */
/* RESPONSIVE - MOBİL OPTİMİZASYONU */
/* ============================================ */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section-new {
        padding: 1rem;
        min-height: 100vh;
        margin-top: -100px;
        padding-top: calc(1rem + 100px);
        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 */
    .hero-stats-new {
        gap: 0.75rem;
        margin: 1rem 0 2rem;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }

    .stat-card-new {
        padding: 1rem 1.25rem;
        width: calc(33.333% - 0.5rem);
        min-width: calc(33.333% - 0.5rem);
        max-width: calc(33.333% - 0.5rem);
        height: 140px;
        min-height: 140px;
        max-height: 140px;
        flex: 0 0 calc(33.333% - 0.5rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 16px;
        box-sizing: border-box;
    }

    .stat-card-new .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-card-new .stat-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .stat-card-new .stat-number-new {
        font-size: 1.75rem;
        margin-bottom: 0.375rem;
        text-align: center;
        font-weight: 900;
        font-family: 'HiJack', sans-serif;
        line-height: 1;
        letter-spacing: 0.5px;
    }

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

    .stat-card-new .stat-label-new {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 0.2rem;
        text-align: center;
        text-transform: uppercase;
        font-weight: 600;
    }

    .stat-card-new .stat-subtitle {
        font-size: 0.55rem;
        text-align: center;
        text-transform: none;
        letter-spacing: 0.5px;
        font-weight: 400;
        margin-top: 0.2rem;
        font-style: italic;
    }

    /* 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, 7vw, 3.5rem);
        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 - Desktop tasarımını koruyarak mobil optimize */
    .last-event-container {
        padding: 1rem 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .last-event-card {
        padding: 1rem;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

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

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

    .event-name {
        font-family: 'HiJack', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.75rem;
    }

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

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

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

    .event-map-image {
        width: 150px;
        height: 90px;
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid rgba(255, 215, 0, 0.3);
        flex-shrink: 0;
    }

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

    .event-teams {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .team-section {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        padding: 1.25rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .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.75rem;
        margin-bottom: 1.25rem;
        font-size: 1rem;
        font-weight: 600;
        color: #ffffff;
    }

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

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

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

    .player-card {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: 0.875rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        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: 45px;
        height: 45px;
        border-radius: 50%;
        overflow: visible;
        border: 2px solid rgba(255, 215, 0, 0.3);
        flex-shrink: 0;
    }

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

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

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

    .player-name {
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.9rem;
    }

    .player-game-nick {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 0.25rem;
    }

    .player-rank {
        font-size: 0.7rem;
        color: #ffd700;
    }

    .player-stats {
        display: flex;
        gap: 0.625rem;
    }

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

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

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

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

    .event-spectators {
        margin-bottom: 1.5rem;
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

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

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

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

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

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

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

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

    .player-stats {
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    /* 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 {
        font-size: 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: 100vh;
        margin-top: -90px;
        padding-top: calc(0.75rem + 90px);
        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;
    }

    .stat-card-new {
        padding: 0.875rem 1rem;
        width: calc(33.333% - 0.4rem);
        min-width: calc(33.333% - 0.4rem);
        max-width: calc(33.333% - 0.4rem);
        height: 120px;
        min-height: 120px;
        max-height: 120px;
        flex: 0 0 calc(33.333% - 0.4rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        box-sizing: border-box;
    }

    .stat-card-new .stat-icon {
        font-size: 1.375rem;
        margin-bottom: 0.625rem;
    }

    .stat-card-new .stat-number-new {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

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

    .stat-card-new .stat-label-new {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.15rem;
    }

    .stat-card-new .stat-subtitle {
        font-size: 0.5rem;
        margin-top: 0.15rem;
    }

    .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, 6vw, 3rem);
    }

    .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 */
    .last-event-card {
        padding: 0.875rem;
        border-radius: 12px;
    }
    
    .event-name {
        font-family: 'HiJack', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.625rem;
    }

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

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

    .event-map-image {
        width: 120px;
        height: 72px;
        border-radius: 8px;
    }

    .event-teams {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .team-section {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .team-header {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .player-card {
        padding: 0.75rem;
    }

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

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

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

    .player-rank {
        font-size: 0.65rem;
    }

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

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

    /* 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;
}

/* Emoji'ler */
.edict-card .edict-content img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

/* 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;
}
/* ============================================ */
/* 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;
    }
}