/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Variables */
    --primary-dark: #1a0a14;
    --primary-red: #c91432;
    --primary-light: #f8f0f4;
    --accent-purple: #8c31a9;
    --accent-gold: #d4af37;
    --gradient-dark: linear-gradient(135deg, #1a0a14 0%, #3a1f33 100%);
    --gradient-glow: linear-gradient(135deg, #c91432 0%, #8c31a9 100%);
    --text-light: #f8f0f4;
    --text-dark: #1a0a14;
    --card-bg: rgba(26, 10, 20, 0.7);
    --overlay-dark: rgba(26, 10, 20, 0.8);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

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

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

a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.cta-button, .play-button, button {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--gradient-glow);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(201, 20, 50, 0.4);
}

.cta-button:hover, .play-button:hover, button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(201, 20, 50, 0.6);
}

/* Header Styles */
header {
    position: relative;
    padding: var(--spacing-md) 0;
    background: rgba(26, 10, 20, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: var(--spacing-md);
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Section Styles */
section {
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-glow);
}

.section-header p {
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(201, 20, 50, 0.3);
    padding-top: var(--spacing-xl);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md) var(--spacing-xl);
}

.footer-logo img {
    height: 80px;
    margin-bottom: var(--spacing-md);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-gold);
}

.footer-links ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-gold);
}

.footer-newsletter p {
    margin-bottom: var(--spacing-sm);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.newsletter-form button {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--spacing-xs) var(--spacing-sm);
}

.footer-bottom {
    text-align: center;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .footer-content > div {
        flex-basis: 45%;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--primary-dark);
        padding: var(--spacing-xl) var(--spacing-md);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 var(--spacing-md) 0;
    }
    
    .footer-content > div {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    .section-header h2:after {
        width: 60px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

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

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

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Floating elements animation */
.floating-element {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}