/* General styling for cyberpunk aesthetic */
body {
    background-color: #0d0d1a;
    color: #e0e0e0;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    background: linear-gradient(90deg, #ff00ff, #00b7eb);
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #00b7eb;
    box-shadow: 0 0 20px rgba(0, 183, 235, 0.7);
}

header h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc, 0 0 20px #ff00ff;
}

header .tagline {
    font-size: 1.2rem;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}

/* Navigation styling */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: #00ffcc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ffcc;
}

nav ul li a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

/* Hero section */
#hero {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0, 183, 235, 0.1);
    border: 1px solid #00b7eb;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 183, 235, 0.5);
}

#hero h2 {
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
}

#hero p {
    color: #e0e0e0;
}

.neon-button {
    display: inline-block;
    padding: 10px 20px;
    background: none;
    border: 2px solid #ff00ff;
    color: #00ffcc;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ffcc;
    box-shadow: 0 0 10px #ff00ff;
}

.neon-button:hover {
    background: #ff00ff;
    color: #0d0d1a;
    box-shadow: 0 0 20px #ff00ff, 0 0 30px #00ffcc;
}

/* Clips section */
#clips {
    padding: 20px;
    text-align: center;
}

#clips h2 {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.clip-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.clip {
    background: rgba(0, 183, 235, 0.1);
    border: 1px solid #00b7eb;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 183, 235, 0.5);
}

.clip video {
    width: 100%;
    border-radius: 5px;
}

.clip p {
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

/* About section */
#about {
    padding: 20px;
    text-align: center;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid #ff00ff;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

#about h2 {
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
}

/* Connect section */
#connect {
    padding: 20px;
    text-align: center;
}

#connect h2 {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(90deg, #00b7eb, #ff00ff);
    color: #0d0d1a;
    text-shadow: 0 0 5px #00ffcc;
    border-top: 2px solid #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
}