/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
}

/* Navigation */
nav {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #ff69b4;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #ff69b4;
    border-bottom: 2px solid #ff69b4;
}

nav a.active {
    color: #ff69b4;
    border-bottom: 2px solid #ff69b4;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section (Home Page) */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 80px;
    background: linear-gradient(45deg, #ff69b4, #00ffff, #ff69b4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
    margin-bottom: 20px;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tagline {
    font-size: 24px;
    color: #888;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff69b4;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ff69b4;
}

/* Sections */
section {
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 40px;
}

h1 {
    font-size: 48px;
    color: #ff69b4;
    margin-bottom: 30px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.video-card video {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.video-card h3 {
    color: #ff69b4;
    margin-bottom: 10px;
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 30px auto;
}

.contact-links a {
    padding: 20px;
    background-color: #2a2a2a;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-links a:hover {
    background-color: #ff69b4;
    color: #000;
    border-color: #ff69b4;
    transform: scale(1.05);
}