/* Dark Ambient Aesthetic - Immersive & Professional */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&family=Syne:wght@400;600;700;800&display=swap');

:root {
    --primary-dark: #000000;
    --secondary-dark: #0a0a0a;
    --card-dark: #111111;
    --accent-cyan: #7B9FD4;
    --accent-dim: #4A6FA5;
    --glow-cyan: rgba(123, 159, 212, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-dim: #555555;
    --border-subtle: rgba(255, 255, 255, 0.06);
}

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

body {
    background: var(--primary-dark);
    color: var(--text-primary);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: pageTransitionFadeIn 0.4s ease-in-out;
}

@keyframes pageTransitionFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Subtle ambient background glow */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 0%, rgba(123, 159, 212, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(123, 159, 212, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Subtle floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: floatSlow 20s infinite ease-in-out;
}

@keyframes floatSlow {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 0.1;
    }
    85% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--text-dim);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Subtle accent text - no annoying glow */
.glow-text {
    color: var(--accent-cyan);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Clean, professional cards with proper spacing */
.glass-card {
    background: var(--card-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: rgba(123, 159, 212, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.blog-card-link {
    cursor: pointer;
}

.blog-card-link:hover {
    border-color: rgba(123, 159, 212, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Clean gradient border for special cards */
.gradient-border {
    border: 1px solid var(--accent-cyan);
    background: var(--card-dark);
    border-radius: 12px;
    padding: 2.5rem;
}

/* Clean, professional buttons with proper spacing */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--primary-dark);
    background: var(--accent-cyan);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: #9BB8E0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 159, 212, 0.25);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--accent-cyan);
    background: transparent;
    border: 1px solid rgba(123, 159, 212, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    background: rgba(123, 159, 212, 0.05);
    transform: translateY(-2px);
}

/* Faster fade-in for key elements only */
.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

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

.fade-in-delay-1 {
    animation: fadeIn 0.5s ease-out 0.1s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.5s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.5s ease-out 0.3s forwards;
    opacity: 0;
}

/* Slide in animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Modern, elevated header with fixed height */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(123, 159, 212, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

nav > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

nav .text-xl,
nav .text-2xl {
    font-size: 1.75rem;
    letter-spacing: -0.03em;
    font-weight: 800;
}

/* Navbar Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    object-fit: contain;
    transition: all 0.3s ease;
    min-height: 40px;
    text-decoration: none !important;
}

.logo-container a:hover {
    text-decoration: none !important;
}

.logo-container a::after {
    display: none !important;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    min-height: 40px;
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Responsive navbar fixes */
@media (max-width: 1280px) {
    nav ul {
        gap: 1.5rem !important;
    }
    
    nav ul li a {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .navbar-logo {
        height: 45px;
        min-height: 45px;
    }
    
    nav ul {
        gap: 1.2rem !important;
    }
    
    nav ul li a {
        font-size: 14px;
    }
}

nav ul {
    gap: 3rem;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Modern navigation links with smooth effects */
nav a {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
    letter-spacing: 0.01em;
}

/* Sleek underline effect */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), #9BB8E0);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px 3px 0 0;
}

nav a:hover {
    color: var(--accent-cyan);
}

nav a:hover::after {
    width: 100%;
}

/* Active link state */
nav a.text-cyan-400,
nav a[class*="text-cyan"] {
    color: var(--accent-cyan);
}

nav a.text-cyan-400::after,
nav a[class*="text-cyan"]::after {
    width: 100%;
}

/* Section headers with proper spacing */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 1.5rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* Image hover effects */
.image-hover {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-hover img {
    transition: transform 0.5s ease;
}

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

.image-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 23, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-hover:hover::after {
    opacity: 1;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(45, 212, 191, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-cyan);
    animation: spin 1s linear infinite;
}

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

/* Clean embed placeholders */
.embed-placeholder {
    background: var(--card-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.embed-icon {
    font-size: 4rem;
    color: var(--accent-dim);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

/* Modern form styles with clean design */
label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Space Grotesk', sans-serif;
}

input, textarea, select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.5;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

input:hover, textarea:hover, select:hover {
    border-color: rgba(123, 159, 212, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(123, 159, 212, 0.1);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300e5cc' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

textarea {
    resize: vertical;
    min-height: 180px;
    line-height: 1.7;
    font-size: 15px;
}

/* Form container spacing */
.form-group {
    margin-bottom: 28px;
}

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

/* Responsive utilities */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
}

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

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 4px;
}

/* Spacing utilities - proper padding everywhere */
section {
    padding: 6rem 0;
}

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

/* Typography utilities */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

/* Hero section with background - Theatrical & Cinematic */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
}

/* Theatrical Hero Title */
.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(123, 159, 212, 0.3);
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(123, 159, 212, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(123, 159, 212, 0.6));
    }
}

/* Cinematic CTA Button */
.hero-cta {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(123, 159, 212, 0.2);
}

/* Theatrical Social Icons */
.social-icons-hero {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon-hero {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.social-icon-hero i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.social-icon-hero[data-platform="email"] i { color: rgba(255, 255, 255, 0.85); }
.social-icon-hero[data-platform="spotify"] i { color: #8ED9A8; }
.social-icon-hero[data-platform="instagram"] i { color: #E8A4B4; }
.social-icon-hero[data-platform="tiktok"] i { color: #A8E6E6; }
.social-icon-hero[data-platform="youtube"] i { color: #E8A8A8; }
.social-icon-hero[data-platform="soundcloud"] i { color: #E8C4A8; }
.social-icon-hero[data-platform="submithub"] i { color: #966fd6; }
.social-icon-hero[data-platform="discord"] i { color: #B8C4E8; }

.social-icon-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-cyan);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-hero:hover {
    transform: translateY(-8px) scale(1.15);
    border-color: var(--accent-cyan);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(123, 159, 212, 0.3);
}

.social-icon-hero:hover::before {
    opacity: 0.15;
}

.social-icon-hero:hover i {
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.social-icon-hero[data-platform="spotify"]:hover {
    box-shadow: 0 20px 40px rgba(142, 217, 168, 0.3), 0 0 60px rgba(142, 217, 168, 0.2);
}

.social-icon-hero[data-platform="instagram"]:hover {
    box-shadow: 0 20px 40px rgba(232, 164, 180, 0.3), 0 0 60px rgba(232, 164, 180, 0.2);
}

.social-icon-hero[data-platform="youtube"]:hover {
    box-shadow: 0 20px 40px rgba(232, 168, 168, 0.3), 0 0 60px rgba(232, 168, 168, 0.2);
}

.social-icon-hero[data-platform="soundcloud"]:hover {
    box-shadow: 0 20px 40px rgba(232, 196, 168, 0.3), 0 0 60px rgba(232, 196, 168, 0.2);
}

.social-icon-hero[data-platform="tiktok"]:hover {
    box-shadow: 0 20px 40px rgba(168, 230, 230, 0.3), 0 0 60px rgba(168, 230, 230, 0.2);
}

.social-icon-hero[data-platform="email"]:hover {
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.2);
}

.social-icon-hero[data-platform="submithub"]:hover {
    box-shadow: 0 20px 40px rgba(196, 184, 232, 0.3), 0 0 60px rgba(196, 184, 232, 0.2);
}

.social-icon-hero[data-platform="discord"]:hover {
    box-shadow: 0 20px 40px rgba(184, 196, 232, 0.3), 0 0 60px rgba(184, 196, 232, 0.2);
}

/* Staggered animation entrance */
.social-icon-hero:nth-child(1) { animation: iconFloat 3s ease-in-out 0s infinite; }
.social-icon-hero:nth-child(2) { animation: iconFloat 3s ease-in-out 0.2s infinite; }
.social-icon-hero:nth-child(3) { animation: iconFloat 3s ease-in-out 0.4s infinite; }
.social-icon-hero:nth-child(4) { animation: iconFloat 3s ease-in-out 0.6s infinite; }
.social-icon-hero:nth-child(5) { animation: iconFloat 3s ease-in-out 0.8s infinite; }
.social-icon-hero:nth-child(6) { animation: iconFloat 3s ease-in-out 1s infinite; }
.social-icon-hero:nth-child(7) { animation: iconFloat 3s ease-in-out 1.2s infinite; }
.social-icon-hero:nth-child(8) { animation: iconFloat 3s ease-in-out 1.4s infinite; }

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

/* Clean, modern spacing */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

/* Modern Video Slider */
.video-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
}

.video-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.video-slide.active {
    display: block;
    opacity: 1;
    position: relative;
}

.video-slide.fade-out {
    animation: fadeOut 0.4s ease forwards;
}

.video-slide.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-slide.active .video-wrapper {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(123, 159, 212, 0.3);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(123, 159, 212, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(123, 159, 212, 0.2);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dot:hover {
    background: rgba(123, 159, 212, 0.3);
    transform: scale(1.2);
}

.dot.active {
    background: var(--accent-cyan);
    border-color: rgba(123, 159, 212, 0.3);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(123, 159, 212, 0.4);
}

.dot.active::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(123, 159, 212, 0.2);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Newsletter Form */
.newsletter-form input[type="email"]:hover {
    border-color: rgba(123, 159, 212, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 3px rgba(123, 159, 212, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Blog Search */
#blog-search:hover {
    border-color: rgba(123, 159, 212, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

#blog-search:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(123, 159, 212, 0.1);
}

#blog-search::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Category Buttons */
.category-btn:hover {
    background: rgba(123, 159, 212, 0.1) !important;
    border-color: rgba(123, 159, 212, 0.5) !important;
    color: var(--accent-cyan) !important;
    transform: translateY(-2px);
}

.category-btn.active {
    background: rgba(123, 159, 212, 0.15) !important;
    border-color: var(--accent-cyan) !important;
    color: var(--accent-cyan) !important;
}

/* Blog Post Filtering Animation */
.blog-post-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.blog-post-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .video-slider-container {
        padding: 0 60px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
}

/* Kit Card Hover Effects */
.kit-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.kit-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(123, 159, 212, 0.4), 0 0 60px rgba(123, 159, 212, 0.2);
    transform: translateY(-4px);
}

/* BeatStars Embed - No Hover Effects */
.beatstars-container:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Releases Page - No Hover Effects */
.releases-embed:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Social Media Cards - Smooth Hover Effects */
.social-embed-side:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 0 30px rgba(123, 159, 212, 0.3) !important;
}

.social-embed-center:hover {
    transform: translateY(-40px) !important;
    box-shadow: 0 0 30px rgba(123, 159, 212, 0.3) !important;
}

@keyframes beatstarsPulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
}

/* Hero CTA Buttons */
.cta-button-hero:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 24px rgba(123, 159, 212, 0.2);
    transform: translateY(-2px);
}

/* Free Download Banner */
.free-download-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    border-top: 1px solid rgba(123, 159, 212, 0.2);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8), 0 0 60px rgba(123, 159, 212, 0.1);
    backdrop-filter: blur(20px);
    animation: slideUpBanner 0.5s ease-out;
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownBanner {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.banner-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.banner-close:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.banner-text {
    flex: 1;
}

.banner-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: 'Syne', sans-serif;
    text-shadow: 0 0 20px rgba(123, 159, 212, 0.3);
}

.banner-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.banner-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.banner-cta {
    padding: 14px 36px;
    background: rgba(123, 159, 212, 0.15);
    border: 1.5px solid rgba(123, 159, 212, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(123, 159, 212, 0.1);
}

.banner-cta:hover {
    background: rgba(123, 159, 212, 0.25);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(123, 159, 212, 0.3);
    transform: translateY(-2px);
}

.banner-secondary {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Mobile Responsive Banner */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px 24px;
        gap: 20px;
    }
    
    .banner-actions {
        width: 100%;
        align-items: stretch;
    }
    
    .banner-cta {
        width: 100%;
        text-align: center;
    }
    
    .banner-close {
        top: 8px;
        right: 8px;
    }
}