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

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

:root {
    --primary-color: #4338ca;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --bg-dark: #0f0f23;
    --bg-darker: #0a0a1a;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: #27272a;
    --gradient-primary: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow-primary: 0 10px 40px rgba(67, 56, 202, 0.3);
    --shadow-secondary: 0 5px 20px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    border: none;
    background: transparent;
    padding: 8px;
}

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(99, 102, 241, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(245, 158, 11, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.title-line {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(67, 56, 202, 0.5); }
    to { text-shadow: 0 0 20px rgba(67, 56, 202, 0.8); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 0 0 300px;
}

.equalizer {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 8px;
    height: 200px;
}

.bar {
    width: 20px;
    background: var(--gradient-primary);
    border-radius: 10px 10px 0 0;
    animation: equalizer 1.5s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.3s; }
.bar:nth-child(7) { animation-delay: 0.2s; }
.bar:nth-child(8) { animation-delay: 0.1s; }

@keyframes equalizer {
    0%, 100% { height: 20px; }
    50% { height: 150px; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.scroll-indicator:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 8px;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

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

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bio Section */
.bio {
    padding: 100px 0;
    background: var(--bg-darker);
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-top: 3rem;
    min-height: 500px;
}

.bio-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    min-height: 450px;
}


.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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



.play-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.bio-text {
    display: flex;
    align-items: center;
    height: 100%;
}

.bio-glass-container {
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.15) 0%, rgba(124, 58, 237, 0.10) 100%);
    border: 1px solid rgba(67, 56, 202, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}


.bio-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(67, 56, 202, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.bio-glass-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.3), rgba(124, 58, 237, 0.2));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.bio-description {
    position: relative;
    z-index: 1;
}

.bio-description p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.bio-description p:last-child {
    margin-bottom: 0;
}

.bio-description p:first-child {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.bio-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Stream Section */
.stream {
    padding: 100px 0;
    background: var(--bg-dark);
}

.stream-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.stream-player {
    position: relative;
}

.player-container {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
}

.stream-iframe {
    width: 100%;
    height: 520px; /* 400px + 30% = 520px */
    border: none;
    margin: 0;
    padding: 0;
    transform: none !important; /* Ensure no transforms */
    position: relative;
    z-index: 1; /* Ensure iframe is above any background elements */
}

.stream-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px; /* Reduce height to only cover bottom info area */
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem 2rem;
    display: flex;
    align-items: flex-end;
    pointer-events: none; /* Allow clicks to pass through */
}

.stream-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    pointer-events: auto; /* Enable clicks for interactive elements */
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.track-info {
    display: flex;
    flex-direction: column;
}

.track-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.track-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stream-sidebar {
    display: flex;
    flex-direction: column;
    height: 520px; /* Match player height - 400px + 30% = 520px */
}

.chat-section {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-secondary);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.volume-slider {
    flex: 1;
    height: 5px;
    background: var(--border-color);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.quality-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quality-select {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 5px;
    outline: none;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-message {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0.5rem 0;
}

.username {
    color: #ffffff;
    font-weight: 600;
    margin-right: 0.5rem;
}

.message {
    color: #ffffff;
}

.chat-input {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.chat-text {
    flex: 1;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    outline: none;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.chat-text:focus {
    border-color: var(--primary-color);
}

.chat-send {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.chat-send:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.chat-send:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.5;
}

.chat-send:disabled:hover {
    background: #555;
    transform: none;
}

.chat-text:disabled {
    background: #2a2a2a;
    cursor: not-allowed;
    opacity: 0.5;
}

.chat-nickname-setup {
    margin-top: 1rem;
    text-align: center;
}

.set-nickname-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: none;
}

.set-nickname-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.change-nickname-btn {
    background: #555;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    display: none;
}

.change-nickname-btn:hover {
    background: #666;
    transform: translateY(-1px);
}

.welcome-message {
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border-left: 3px solid #ff4444;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
}

.system-message {
    background: rgba(0, 150, 255, 0.1);
    border-left: 3px solid #0096ff;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    font-style: italic;
}

.system-message .username {
    color: #0096ff;
    font-weight: bold;
}

.system-message .message {
    color: #ffffff;
}

.timestamp {
    font-size: 0.7rem;
    color: #888;
    margin-left: 0.5rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

#nickname-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 10px;
    background: var(--bg-darker);
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}

#nickname-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 100px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #555;
    color: white;
}

.btn-secondary:hover {
    background: #666;
    transform: translateY(-1px);
}

/* Sets Section */
.sets {
    padding: 100px 0;
    background: var(--bg-darker);
}

.sets-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.youtube-embed {
    max-width: 800px;
    margin: 0 auto;
}

.youtube-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.set-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.set-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.set-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.set-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.set-image:hover .play-overlay {
    opacity: 1;
}

.set-image:hover img {
    transform: scale(1.1);
}

.play-overlay i {
    font-size: 3rem;
    color: white;
}

.set-info {
    padding: 1.5rem;
}

.set-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.set-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.set-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.channel-info {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.channel-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.channel-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.channel-stats .stat i {
    font-size: 2rem;
    color: var(--primary-color);
}

.btn-youtube {
    background: #ff0000;
    color: white;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-darker);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4);
}

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

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-darker);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-visual {
        flex: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 2rem;
    }
    
    .bio-glass-container {
        padding: 2rem;
    }
    
    .bio-description p {
        font-size: 1rem;
        text-align: left;
    }
    
    .bio-stats {
        justify-content: center;
    }
    
    .stream-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stream-sidebar {
        height: auto;
    }
    
    .chat-section {
        height: 390px; /* 300px + 30% = 390px */
    }
    
    .sets-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stream-iframe {
        height: 280px !important;
        min-height: 280px;
        transform: none !important;
    }
    
    .stream-overlay {
        height: 80px; /* Smaller overlay on mobile */
        padding: 0.5rem 1rem;
    }
    
    .youtube-container {
        padding-bottom: 75%;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* CTA Banner Section */
.cta-banner {
    padding: 4rem 0;
    background: var(--bg-dark);
}

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

.banner-image {
    position: relative;
    width: 100%;
    height: 480px; /* 400px + 20% = 480px */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-overlay {
    /* Overlay removed - banner is now just clickable image */
    display: none;
}

.banner-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.banner-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.banner-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-secondary);
}

.banner-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.banner-buttons .btn-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
}

.banner-buttons .btn-youtube:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.banner-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.banner-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

/* New banner header styles */
.banner-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 20px;
}

.banner-header .banner-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.banner-header .banner-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.banner-image-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.banner-image-link:hover {
    transform: scale(1.02);
}

.banner-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 215, 0, 0.9);
    color: var(--bg-dark);
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.banner-cta:hover {
    background: rgba(255, 215, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.banner-cta i {
    font-size: 1.5rem;
}

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

/* Responsive Banner */
@media (max-width: 768px) {
    .cta-banner {
        padding: 3rem 0;
    }
    
    .banner-image {
        height: 420px; /* 350px + 20% = 420px */
        border-radius: 10px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .banner-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 2rem 0;
    }
    
    .banner-image {
        height: 360px; /* 300px + 20% = 360px */
        border-radius: 8px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-content {
        padding: 1.5rem;
    }
    
    /* Mobile banner header adjustments */
    .banner-header .banner-title {
        font-size: 2rem;
    }
    
    .banner-header .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-cta {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        gap: 0.75rem;
    }
    
    .banner-cta i {
        font-size: 1.2rem;
    }
}

/* Mobile-specific chat and modal fixes */
@media (max-width: 768px) {
    /* Modal improvements for mobile */
    .modal {
        padding: 20px;
        align-items: flex-start;
        padding-top: 50px;
    }
    
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 0;
        padding: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.25rem;
    }
    
    #nickname-input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    /* Chat section mobile improvements */
    .stream-content {
        flex-direction: column;
    }
    
    .stream-sidebar {
        width: 100%;
        margin-top: 1.5rem;
        height: auto;
    }
    
    .chat-section {
        min-height: 450px;
        max-height: 600px;
        height: auto;
    }
    
    .chat-messages {
        min-height: 320px;
        max-height: 400px;
        flex: 1;
    }
    
    .chat-nickname-setup {
        margin-top: 0.75rem;
    }
    
    .set-nickname-btn,
    .change-nickname-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        margin: 0;
        margin-bottom: 0.5rem;
    }
    
    .change-nickname-btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    /* Chat input improvements */
    .chat-input {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .chat-text {
        flex: 1;
        min-width: 0;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .chat-send {
        flex-shrink: 0;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    /* Additional mobile fixes for very small screens */
    .modal {
        padding: 10px;
        padding-top: 30px;
    }
    
    .modal-content {
        padding: 1.25rem;
    }
    
    .banner-header .banner-title {
        font-size: 1.75rem;
    }
    
    .banner-header .banner-subtitle {
        font-size: 0.9rem;
    }
    
    .banner-cta {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
}

