/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9146ff;
    --secondary-color: #ff0000;
    --bg-dark: #0e0e10;
    --bg-card: #18181b;
    --text-primary: #efeff1;
    --text-secondary: #adadb8;
    --accent-purple: #772ce8;
    --accent-red: #e91916;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
nav {
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(145, 70, 255, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav a:hover, nav a.active {
    background: rgba(145, 70, 255, 0.2);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Typography */
h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Content Containers */
.content-container {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(145, 70, 255, 0.2);
    margin-bottom: 2rem;
}

.embed-container {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: var(--bg-dark);
}

.embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Info Boxes */
.info-box {
    background: rgba(145, 70, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.info-box h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.info-box p {
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 70, 255, 0.4);
}

.cta-button.secondary {
    background: rgba(145, 70, 255, 0.2);
    color: var(--text-primary);
}

.cta-button.secondary:hover {
    background: rgba(145, 70, 255, 0.3);
}

.cta-button.youtube {
    background: var(--secondary-color);
}

.cta-button.youtube:hover {
    background: var(--accent-red);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Grid Layouts */
.content-categories,
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card,
.skill-card {
    background: rgba(145, 70, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 70, 255, 0.2);
}

.category-card:hover,
.skill-card:hover {
    background: rgba(145, 70, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.category-card h3,
.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.category-card p,
.skill-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About Section Specific */
.about-section {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(145, 70, 255, 0.2);
}

.about-section h2 {
    border-bottom: 3px solid rgba(145, 70, 255, 0.5);
    padding-bottom: 0.5rem;
}

.about-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(145, 70, 255, 0.2);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 70, 255, 0.3);
}

.social-button:hover {
    background: rgba(145, 70, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 70, 255, 0.4);
}

.social-button.twitch {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.social-button.twitch:hover {
    background: var(--accent-purple);
}

.social-button.youtube {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.social-button.youtube:hover {
    background: var(--accent-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    nav ul {
        gap: 1rem;
    }

    .embed-container {
        height: 400px;
    }

    .about-section {
        padding: 1.5rem;
    }

    .container {
        padding: 2rem 1rem;
    }
}

