/* Global Styles */
:root {
    --bg-dark: #050510;
    --bg-card: #121225;
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-blue: #2de2e6;
    --neon-yellow: #fff700;
    --neon-purple: #bc13fe;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(45, 226, 230, 0.1) 0%, transparent 20%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Utilities */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.neon-text {
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
}

.neon-text-blue {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.btn-android {
    background: #3DDC84;
    color: #fff;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-android:hover {
    background: #32b36b;
    box-shadow: 0 0 15px rgba(61, 220, 132, 0.6);
}

.btn-outline {
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: 0 0 10px rgba(255, 247, 0, 0.4);
}

/* Header */
.main-header {
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Adjust based on preference */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.5));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1545128485-c400e7702796?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.8), var(--bg-dark));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.audio-player-container {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
    border: 1px solid rgba(188, 19, 254, 0.5);
}

.live-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: white;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0f0f20);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.neon-title {
    font-size: 2.5rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 247, 0, 0.5);
}

.small-text {
    font-size: 1rem;
    color: var(--neon-pink);
    vertical-align: middle;
    margin-left: 10px;
    text-shadow: none;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

/* App Section */
.app-section {
    padding: 100px 0;
    background: radial-gradient(circle at 30% 50%, rgba(45, 226, 230, 0.05), transparent 50%);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    max-width: 300px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.05);
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

/* DJs Section */
.djs-section {
    padding: 80px 0;
    background: linear-gradient(to top, var(--bg-dark), #0f0f20);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.dj-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.dj-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.dj-card:hover::before {
    transform: scaleX(1);
}

.dj-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.dj-card:hover .dj-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.dj-card h3 {
    font-size: 1.2rem;
    color: white;
    letter-spacing: 1px;
}

/* Footer */
.main-footer {
    background: #020205;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links h3,
.footer-legal h3,
.footer-social h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--neon-pink);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.8rem;
}

.sitemaps {
    margin-top: 10px;
}

.sitemaps a {
    color: #666;
    margin: 0 5px;
}

.sitemaps a:hover {
    color: var(--neon-cyan);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .app-text p {
        margin: 0 auto 30px;
    }

    .djs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 16, 0.95);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .djs-grid {
        grid-template-columns: 1fr;
    }
}