/* Dark Theme - Black & Grey Color Scheme for Pınar Yıldız Collection */

:root {
    --pure-black: #000000;
    --deep-black: #0a0a0a;
    --rich-black: #111111;
    --charcoal: #1a1a1a;
    --dark-gray: #222222;
    --medium-gray: #333333;
    --mid-gray: #444444;
    --light-gray: #666666;
    --silver: #888888;
    --pale-silver: #aaaaaa;
    --off-white: #cccccc;
    --white: #ffffff;
    --accent-gray: #2a2a2a;
    --hover-gray: #3a3a3a;
    --border-gray: #3d3d3d;
    --overlay-black: rgba(0, 0, 0, 0.9);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
    --gradient-card: linear-gradient(145deg, #1a1a1a 0%, #222222 100%);
    --gradient-shine: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-darker: 0 8px 30px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pure-black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
.header {
    background: var(--deep-black);
    border-bottom: 1px solid var(--border-gray);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 90px;
    width: auto;
    filter: brightness(1) contrast(1.05);
    transition: var(--transition);
    border-radius: 4px;
}

.logo a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.instagram-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.instagram-icon svg {
    fill: #fff;
}

.logo a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.logo a:hover::before {
    left: 100%;
}

.logo a:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 30px rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.logo img:hover {
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px rgba(255,255,255,0.4));
}

/* Logo shine effect */
.logo a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: var(--gradient-shine);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.logo a:hover::after {
    left: 150%;
}

/* Navigation */
#main_menu .nav {
    display: flex;
    list-style: none;
    gap: 40px;
    position: relative;
}

#main_menu .nav li a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
    display: inline-block;
}

#main_menu .nav li a:hover,
#main_menu .nav li.current a {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
    background: transparent !important;
}

/* Sliding Nav Indicator */
.nav-indicator {
    position: absolute;
    bottom: 0;
    height: 1px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.nav-indicator-top {
    position: absolute;
    top: 0;
    height: 1px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Hamburger Menu */
.hamburger-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hamburger-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 3px 15px rgba(0,0,0,0.4), 0 0 15px rgba(255,255,255,0.1);
}

.hamburger-menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-black);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    text-align: center;
}

.mobile-menu-list li {
    margin: 25px 0;
}

.mobile-menu-list a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
}

.mobile-menu-list a:hover {
    color: var(--white);
    text-shadow: 0 0 30px rgba(255,255,255,0.8);
    transform: scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255,255,255,0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255,255,255,0.4), 0 0 40px rgba(255,255,255,0.2);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pure-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-gray);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
    position: relative;
}

.loading-spinner::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid transparent;
    border-top-color: var(--silver);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

.loading-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--silver);
    animation: pulse 1.5s ease infinite;
}

.loading-logo {
    max-height: 100px;
    margin-bottom: 30px;
    animation: float 3s ease infinite;
    filter: brightness(0.9);
}

/* ===== HERO VIDEO SLIDER ===== */
.hero-video-section {
    margin-top: 110px;
    background: var(--pure-black);
    padding: 0;
    position: relative;
}

.hero-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gray), transparent);
    z-index: 10;
}

.video-hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--deep-black);
}

.video-main-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--rich-black);
    overflow: hidden;
}

.video-main-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--pure-black);
}

/* Video Controls Overlay */
.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-hero-container:hover .video-controls-overlay {
    opacity: 1;
}

.video-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-gray);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.video-nav-btn:hover::before {
    width: 100%;
    height: 100%;
}

.video-nav-btn:hover {
    color: var(--pure-black);
    border-color: var(--white);
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.video-nav-btn span {
    position: relative;
    z-index: 1;
}

.video-nav-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    transform: scale(1);
}

.video-nav-btn:disabled:hover::before {
    width: 0;
    height: 0;
}

/* Video Loading Indicator */
.video-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 60px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-loading-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-gray);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.video-loading-spinner::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid transparent;
    border-top-color: var(--silver);
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

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

.video-loading-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--silver);
    font-weight: 300;
}

/* Video Player Controls */
.video-player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: 30px 20px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.video-main-player:hover .video-player-controls,
.video-player-controls.show {
    opacity: 1;
}

/* Seek Bar */
.video-seek-container {
    margin-bottom: 12px;
}

.video-seek-bar {
    position: relative;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    overflow: visible;
}

.video-seek-bar:hover {
    height: 6px;
}

.video-seek-progress {
    height: 100%;
    background: var(--white);
    border-radius: 2px;
    width: 0%;
    position: relative;
    transition: width 0.1s linear;
}

.video-seek-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--white);
    border-radius: 50%;
    right: -7px;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.video-seek-bar:hover .video-seek-handle {
    opacity: 1;
}

/* Control Row */
.video-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-controls-left,
.video-controls-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Control Buttons */
.video-control-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.video-control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-fast);
}

.video-control-btn:hover::before {
    width: 100%;
    height: 100%;
}

.video-control-btn:hover {
    color: var(--white);
    transform: scale(1.1);
}

.video-control-btn.play-pause {
    font-size: 20px;
}

.video-control-btn.fullscreen-btn {
    font-size: 16px;
}

/* Time Display */
.video-time {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-variant-numeric: tabular-nums;
}

.time-separator {
    margin: 0 5px;
    opacity: 0.6;
}

/* Buffer Bar */
.video-buffer-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--charcoal);
    z-index: 3;
}

.video-buffer-bar {
    height: 100%;
    background: var(--silver);
    width: 0%;
    transition: width 0.3s ease;
}

/* Video Thumbnails Strip */
.video-thumbnails-strip {
    display: flex;
    gap: 2px;
    background: var(--charcoal);
    padding: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-thumbnails-strip::-webkit-scrollbar {
    display: none;
}

.video-thumb-item {
    flex: 0 0 auto;
    width: 160px;
    height: 100px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: var(--dark-gray);
    border: 2px solid transparent;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
}

.video-thumb-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 1;
}

.video-thumb-item:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.video-thumb-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-thumb-item.active {
    border-color: var(--white);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* Thumbnail Poster Image */
.video-thumb-item .thumb-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.3s ease;
}

/* Thumbnail Video Element - Lazy Load */
.video-thumb-item .thumb-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumb-item .thumb-video.loaded {
    opacity: 1;
}

.video-thumb-item .thumb-video.loaded + .thumb-poster {
    opacity: 0;
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    z-index: 2;
    justify-content: space-between;
    padding: 8px;
}

.video-thumb-item.active .video-thumb-overlay,
.video-thumb-item:hover .video-thumb-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.video-thumb-number {
    font-size: 11px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 500;
    letter-spacing: 1px;
    align-self: flex-start;
}

.video-thumb-play {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.video-thumb-item:hover .video-thumb-play {
    opacity: 1;
    transform: scale(1.1);
}

.video-thumb-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid var(--pure-black);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 3px;
}

.video-thumb-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-gray);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--border-gray), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
}

.section-subtitle {
    font-size: 13px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 30px;
    font-weight: 300;
}

/* ===== MINI GALLERY SLIDER ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gray), transparent);
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gray), transparent);
}

/* Gallery Slider Container */
.gallery-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-dark);
}

.gallery-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-shine);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.8s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-slide:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.gallery-slide:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-darker), 0 20px 40px rgba(0,0,0,0.4);
}

.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(0.9);
}

.gallery-slide img.loading {
    opacity: 0.7;
    filter: blur(2px);
}

.gallery-slide img.loaded {
    opacity: 1;
    filter: none;
}

.gallery-slide img.error {
    opacity: 0.5;
}

.gallery-slide img.lazy-thumb {
    opacity: 0.8;
    filter: grayscale(20%) brightness(0.9);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.gallery-slide img.lazy-thumb:hover {
    opacity: 0.9;
    filter: grayscale(10%) brightness(0.95);
}

.gallery-slide img.hover-loaded {
    opacity: 1;
    filter: none;
}

.gallery-slide:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.gallery-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 3;
}

.gallery-slide:hover .gallery-slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-slide-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    transform: translateX(-10px);
    transition: var(--transition);
}

.gallery-slide:hover .gallery-slide-title {
    transform: translateX(0);
}

/* Gallery Slider Arrows */
.gallery-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--charcoal);
    border: 1px solid var(--border-gray);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    border-radius: 50%;
    overflow: hidden;
}

.gallery-slider-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.gallery-slider-arrow:hover::before {
    width: 100%;
    height: 100%;
}

.gallery-slider-arrow:hover {
    color: var(--pure-black);
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.gallery-slider-arrow span {
    position: relative;
    z-index: 1;
}

.gallery-slider-arrow.prev {
    left: 0;
}

.gallery-slider-arrow.next {
    right: 0;
}

.gallery-slider-arrow:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    border-color: var(--medium-gray);
}

.gallery-slider-arrow:disabled:hover::before {
    width: 0;
    height: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background: var(--rich-black);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gray), transparent);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--pale-silver);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-text strong {
    color: var(--white);
    font-weight: 500;
}

/* Stats */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: var(--transition);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0;
    background: linear-gradient(to bottom, transparent, var(--border-gray), transparent);
    transition: height 0.6s ease;
}

.stat-item:hover::before {
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    vertical-align: super;
    margin-left: 5px;
    color: var(--silver);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--silver);
    font-weight: 400;
}

/* ===== FOOTER ===== */
.footer {
background: var(--deep-black);
padding: 60px 0 25px;
position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: start;
}

.footer-col h3 {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 1px;
    background: var(--white);
    transition: width 0.4s ease;
}

.footer-col:hover h3::after {
    width: 80%;
}

.footer-col p,
.footer-col a {
    font-size: 13px;
    color: var(--pale-silver);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition);
    position: relative;
}

.footer-col a {
    display: inline-block;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col a:hover::after {
    width: 100%;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Instagram Link */
.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.instagram-link:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: var(--charcoal);
    border: 1px solid var(--border-gray);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    overflow: hidden;
}

.lightbox-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.lightbox-close:hover::before {
    width: 100%;
    height: 100%;
}

.lightbox-close:hover {
    color: var(--pure-black);
    border-color: var(--white);
    transform: rotate(90deg);
}

.lightbox-close span {
    position: relative;
    z-index: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: var(--charcoal);
    border: 1px solid var(--border-gray);
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.lightbox-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.lightbox-nav:hover::before {
    width: 100%;
    height: 100%;
}

.lightbox-nav:hover {
    color: var(--pure-black);
    border-color: var(--white);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.lightbox-nav span {
    position: relative;
    z-index: 1;
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--charcoal);
    border: 1px solid var(--border-gray);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.scroll-to-top:hover::before {
    width: 100%;
    height: 100%;
}

.scroll-to-top:hover {
    color: var(--pure-black);
    border-color: var(--white);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.scroll-to-top span {
    position: relative;
    z-index: 1;
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
    margin-top: 110px;
    padding: 60px 0;
    background: var(--pure-black);
    min-height: calc(100vh - 110px);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
}

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

.gallery-item img.loading {
opacity: 0.7;
filter: blur(2px);
}

.gallery-item img.loaded {
opacity: 1;
filter: none;
}

.gallery-item img.error {
opacity: 0.5;
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-title {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    margin-top: 110px;
    padding: 60px 0;
    background: var(--pure-black);
    min-height: calc(100vh - 110px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-gray);
    padding: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-gray);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 14px;
    color: var(--pale-silver);
}

.contact-text a {
    color: var(--pale-silver);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--white);
}

/* Map */
.contact-map {
    margin-top: 30px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    filter: grayscale(100%) invert(90%);
}

/* Contact Form */
.contact-form-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-gray);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--white), transparent);
    transition: height 0.6s ease;
}

.contact-form-card:hover::before {
    height: 100%;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.4s ease;
}

.form-group:focus-within::after {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--charcoal);
    border: 1px solid var(--border-gray);
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--dark-gray);
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--light-gray);
    transition: var(--transition);
}

.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
    color: var(--silver);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border: none;
    color: var(--pure-black);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .gallery-slider {
        gap: 15px;
    }
    
    .gallery-slide {
        width: 280px;
    }
    
    .gallery-slide img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col h3 {
        margin-bottom: 15px;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    /* Header Mobile */
    .header {
        padding: 12px 0;
        background: var(--pure-black);
    }
    
    .header .container {
        padding: 0 15px;
        justify-content: center;
        position: relative;
    }
    
    .logo {
        position: relative;
        z-index: 10;
        margin: 0 auto;
    }
    
    .logo img {
        max-height: 110px;
        width: auto;
        filter: brightness(1.2) contrast(1.1);
        transition: var(--transition);
    }
    
    .logo a {
        display: flex;
        align-items: center;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .logo a:hover {
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .logo a:hover img {
        filter: brightness(1.3) contrast(1.15) drop-shadow(0 0 15px rgba(255,255,255,0.3));
    }
    
    /* Hamburger menü sağa yasla */
    .hamburger-menu-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
    }
    
    #main_menu .menu_wrap {
        display: none !important;
    }
    
    /* Hero Video Mobile - Video Boyutuna Göre */
    .hero-video-section {
        margin-top: 70px;
    }
    
    .video-hero-container {
        max-width: 100vw;
    }
    
    .video-main-player {
        aspect-ratio: 16/9;
        max-height: 50vh;
        min-height: 200px;
    }
    
    .video-main-player video {
        object-fit: contain;
        background: var(--pure-black);
    }
    
    .video-thumb-item {
        width: 100px;
        height: 60px;
    }
    
    .video-thumbnails-strip {
        padding: 8px;
        gap: 8px;
        justify-content: center;
    }
    
    .video-controls-overlay {
        opacity: 1;
    }
    
    .video-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .video-player-controls {
        padding: 25px 15px 12px;
        opacity: 1;
    }
    
    .video-control-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .video-control-btn.play-pause {
        font-size: 18px;
    }
    
    .video-time {
        font-size: 12px;
    }
    
    /* Gallery Slider Mobile */
    .gallery-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-slider-container {
        padding: 0 40px;
    }
    
    .gallery-slide {
        width: 260px;
    }
    
    .gallery-slide img {
        height: 320px;
    }
    
    .gallery-slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    /* Gallery Page Mobile */
    .gallery-page {
        margin-top: 70px;
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }
    
    /* Contact Page Mobile */
    .contact-page {
        margin-top: 70px;
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Lightbox Mobile */
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    /* Footer Küçük Mobil */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-col h3 {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .footer-bottom p {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    /* Mobil Logo Düzenlemesi - Küçük Ekranlar */
    .logo img {
        max-height: 100px;
        width: auto;
        filter: brightness(1.2) contrast(1.1);
    }
    
    .logo a {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .logo a:hover {
        background: transparent;
        box-shadow: none;
    }
    
    .header {
        padding: 10px 0;
    }
    
    /* Mobil Video Player - Video Boyutuna Göre */
    .video-main-player {
        aspect-ratio: 16/9;
        max-height: 40vh;
        min-height: 180px;
    }
    
    .video-main-player video {
        object-fit: contain;
    }
    
    .gallery-slide {
        width: 220px;
    }
    
    .gallery-slide img {
        height: 280px;
    }
    
    .video-thumb-item {
        width: 85px;
        height: 50px;
    }
    
    .video-thumb-number {
        font-size: 8px;
        padding: 2px 4px;
    }
    
    .video-thumb-play {
        width: 24px;
        height: 24px;
    }
    
    .video-thumb-play::after {
        border-left: 6px solid var(--pure-black);
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
    }
    
    .video-player-controls {
        padding: 15px 8px 8px;
    }
    
    .video-control-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .video-control-btn.play-pause {
        font-size: 15px;
    }
    
    .video-time {
        font-size: 10px;
    }
    
    .video-seek-container {
        margin-bottom: 8px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
}

/* ===== UTILITY ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.clear {
    clear: both;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pure-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

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

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-gray);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--silver);
}
