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

:root {
    --bg-primary: #07060c;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.08);
    
    --neon-purple: hsl(270, 100%, 65%);
    --neon-cyan: hsl(190, 100%, 50%);
    --neon-glow: 0 0 30px rgba(168, 85, 247, 0.4);
    
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background glow elements */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.orb-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
}

.orb-2 {
    bottom: 10%;
    left: -200px;
    width: 600px;
    height: 600px;
    background: var(--neon-cyan);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background: rgba(7, 6, 12, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.btn-glow {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--neon-glow);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.6);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 80vh;
    padding: 0 5%;
    gap: 60px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-image-container {
    position: relative;
}

.hero-image-container img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cinema / Media Watcher */
.media-section {
    padding: 100px 5%;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.cinema-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 24px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.video-player-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-player-wrapper img.placeholder-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.play-overlay:hover {
    background: var(--neon-purple);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    margin-left: 5px;
}

.media-queue {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    max-height: 500px;
}

.queue-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: background 0.3s;
}

.queue-item:hover, .queue-item.active {
    background: var(--bg-surface-hover);
    border-left: 3px solid var(--neon-cyan);
}

.queue-thumb {
    width: 80px;
    height: 50px;
    border-radius: 6px;
    background: #222;
    object-fit: cover;
}

.queue-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.queue-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* NFT / Interactive Content Grid */
.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.nft-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    transition: transform 0.3s, border-color 0.3s;
}

.nft-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
}

.nft-image {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 16px;
}

.nft-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.nft-price {
    font-family: var(--font-display);
    color: var(--neon-cyan);
    font-weight: 700;
}

.badge {
    background: rgba(168, 85, 247, 0.2);
    color: var(--neon-purple);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
}

@media (max-width: 1024px) {
    .hero, .cinema-container {
        grid-template-columns: 1fr;
    }
}
