/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b0000;
    --secondary-color: #1a1a1a;
    --dark-bg: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #ff4444;
    --gradient-1: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --gradient-2: linear-gradient(135deg, #8b0000 0%, #4a0000 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none !important;
}

/* Tüm elementlerde cursor'u gizle - Windows için güçlendirilmiş */
*, *::before, *::after,
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, textarea, select, button {
    cursor: none !important;
}

/* Hover durumlarında bile cursor gizli kalsın */
a:hover, button:hover, input:hover,
textarea:hover, select:hover,
.btn:hover, .nav-link:hover,
.video-card:hover, .gallery-item:hover {
    cursor: none !important;
}

/* Özel Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #ff4444;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease;
    box-shadow: 0 0 10px #ff4444, 0 0 20px rgba(255, 68, 68, 0.5);
    opacity: 0;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: rgba(255, 68, 68, 0.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Loader - GEÇİCİ OLARAK KAPALI */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    display: none !important; /* GEÇİCİ: Loader kapatıldı */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.skull-icon {
    font-size: 80px;
    animation: float 2s ease-in-out infinite;
}

.loading-text {
    font-size: 24px;
    margin-top: 20px;
    opacity: 0.7;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Particles Background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1) 0%, var(--dark-bg) 100%);
}

#particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: sparkle 20s linear infinite;
    opacity: 0.4;
}

@keyframes sparkle {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
}

.logo-icon {
    font-size: 32px;
    animation: rotate 20s linear infinite;
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: #000;
}

/* Tetris pattern arka plan */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, transparent 0%, transparent 48%, rgba(139, 0, 0, 0.15) 48%, rgba(139, 0, 0, 0.15) 52%, transparent 52%),
        linear-gradient(0deg, transparent 0%, transparent 48%, rgba(139, 0, 0, 0.15) 48%, rgba(139, 0, 0, 0.15) 52%, transparent 52%),
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(139, 0, 0, 0.08) 35px, rgba(139, 0, 0, 0.08) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(139, 0, 0, 0.08) 35px, rgba(139, 0, 0, 0.08) 70px);
    background-size: 100% 100%, 100% 100%, 70px 70px, 70px 70px;
    animation: tetrisMove 20s linear infinite;
    z-index: 0;
}

@keyframes tetrisMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 0 0, 70px 70px, -70px 70px; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Siyah overlay - kenarlar tamamen siyah, ortada kırmızı parlaklık */
    background: radial-gradient(ellipse at center,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.9) 60%,
        rgba(0, 0, 0, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-title {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -3px;
    overflow: hidden;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8),
                 0 8px 40px rgba(0, 0, 0, 0.6);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

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

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--accent-color);
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.8;
    opacity: 0;
    animation: fadeIn 1s ease 0.7s forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-secondary:hover {
    background: var(--text-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-color);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--text-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -2px;
}

/* About Section */
.about {
    background: var(--gradient-1);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-bottom: 60px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.about-features {
    display: grid;
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.3);
}

.team-card-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(26, 26, 26, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.team-placeholder {
    font-size: 120px;
    opacity: 0.3;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.team-card:hover .team-placeholder {
    opacity: 0.6;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.team-card-info {
    padding: 30px;
    text-align: center;
}

.team-card-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.team-card-role {
    font-size: 14px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
    color: var(--text-color);
}

/* Videos Section */
.videos {
    background: var(--dark-bg);
}

/* Video/Shorts Container */
.videos-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Featured Videos (Üst kısım - 3 büyük video) */
.featured-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-video-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.featured-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.featured-video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.featured-video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-video-card:hover .featured-video-thumbnail img {
    transform: scale(1.1);
}

.featured-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-video-card:hover .featured-video-overlay {
    opacity: 1;
}

.featured-play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    transition: transform 0.3s ease;
}

.featured-video-card:hover .featured-play-button {
    transform: scale(1.2);
}

.featured-video-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-video-info h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.featured-video-info p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    margin: 0;
}

.featured-video-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    opacity: 0.6;
    margin-top: auto;
}

/* Shorts Section (Alt kısım) */
.shorts-section {
    margin-top: 40px;
}

.shorts-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.shorts-header h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

.shorts-icon {
    font-size: 40px;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.shorts-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.shorts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.3);
    border-color: #ff4444;
}

.shorts-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts */
    overflow: hidden;
}

.shorts-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shorts-card:hover .shorts-thumbnail img {
    transform: scale(1.1);
}

.shorts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shorts-card:hover .shorts-overlay {
    opacity: 1;
}

.shorts-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #000;
}

.shorts-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
}

.shorts-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.shorts-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1200px) {
    .featured-videos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-videos {
        grid-template-columns: 1fr;
    }

    .shorts-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

/* Video Filters */
.video-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-2);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.2);
}

.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: var(--gradient-2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shorts-badge {
    position: absolute;
    top: 50px;
    right: 15px;
    padding: 6px 15px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff3d00 100%);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-shorts 2s ease-in-out infinite;
}

@keyframes pulse-shorts {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Shorts Section Divider */
.shorts-section-divider {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 0, 0.5) 50%, transparent 100%);
}

.shorts-title {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    animation: glow-shorts 2s ease-in-out infinite;
}

@keyframes glow-shorts {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 107, 0, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 107, 0, 0.8); }
}

.video-info {
    padding: 30px;
}

.video-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.video-info p {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.video-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    opacity: 0.6;
}

/* Loading Videos Animation */
.loading-videos {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
}

/* Loading Gallery Animation */
.loading-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
    text-align: center;
    min-height: 600px; /* 3D ring için minimum yükseklik */
}

.loading-gallery ol {
    text-align: left;
}

.loading-gallery code {
    background: rgba(0, 255, 136, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-videos p {
    color: var(--text-color);
    font-size: 16px;
    opacity: 0.7;
}

.videos-cta {
    text-align: center;
    margin-top: 60px;
}

/* Gallery Section */
.gallery {
    background: var(--gradient-1);
    min-height: 700px; /* 3D ring için minimum yükseklik */
}

.gallery-grid {
    min-height: 600px; /* 3D ring container yüksekliği */
    position: relative;
    margin-top: 50px;
    /* Grid stillerini kaldırdık - 3D ring için gerek yok */
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    font-size: 20px;
    font-weight: 700;
}

/* Comments Section */
.comments-section {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

/* Timeline Section - Nereye Gidiyoruz */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Timeline vertical line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(139, 0, 0, 0.3);
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline progress line */
.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    z-index: 2;
    overflow: visible;
}

.timeline-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #22d3ee, #6366f1, #a855f7);
    box-shadow: 0 0 15px rgba(99,102,241,0.5), 0 0 25px rgba(168,85,247,0.3);
    border-radius: 9999px;
    transition: height 0.1s linear;
}

/* Traveling glow comet at the head of progress line */
.timeline-glow-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 30;
    transition: top 0.1s linear;
    pointer-events: none;
}

.timeline-glow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.8) 0%, rgba(99,102,241,0.5) 40%, rgba(34,211,238,0) 70%);
    box-shadow:
        0 0 15px 4px rgba(168, 85, 247, 0.6),
        0 0 25px 8px rgba(99, 102, 241, 0.4),
        0 0 40px 15px rgba(34, 211, 238, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* Timeline events container */
.timeline-events {
    position: relative;
    z-index: 10;
}

/* Individual timeline event */
.timeline-event {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
}

.timeline-event:last-child {
    margin-bottom: 0;
}

/* Timeline dot (center point) */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.9);
    border: 3px solid rgba(139, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: all 0.5s ease;
}

.timeline-dot.active {
    border-color: #8b0000;
    box-shadow:
        0 0 20px rgba(139, 0, 0, 0.6),
        0 0 40px rgba(139, 0, 0, 0.4);
    transform: translate(-50%, -50%) scale(1.2);
}

.timeline-dot-inner {
    font-size: 28px;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.timeline-dot.active .timeline-dot-inner {
    filter: grayscale(0);
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Timeline cards */
.timeline-card {
    width: calc(50% - 60px);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.timeline-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-card-left .timeline-card {
    margin-right: auto;
    margin-left: 0;
    padding-right: 40px;
}

.timeline-card-right .timeline-card {
    margin-left: auto;
    margin-right: 0;
    padding-left: 40px;
}

.timeline-card-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 15px 15px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.timeline-card-content:hover::before {
    transform: scaleX(1);
}

.timeline-card-content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 0, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.timeline-card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.timeline-card-content:hover .timeline-card-icon {
    filter: grayscale(0);
}

.timeline-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.timeline-card-subtitle {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Timeline */
@media (max-width: 968px) {
    .timeline-line,
    .timeline-progress {
        left: 20px;
    }

    .timeline-glow-wrapper {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .timeline-dot-inner {
        font-size: 24px;
    }

    .timeline-card {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
    }

    .timeline-card-left .timeline-card,
    .timeline-card-right .timeline-card {
        margin-left: 70px !important;
        margin-right: 0 !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 0;
    }

    .timeline-header {
        margin-bottom: 50px;
    }

    .timeline-subtitle {
        font-size: 16px;
    }

    .timeline-event {
        margin-bottom: 60px;
    }

    .timeline-card-content {
        padding: 20px;
    }

    .timeline-card-icon {
        font-size: 36px;
    }

    .timeline-card-title {
        font-size: 20px;
    }

    .timeline-card-subtitle {
        font-size: 14px;
    }

    .timeline-card-description {
        font-size: 14px;
    }
}

/* Comments Section */

.comments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.05), transparent 70%);
    pointer-events: none;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.comment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.comment-card:hover::before {
    transform: scaleX(1);
}

.comment-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 0, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(139, 0, 0, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comment-card:hover .comment-avatar {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.comment-author-info {
    flex: 1;
}

.comment-author {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin-bottom: 3px;
}

.comment-video-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comment-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-likes {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.like-icon {
    font-size: 16px;
    color: var(--primary-color);
}

.comment-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.loading-comments {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.loading-comments .loader-spinner {
    margin: 0 auto 20px;
}

.no-comments {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.no-comments-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.7;
    margin-top: 15px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social-text {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* ============================================
   INTERACTIVE GRID BACKGROUND STYLES
   ============================================ */
.interactive-grid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.interactive-grid-fade {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ============================================
   TEAM CAROUSEL STYLES
   ============================================ */
.team-carousel-section {
    min-height: 100vh;
    padding: 80px 0;
    background: var(--dark-bg);
}

.team-carousel-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 80px 20px;
}

.team-carousel-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
    color: #ffffff !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.team-carousel-title.text-4xl {
    font-size: 2.25rem;
}

.team-carousel-title.text-5xl {
    font-size: 3rem;
}

.team-carousel-title.text-6xl {
    font-size: 3.75rem;
}

.team-carousel-title.text-7xl {
    font-size: 4.5rem;
}

.team-carousel-title.text-8xl {
    font-size: 6rem;
}

.team-carousel-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin-top: 80px;
}

.team-cards-track {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
}

.team-card {
    position: absolute;
    background: white;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    text-align: center;
}

.overlay-name {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.overlay-role {
    font-size: 0.875rem;
    opacity: 0.9;
}

.team-member-info {
    text-align: center;
    margin-top: 40px;
    transition: opacity 0.3s ease;
}

.member-name {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.member-name::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: 0.5rem;
    background: currentColor;
}

.member-role {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.member-bio {
    font-size: 1rem;
    margin-top: 1rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
}

.member-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.member-instagram:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.5);
}

.member-instagram svg {
    width: 20px;
    height: 20px;
}

.member-instagram span {
    letter-spacing: 0.5px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.9);
}

.carousel-arrow-left {
    left: 20px;
}

.carousel-arrow-right {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    transform: scale(1.1);
}

.carousel-dot.active {
    transform: scale(1.25);
}

.carousel-dot:active {
    transform: scale(0.9);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .team-carousel-title.text-8xl {
        font-size: 4rem;
    }

    .team-carousel-title.text-7xl {
        font-size: 3.5rem;
    }

    .team-card {
        max-width: 250px;
        width: 250px !important;
        height: 340px !important;
    }

    .carousel-arrow-left {
        left: 10px;
    }

    .carousel-arrow-right {
        right: 10px;
    }

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

    .member-role {
        font-size: 1.1rem;
    }

    .member-instagram {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .member-instagram svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .team-carousel-wrapper {
        padding: 40px 10px;
        min-height: 90vh;
    }

    .team-carousel-title {
        top: 16px;
        font-size: 2.5rem !important;
    }

    .team-carousel-title.text-8xl {
        font-size: 2.5rem;
    }

    .team-carousel-title.text-7xl {
        font-size: 2.25rem;
    }

    .team-carousel-title.text-6xl {
        font-size: 2rem;
    }

    .team-carousel-container {
        margin-top: 50px;
        height: 420px !important;
    }

    .team-card {
        max-width: 200px !important;
        width: 200px !important;
        height: 280px !important;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
    }

    .carousel-arrow-left {
        left: 5px;
    }

    .carousel-arrow-right {
        right: 5px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .member-name {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .member-role {
        font-size: 0.95rem;
        letter-spacing: 0.05em;
    }

    .member-bio {
        font-size: 0.9rem;
        margin-top: 0.75rem;
        padding: 0 15px;
    }

    .member-instagram {
        font-size: 0.85rem;
        padding: 8px 14px;
        margin-top: 0.75rem;
    }

    .member-instagram svg {
        width: 16px;
        height: 16px;
    }

    .team-member-info {
        margin-top: 30px;
    }

    .carousel-dots {
        margin-top: 40px;
        gap: 10px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .team-carousel-wrapper {
        padding: 30px 5px;
        min-height: 85vh;
    }

    .team-carousel-title {
        top: 12px;
        font-size: 2rem !important;
    }

    .team-carousel-container {
        margin-top: 40px;
        height: 380px !important;
    }

    .team-card {
        max-width: 180px !important;
        width: 180px !important;
        height: 260px !important;
    }

    .carousel-arrow {
        width: 28px;
        height: 28px;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }

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

    .member-role {
        font-size: 0.875rem;
    }

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

    .member-instagram {
        font-size: 0.8rem;
        padding: 7px 12px;
        margin-top: 0.65rem;
    }

    .member-instagram svg {
        width: 14px;
        height: 14px;
    }

    .team-member-info {
        margin-top: 25px;
    }

    .carousel-dots {
        margin-top: 30px;
        gap: 8px;
    }

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

.social-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.social-link:hover::before {
    opacity: 0.1;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link.youtube:hover {
    border-color: #ff0000;
}

.social-link.instagram:hover {
    border-color: #e4405f;
}

.social-link.tiktok:hover {
    border-color: #00f2ea;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright,
.footer-credit {
    font-size: 14px;
    opacity: 0.5;
    margin: 0;
}

.footer-credit {
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 90px;
    }

    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: 70px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .stat-number {
        font-size: 56px;
    }

    .stat-label {
        font-size: 14px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .comments-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    section {
        padding: 80px 0;
    }

    .about-content {
        padding: 0 20px;
    }

    .about-description {
        font-size: 16px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .stat-number {
        font-size: 56px;
    }

    .stat-label {
        font-size: 14px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .team-card-image {
        height: 280px;
    }

    .team-placeholder {
        font-size: 100px;
    }

    .team-card-info {
        padding: 25px;
    }

    .team-card-name {
        font-size: 22px;
    }

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

    .comments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comment-card {
        padding: 20px;
    }

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

    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-main {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .logo-text {
        font-size: 16px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .stats {
        gap: 35px;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 13px;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-description {
        font-size: 14px;
    }

    .social-links {
        justify-content: center;
    }
}

