/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
}

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #b3b3b3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-auth {
        gap: 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    padding-top: 80px; /* Add space for fixed navbar */
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Refund_Gaming.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(187, 134, 252, 0.1) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brand-highlight {
    background: linear-gradient(135deg, #bb86fc, #03dac6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
}

.subtitle {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    color: #cccccc;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #b3b3b3;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #bb86fc;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

/* Target Counter Animation */
#target-counter {
    position: relative;
    text-shadow: 0 0 20px rgba(187, 134, 252, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(187, 134, 252, 0.5);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(187, 134, 252, 0.8);
    }
}

/* Counter glow effect during animation */
.counter-highlight {
    background: linear-gradient(45deg, #bb86fc, #64b5f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none !important;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 320px; /* Fixed height for all cards */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #bb86fc, #03dac6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(187, 134, 252, 0.2);
    border-color: #bb86fc;
}

.feature-card.active {
    border-color: #bb86fc;
    box-shadow: 0 8px 32px rgba(187, 134, 252, 0.3);
}

.feature-card.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1; /* Take up remaining space to push footer to bottom */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Limit to 4 lines */
    line-clamp: 4; /* Standard property for compatibility */
    -webkit-box-orient: vertical;
}

.feature-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Push to bottom */
    height: 50px; /* Fixed height for consistent alignment */
    flex-shrink: 0; /* Prevent shrinking */
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px; /* Minimum width for consistency */
    text-align: center; /* Center text within badge */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.status-badge.available {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.status-badge.coming {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.arrow {
    font-size: 1.5rem;
    color: #bb86fc;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px; /* Fixed width for arrow */
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: #0a0a0a;
}

/* Streamers Grid */
.streamers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.streamer-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.streamer-card:hover {
    transform: translateY(-8px);
    border-color: #bb86fc;
    box-shadow: 0 10px 30px rgba(187, 134, 252, 0.2);
}

.streamer-card.has-gallery {
    border-color: #4caf50;
}

.streamer-card.has-gallery:hover {
    border-color: #66bb6a;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.streamer-card.has-gallery::before {
    content: "📸";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4caf50;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.streamer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #bb86fc, #03dac6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    overflow: hidden;
    position: relative;
}

.streamer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.streamer-avatar.no-image {
    background: linear-gradient(135deg, #555, #777);
    color: #fff;
    font-size: 1.8rem;
}

.streamer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* Loading State */
.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: #888;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    border: 3px solid #333;
    border-top: 3px solid #bb86fc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Legacy Team Grid (keep for compatibility) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 16px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #bb86fc;
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.team-member p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-stats {
    padding-top: 0.5rem;
    border-top: 1px solid #333;
}

.member-stats span {
    color: #bb86fc;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Featured Team Members */
.team-member.featured {
    background: linear-gradient(145deg, #2a1f3d, #3d2a5e);
    border: 2px solid #bb86fc;
    position: relative;
}

.team-member.featured::before {
    content: "⭐";
    position: absolute;
    top: -5px;
    right: -5px;
    background: #bb86fc;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.team-member.featured h4 {
    color: #bb86fc;
    font-weight: 700;
}

.team-member.featured .member-stats span {
    color: #ffffff;
    background: rgba(187, 134, 252, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin: 2px;
}

/* Team Summary Cards */
.team-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem 0;
    max-width: 900px;
    margin: 2rem auto 0;
}

.summary-card {
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 12px;
    border: 1px solid #bb86fc;
}

.summary-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #bb86fc;
    margin-bottom: 0.4rem;
}

.summary-card p {
    color: #ffffff;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #bb86fc;
}

.footer-brand p {
    color: #888;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.link-group a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover:not(.disabled) {
    color: #bb86fc;
}

.link-group a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.footer-tech {
    font-size: 0.8rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Gallery Page Specific Styles */

/* Gallery Navigation */
.gallery-nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #333;
    z-index: 100;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.5rem;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.brand-highlight {
    color: #bb86fc;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn.secondary:hover {
    background: rgba(187, 134, 252, 0.2);
    border-color: #bb86fc;
    color: #bb86fc;
}

/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.gallery-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Refund_Gaming.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    opacity: 0.05;
    z-index: 1;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.gallery-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.gallery-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.gallery-title .highlight {
    color: #bb86fc;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.gallery-stat {
    text-align: center;
}

.gallery-stat span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #03dac6;
    margin-bottom: 0.25rem;
}

.gallery-stat span:last-child {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Controls Section */
.gallery-controls-section {
    padding: 2rem 0;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.streamer-selection {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #ffffff;
    font-size: 1rem;
}

.label-icon {
    font-size: 1.2rem;
}

.select-wrapper {
    position: relative;
    min-width: 200px;
}

.streamer-select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border: 1px solid #444;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

.streamer-select:focus {
    outline: none;
    border-color: #bb86fc;
    box-shadow: 0 0 0 3px rgba(187, 134, 252, 0.2);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:hover .select-arrow {
    color: #bb86fc;
}

.gallery-info {
    display: flex;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Gallery Main Content */
.gallery-main {
    min-height: 60vh;
    padding: 3rem 0;
}

/* Loading State */
.loading-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.loading-animation {
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(187, 134, 252, 0.2);
    border-top: 4px solid #bb86fc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.loading-text h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.loading-text p {
    color: #888;
}

/* Error State */
.error-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.error-content {
    text-align: center;
    max-width: 400px;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-content h3 {
    font-size: 1.5rem;
    color: #cf6679;
    margin-bottom: 1rem;
}

.error-text {
    color: #b3b3b3;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.retry-btn {
    background: linear-gradient(135deg, #bb86fc, #9c64f5);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(187, 134, 252, 0.4);
}

/* Empty State */
.empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.empty-content {
    text-align: center;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.empty-content p {
    color: #888;
}

/* Enhanced Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    background: #2a2a2a;
}

.gallery-grid img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(187, 134, 252, 0.3);
    border-color: #bb86fc;
}

.gallery-grid img:loading {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Enhanced Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: lightbox-fade-in 0.3s ease;
}

.lightbox-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.file-info .filename {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.file-info .streamer-name {
    color: #bb86fc;
    font-weight: 500;
}

.lightbox-close {
    background: rgba(207, 102, 121, 0.2);
    color: #cf6679;
    border: 1px solid #cf6679;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #cf6679;
    color: #000;
    transform: scale(1.1);
}

.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.lightbox-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.lightbox-btn.primary {
    background: linear-gradient(135deg, #bb86fc, #9c64f5);
    color: #000;
}

.lightbox-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 134, 252, 0.4);
}

.lightbox-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-btn.secondary:hover {
    background: rgba(3, 218, 198, 0.2);
    border-color: #03dac6;
    color: #03dac6;
}

/* Gallery Footer */
.gallery-footer {
    background: #0a0a0a;
    padding: 2rem 0;
    border-top: 1px solid #333;
    margin-top: 4rem;
}

.gallery-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left p {
    color: #888;
    font-size: 0.9rem;
}

.tech-badge {
    background: rgba(187, 134, 252, 0.1);
    color: #bb86fc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(187, 134, 252, 0.3);
}

@keyframes lightbox-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 2rem 0;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .controls-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery-info {
        width: 100%;
        justify-content: space-between;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .lightbox-container {
        padding: 1rem;
    }
    
    .lightbox-actions {
        flex-direction: column;
    }
    
    .lightbox-btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #333;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(187, 134, 252, 0.3);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
    animation: zoomIn 0.3s ease;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.lightbox-btn {
    background: #bb86fc;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lightbox-btn:hover {
    background: #9c64f5;
    transform: translateY(-2px);
}

.lightbox-btn.close-btn {
    background: #cf6679;
}

.lightbox-btn.close-btn:hover {
    background: #b85065;
}

.lightbox-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-size: 14px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: translateY(-50%) scale(0.5); }
    to { transform: translateY(-50%) scale(1); }
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    background: #1f1f1f;
    border-top: 1px solid #333;
}

/* ============================================ */
/* ENHANCED GALLERY PAGE STYLES */
/* ============================================ */

/* Gallery Page Styles */
.gallery-page {
    background: #0a0a0a;
    min-height: 100vh;
}

/* Main Header */
.main-header {
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-nav {
    padding: 1rem 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-brand .brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.nav-brand .brand-link:hover {
    transform: scale(1.02);
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-brand .brand-link:hover .brand-logo {
    border-color: #bb86fc;
    box-shadow: 0 0 15px rgba(187, 134, 252, 0.3);
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #bb86fc, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #ccc;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-weight: 500;
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-1px);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(187, 134, 252, 0.2), rgba(124, 77, 255, 0.2));
    border-color: #bb86fc;
    color: #bb86fc;
    box-shadow: 0 4px 15px rgba(187, 134, 252, 0.2);
}

.nav-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.nav-text {
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/Refund_Gaming.png') center/contain no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(187, 134, 252, 0.1) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    background: rgba(187, 134, 252, 0.15);
    border-color: rgba(187, 134, 252, 0.4);
    box-shadow: 0 8px 25px rgba(187, 134, 252, 0.2);
}

.stat-icon {
    font-size: 1.8rem;
    opacity: 0.9;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #bb86fc;
}

/* Main Content */
.gallery-main {
    padding: 3rem 0;
}

/* Controls Section */
.controls-section {
    margin-bottom: 2.5rem;
}

.control-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid #333;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
}

.control-item {
    flex: 1;
    min-width: 250px;
}

.control-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.control-icon {
    font-size: 1.2rem;
    color: #bb86fc;
}

.select-wrapper {
    position: relative;
}

.control-select {
    width: 100%;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.control-select:focus {
    border-color: #bb86fc;
    outline: none;
    box-shadow: 0 0 0 3px rgba(187, 134, 252, 0.2);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23bb86fc' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

.control-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 0.75rem;
}

.retry-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #bb86fc, #7c4dff);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.retry-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(187, 134, 252, 0.4);
}

.retry-button:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-text {
    font-size: 1rem;
}

/* Content Area */
.content-area {
    min-height: 500px;
}

/* Content States */
.content-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border-radius: 16px;
    border: 2px dashed #333;
    background: rgba(255, 255, 255, 0.02);
}

.state-wrapper {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.state-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.error-icon {
    color: #ff6b6b;
}

.empty-icon {
    color: #ffd93d;
}

.state-title {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.state-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Loading Animation */
.loading-animation {
    margin-bottom: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #333;
    border-top: 4px solid #bb86fc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Image Gallery - Simplified for image-only display */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.image-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 16/10;
}

.image-card:hover {
    transform: translateY(-4px);
    border-color: #bb86fc;
    box-shadow: 0 10px 25px rgba(187, 134, 252, 0.2);
}

.image-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
}

.image-card:hover .image-thumbnail {
    transform: scale(1.05);
}

.image-container {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #2a2a2a;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(187, 134, 252, 0.2);
    border-top: 3px solid #bb86fc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.error-placeholder {
    text-align: center;
    color: #ff6b6b;
}

.error-placeholder span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.error-placeholder small {
    font-size: 0.8rem;
    opacity: 0.7;
}

@keyframes loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
}

.image-container img[src=""] {
    animation: loading-shimmer 1.5s infinite;
}

.gallery-item:hover .image-container img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.image-info {
    margin-top: auto;
}

.image-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    word-break: break-word;
}

.image-actions {
    display: flex;
    gap: 0.75rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.action-btn:hover {
    transform: scale(1.15);
}

.action-btn.view-btn:hover {
    background: rgba(76, 175, 80, 0.8);
    border-color: #4caf50;
}

.action-btn.download-btn:hover {
    background: rgba(33, 150, 243, 0.8);
    border-color: #2196f3;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: lightbox-fade-in 0.3s ease;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-wrapper {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    border: 1px solid #333;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.lightbox-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.close-button {
    background: rgba(207, 102, 121, 0.2);
    border: 1px solid #cf6679;
    color: #cf6679;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    background: #cf6679;
    color: #000;
    transform: scale(1.1);
}

.lightbox-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 300px;
    max-height: 70vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #333;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #bb86fc, #7c4dff);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(187, 134, 252, 0.4);
}

.action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.action-btn.download {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: #fff;
}

.action-btn.download:hover {
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.action-btn.copy {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: #fff;
}

.action-btn.copy:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-label {
    font-size: 1rem;
}

/* Main Footer */
.main-footer {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: #888;
    font-size: 0.95rem;
}

/* Loading shimmer animation */
@keyframes loading-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav .container {
        gap: 0.5rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-item {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-item .nav-text {
        display: none;
    }
    
    .brand-logo {
        width: 32px;
        height: 32px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 2.5rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .stats-bar {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        min-width: 200px;
        padding: 1rem 1.25rem;
    }
    
    .control-panel {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
    }
    
    .control-item {
        min-width: unset;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .lightbox-wrapper {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 2rem);
    }
    
    .lightbox-header {
        padding: 1rem 1.5rem;
    }
    
    .lightbox-body {
        padding: 1rem;
    }
    
    .lightbox-footer {
        padding: 1rem 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-item .nav-icon {
        font-size: 1.2rem;
    }
    
    .brand-logo {
        width: 28px;
        height: 28px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .lightbox-wrapper {
        margin: 0.5rem;
    }
}

/* Additional responsive styles for hero section */
@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .brand-highlight {
        white-space: normal;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding-top: 50px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
        margin-bottom: 0.8rem;
    }
    
    .brand-highlight {
        white-space: normal;
        word-break: keep-all;
        hyphens: none;
    }
    
    .subtitle {
        font-size: 0.65em;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .brand-highlight {
        word-break: break-word;
        white-space: normal;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .stat-label {
        font-size: 0.7rem;
        margin: 0;
    }
}

/* Progress Section Styles */
.progress {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1a36 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.progress-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.progress-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-header h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.progress-percent {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d9ff;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d9ff, #7b68ee);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.progress-item.completed .progress-fill {
    background: linear-gradient(90deg, #00ff88, #00d9ff);
}

.progress-item.active .progress-fill {
    background: linear-gradient(90deg, #ffd700, #ff8c00);
}

.progress-item.upcoming .progress-fill {
    background: linear-gradient(90deg, #666, #888);
}

.progress-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Enhanced Status Badges */
.status-badge.development {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
}

.status-badge.planning {
    background: linear-gradient(135deg, #666, #888);
    color: #fff;
}

/* Enhanced Footer Styles */
.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.footer-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.version {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.tech-stack {
    font-size: 0.85rem;
    color: #bb86fc;
    font-weight: 500;
}

/* Navigation disabled link styles */
.nav-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Enhanced Team Member Stats */
.team-member .member-stats {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.team-member .member-stats span {
    color: #b0b0b0;
}

/* Image Error Placeholder Styles */
.image-error-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    min-height: 150px;
}

.image-error .error-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.image-error .error-text {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.image-error .error-subtitle {
    color: #888;
    font-size: 0.8rem;
    word-break: break-word;
}

.image-card.image-error {
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Setup Notice Styles */
.setup-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin: 1rem 0;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    color: #ffc107;
}

.notice-icon {
    font-size: 1.5rem;
}

.notice-content {
    flex: 1;
}

.notice-content a {
    color: #ffc107;
    text-decoration: underline;
}

.notice-content a:hover {
    color: #ffca28;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .progress-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-stats {
        align-items: flex-start;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Streamers Grid Responsive */
    .streamers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Tablet responsive */
@media (max-width: 992px) {
    .streamers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .team-summary {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 1rem 0.5rem;
    }
    
    .summary-card {
        padding: 1rem 0.6rem;
    }
    
    .summary-card h3 {
        font-size: 1.3rem;
    }
    
    .summary-card p {
        font-size: 0.8rem;
    }
}

/* Mobile responsive */
@media (max-width: 576px) {
    .streamers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .team-summary {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.8rem;
        margin: 1.5rem auto 0;
        padding: 1rem 0.5rem;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .summary-card h3 {
        font-size: 1.4rem;
    }
}
