body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
}
/* Slxrin Professional Website Styles */

/* Custom Font Declarations */
@font-face {
    font-family: 'DisplayFont';
    src: url('../fonts/DisplayFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AccentFont';
    src: url('../fonts/AccentFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BodyFont';
    src: url('../fonts/BodyFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MonoFont';
    src: url('../fonts/MonoFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #ff8c42;
    --accent-color: #ff4444;
    --bg-dark: #1a0a05;
    --bg-darker: #0f0502;
    --bg-card: #2d150a;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #656d76;
    --border-color: #30363d;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-hero: linear-gradient(135deg, #1a0a05 0%, #3d1a0a 50%, #5c2a15 100%);
    --font-primary: 'DisplayFont', 'Bangers', 'Impact', 'Arial Black', sans-serif;
    --font-secondary: 'BodyFont', 'Fredoka One', 'Comic Neue', 'Arial', sans-serif;
    --font-sub-headline: 'AccentFont', 'Righteous', 'Orbitron', 'Arial', sans-serif;
    --font-mono: 'MonoFont', 'Tektur', 'Courier New', monospace;
    --dark-overlay: rgba(26, 10, 5, 0.85);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 40px;
}

/* Sample Site Banner */
.sample-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
    .sample-banner {
        font-size: 0.75rem;
        padding: 6px;
    }
    body {
        padding-top: 35px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    background: rgba(26, 10, 5, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
    .navbar {
        top: 35px;
    }
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.nav-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-primary);
}


/* LIVE badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(255, 107, 53, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}
.live-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(255, 107, 53, 1);
    animation: pulse 2s infinite;
}
.live-badge.is-live {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% { box-shadow: 0 0 12px rgba(255, 107, 53, 1); }
    50% { box-shadow: 0 0 20px rgba(255, 107, 53, 1); }
    100% { box-shadow: 0 0 12px rgba(255, 107, 53, 1); }
}

.nav-menu {
    display: flex;
    gap: 35px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 130px 0 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
        background-image:
        linear-gradient(45deg, rgba(26, 10, 5, 0.9) 0%, rgba(61, 26, 10, 0.7) 50%, rgba(92, 42, 21, 0.5) 100%),
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 140, 66, 0.2) 0%, transparent 50%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background video for hero */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.3) saturate(1.2) contrast(1.1);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 50px;
}

.hero-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.avatar-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.6),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
}

.avatar-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 176px;
    height: 176px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    animation: rotate 4s linear infinite;
    box-shadow: 0 0 20px rgba(204, 74, 31, 0.3);
}

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

.hero-title {
    margin-bottom: 25px;
}

.title-main {
    display: block;
    font-size: 5.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-primary) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    font-family: var(--font-primary);
}

.title-sub {
    display: block;
    font-size: 1.6rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
    font-family: var(--font-sub-headline);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 45px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::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.5s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-color), #cc3333);
    color: white;
    box-shadow: 0 5px 20px rgba(204, 74, 31, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 74, 31, 0.6);
    background: linear-gradient(135deg, #cc3333, var(--accent-color));
}

.btn-tertiary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.btn-tertiary:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 140px);
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
    position: relative;
    padding: 20px;
    background: rgba(28, 33, 40, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    min-width: 140px;
    width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px 8px 0 0;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Stream Status Box (Countdown / Live) */
.stream-status-box {
    margin: 30px auto 20px;
    padding: 25px 35px;
        background: rgba(15, 6, 6, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stream-status-box.live {
    background: rgba(80, 0, 0, 0.5);
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
    }
}

.countdown-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.countdown-label {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stream-status-box.live .countdown-label {
    color: #ff0000;
}

.countdown-timer-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    margin: 0;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.time-number {
    font-family: var(--font-sub-headline);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    line-height: 1;
}

.stream-status-box.live .time-number {
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    color: #ff0000;
}

.time-label {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 0.3rem;
}

.countdown-subtitle span {
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.stream-status-box.live .countdown-subtitle span {
    color: #ff0000;
}

/* Hide countdown timer when live, show text instead */
.stream-status-box.live .countdown-timer-grid {
    display: none;
}

.stream-status-box.live .countdown-subtitle {
    display: none;
}

.countdown-timer {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    display: none;
}

.stream-status-box.live .countdown-timer {
    display: block;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    color: #ff0000;
}

/* Responsive design for countdown */
@media (max-width: 768px) {
    .stream-status-box {
        padding: 20px 25px;
        margin: 20px auto 15px;
    }
    
    .countdown-timer-grid {
        gap: 0.5rem;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .countdown-subtitle {
        font-size: 0.85rem;
    }
    
    .time-unit {
        min-width: 60px;
    }
}

/* Sections */
.section {
    padding: 30px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-darker);
}

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

.section-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-primary) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-primary);
}

.section-title img,
img.section-title {
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* About Section */
.about-content {
    margin-bottom: 60px;
}

.about-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.about-item {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.about-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.about-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Support Page Styles */
.support-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.support-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.support-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.support-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.thank-you-message {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.thank-you-message h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.thank-you-message p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Twitch Embed Styles */
.twitch-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.twitch-embed,
.twitch-chat {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.twitch-embed:hover,
.twitch-chat:hover {
    border-color: var(--primary-color);
}

.twitch-embed iframe,
.twitch-chat iframe {
    border: none;
    border-radius: 6px;
}

/* Responsive Twitch Layout */
@media (max-width: 768px) {
    .twitch-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .twitch-embed iframe,
    .twitch-chat iframe {
        height: 300px;
    }
}

/* Contact Page Styles */
.contact-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(13, 17, 23, 0.6);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

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

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    width: 100%;
}

.contact-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.form-status.error {
    display: block;
    background: rgba(255, 50, 50, 0.1);
    border: 2px solid #ff3232;
    color: #ff3232;
}

/* Team Midnite Section */
.team-midnite {
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.team-midnite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.team-midnite h3 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-primary) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.reason {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(13, 17, 23, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.reason:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.reason i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.reason h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reason p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Equipment Section */
.page-header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--secondary-color) 100%);
    padding: 10px 0 10px;
    text-align: center;
    position: relative;
    margin-top: 115px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-primary) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-primary);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 0;
    line-height: 1.6;
}

.equipment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
}

.eq-stat {
    text-align: center;
    padding: 15px;
}

.eq-stat-label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.eq-stat-value {
    font-family: var(--font-sub-headline);
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.equipment-category {
    margin-bottom: 50px;
}

.equipment-category-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.equipment-category-title i {
    font-size: 1.5rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.equipment-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.eq-label {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eq-value {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.eq-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.eq-value a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Social Section */
.social-section {
    background: var(--bg-card);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.social-section h3 {
    font-size: 4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-primary) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-section p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 25px;
    background: var(--bg-dark);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.social-link.twitch:hover { 
    border-color: #9146ff; 
    box-shadow: 0 15px 30px rgba(145, 70, 255, 0.3);
}
.social-link.youtube:hover { 
    border-color: #ff0000; 
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}
.social-link.tiktok:hover { 
    border-color: #ff0050; 
    box-shadow: 0 15px 30px rgba(255, 0, 80, 0.3);
}
.social-link.instagram:hover { 
    border-color: #d4a900; 
    box-shadow: 0 15px 30px rgba(212, 169, 0, 0.3);
}
.social-link.twitter:hover { 
    border-color: #ffffff; 
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}
.social-link.bluesky:hover { 
    border-color: #00bcd4; 
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.3);
}
.social-link.patreon:hover { 
    border-color: #ff5722; 
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.3);
}
.social-link.discord:hover { 
    border-color: #5865f2; 
    box-shadow: 0 15px 30px rgba(88, 101, 242, 0.3);
}
.social-link.website:hover { 
    border-color: var(--primary-color); 
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}
.social-link.midnite-website:hover { 
    border-color: #E879F9; 
    box-shadow: 0 15px 30px rgba(232, 121, 249, 0.4);
}

.social-link i {
    font-size: 2.2rem;
}

.social-link span {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 50px 0;
    border-top: 3px solid var(--primary-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.footer-brand span {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.05rem;
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.content-section:nth-child(odd) {
    background: var(--bg-dark);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.content-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 35px;
    margin: 50px 0 0 0;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-card h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 50px 0 0 0;
}

.three-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 50px 0 0 0;
}

.two-column-grid .content-card,
.three-column-grid .content-card {
    margin: 0;
}

@media (max-width: 1024px) {
    .three-column-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .three-column-grid .content-card {
        margin: 10px 0 0 0;
    }
}

@media (max-width: 768px) {
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .two-column-grid .content-card {
        margin: 10px 0 0 0;
    }
}

.content-card p, .content-card ul, .content-card ol {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.content-card ul, .content-card ol {
    padding-left: 25px;
}

.content-card li {
    margin-bottom: 10px;
}

.content-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.content-card.highlight-card {
    text-align: center;
}

.content-card.highlight-card a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(255, 140, 66, 0.4);
}

.content-card.highlight-card a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 140, 66, 0.8);
}

.content-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Merch Grid */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.merch-item {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.merch-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.merch-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.merch-item-content {
    padding: 25px;
}

.merch-item h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.merch-item:hover h4 {
    color: var(--primary-color);
}

/* Responsive Design */

/* Large tablets and small laptops (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        max-width: 900px;
        padding: 0 30px;
    }

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

    .hero-content {
        max-width: 700px;
        padding: 0 30px;
        margin-top: 45px;
    }

    .title-main {
        font-size: 3.5rem;
    }

    .title-sub {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .avatar-img {
        width: 130px;
        height: 130px;
    }

    .avatar-ring {
        width: 150px;
        height: 150px;
        top: -10px;
        left: -10px;
    }

    .hero-stats {
        gap: 50px;
    }

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

    .section-title {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .team-reasons {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .social-links {
        gap: 25px;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Medium screens and 15-inch laptops (1024px - 1366px) */
@media (max-width: 1366px) and (min-width: 1025px) {
    .container {
        max-width: 1100px;
        padding: 0 40px;
    }

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

    .hero-content {
        max-width: 750px;
        padding: 0 40px;
        margin-top: 48px;
    }

    .title-main {
        font-size: 3.8rem;
    }

    .hero-description {
        font-size: 1.15rem;
        margin-bottom: 38px;
    }

    .avatar-img {
        width: 140px;
        height: 140px;
    }

    .avatar-ring {
        width: 160px;
        height: 160px;
        top: -10px;
        left: -10px;
    }

    .hero-stats {
        gap: 55px;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 2.9rem;
    }

    .about-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .team-reasons {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .social-links {
        gap: 28px;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Small tablets and mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 95px;
        flex-direction: column;
        background: rgba(15, 6, 6, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        border-top: 2px solid var(--primary-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

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

    .hero-content {
        padding: 0 20px;
        margin-top: 40px;
    }

    .title-main {
        font-size: 3rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .avatar-img {
        width: 120px;
        height: 120px;
    }

    .avatar-ring {
        width: 140px;
        height: 140px;
        top: -10px;
        left: -10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .team-reasons {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

/* Very small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo {
        width: 35px;
        height: 35px;
    }

    .nav-title {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 0 15px;
        margin-top: 35px;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .avatar-img {
        width: 100px;
        height: 100px;
    }

    .avatar-ring {
        width: 120px;
        height: 120px;
        top: -10px;
        left: -10px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 25px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .social-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Font Styling */
.bf-headline {
    font-family: 'DisplayFont', 'Bangers', 'Impact', 'Arial Black', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced styling for titles */
.title-main,
.section-title,
.nav-title {
    font-family: 'DisplayFont', 'Bangers', 'Impact', 'Arial Black', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Sub-headline styling */
.title-sub,
.countdown-label,
.hero-subtitle {
    font-family: 'AccentFont', 'Righteous', 'Orbitron', 'Arial', sans-serif;
    font-weight: normal;
    letter-spacing: 1px;
}

/* Body text */
body,
p,
.hero-description,
.content-card p {
    font-family: 'BodyFont', 'Fredoka One', 'Comic Neue', 'Arial', sans-serif;
}

/* Additional glow effects */
.glow-green {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.text-glow-green {
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

/* Pulsing animation for special elements */
@keyframes pulse-green {
    0% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 107, 53, 1), 0 0 30px rgba(255, 140, 66, 0.5); }
    100% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
}

.pulse-green {
    animation: pulse-green 2s infinite;
}

/* Live button styling and animations */
.cta-button {
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

/* Live button styling */
.cta-button.live {
    background: #ff4444 !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    animation: livePulse 2s infinite;
}

.cta-button.live:hover {
    background: #cc0000 !important;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.7);
    transform: translateY(-2px);
}

/* Live pulse animation */
@keyframes livePulse {
    0% {
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.8);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    }
}

/* Icons styling for consistency */
.fa-check-circle,
.fa-money-bill {
    color: var(--primary-color);
}

.content-card h4 {
    color: var(--text-accent);
    font-family: var(--font-primary);
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.content-card h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* PWA and Foldable Device Support */
@media (display-mode: standalone) {
    /* Styles when running as PWA */
    body {
        user-select: none; /* Prevent text selection in app mode */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .navbar {
        padding-top: env(safe-area-inset-top); /* Handle notches */
    }
    
    /* Remove scrollbars in app mode */
    ::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }
}

/* Foldable Device Support - Galaxy Z Fold */
@media (max-width: 673px) {
    /* Folded state - narrow screen */
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (min-width: 674px) and (max-width: 1079px) {
    /* Unfolded state - tablet-like */
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1080px) {
    /* Fully unfolded - desktop-like */
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content {
        padding: 120px 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Screen spanning for dual-screen foldables */
@media (spanning: single-fold-vertical) {
    .container {
        max-width: none;
        margin: 0;
        padding: 0 20px;
    }
    
    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-content {
        grid-column: span 1;
    }
}

/* Orientation changes for foldables */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-content {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

/* Touch optimizations for mobile app */
@media (pointer: coarse) {
    .nav-link,
    .btn,
    .social-link,
    .cta-button {
        min-height: 44px; /* Minimum touch target size */
        min-width: 44px;
        padding: 12px 16px;
    }
    
    .nav-toggle {
        padding: 12px;
        min-height: 44px;
        min-width: 44px;
    }
    
    .content-card {
        padding: 25px;
    }
    
    /* Larger tap targets for mobile */
    .team-btn {
        min-height: 44px;
        padding: 12px 20px;
    }
}

/* Prevent zoom on input focus in PWA */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* High DPI display support */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
    .logo,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Ambient light adaptation for OLED displays */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #000000;
        --bg-dark: #0a0a0a;
        --bg-darker: #050505;
    }
}

/* Reduce motion for accessibility and battery */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .pulse-green,
    .cta-button.live {
        animation: none;
    }
}

/* Exclusive Subscriber Emotes Styles */
.emotes-section {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}

.emotes-section h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.emotes-grid-full,
.emotes-grid-follower,
.emotes-grid-animated {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.emotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.emote-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.emote-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.emote-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.5rem;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.emote-item:hover .emote-image {
    transform: scale(1.1);
}

/* Responsive adjustments for emotes */
@media (max-width: 768px) {
    .emotes-grid-full,
    .emotes-grid-follower,
    .emotes-grid-animated {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
        padding: 15px;
    }
    
    .emotes-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 10px;
    }
    
    .emote-image {
        width: 70px;
        height: 70px;
    }
    
    .emote-item {
        padding: 1rem;
    }
}

/* Sponsored page game ratings */
.sponsor-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0 10px 0;
    flex-wrap: wrap;
}

.sponsor-rating-label {
    color: var(--text-primary) !important;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 800 !important;
}

.sponsor-verdict {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 12px 0;
    flex-wrap: wrap;
}

.sponsor-verdict-label {
    color: var(--text-primary) !important;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 800 !important;
}

.sponsor-verdict-text {
    color: var(--text-secondary) !important;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
}

.sponsor-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.sponsor-star-filled {
    color: #f1c40f !important;
}

.sponsor-star-empty {
    color: var(--text-secondary) !important;
}
