:root {
    --bg-main: #0b0b0e;
    --bg-secondary: #16161c;
    --accent-purple: #9146FF;
    --accent-blue: #00e5ff;
    --text-primary: #ffffff;
    --text-secondary: #a8a8b3;
    --glass-bg: rgba(22, 22, 28, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand span {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(145, 70, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    text-align: center;
    margin-bottom: 3rem;
    z-index: 1;
}

.hero-logo {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 40px rgba(145, 70, 255, 0.6);
    border: 2px solid var(--glass-border);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(145, 70, 255, 0.5);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.twitch-embed-container {
    width: 90%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(145, 70, 255, 0.2);
    border: 1px solid var(--glass-border);
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 100px 5%;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 0.8;
    max-width: 400px;
    position: relative;
    border-radius: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.5s;
    display: block;
}

.about-image:hover img {
    transform: scale(1.02);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue));
    filter: blur(40px);
    opacity: 0.3;
    z-index: 1;
    border-radius: 20px;
    transition: opacity 0.5s;
}

.about-image:hover .image-glow {
    opacity: 0.5;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Socials Section */
.socials-section {
    padding: 100px 5%;
    background-color: var(--bg-secondary);
    text-align: center;
}

.socials-section h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    display: block;
    width: 280px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(145, 70, 255, 0.3);
}

.social-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
    z-index: 0;
}

.social-card:hover .card-bg {
    transform: scale(1.1);
}

.card-inner {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-logo {
    height: 32px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.card-inner span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-top: 10px;
}

/* Specific glows */
.twitch:hover { box-shadow: 0 20px 40px rgba(145, 70, 255, 0.4); }
.discord:hover { box-shadow: 0 20px 40px rgba(88, 101, 242, 0.4); }
.instagram:hover { box-shadow: 0 20px 40px rgba(225, 48, 108, 0.4); }
.youtube:hover { box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4); }
.wirhoerenzu:hover { box-shadow: 0 20px 40px rgba(0, 229, 255, 0.4); }

/* Extension Section */
.extension-section {
    padding: 100px 5%;
    text-align: center;
}

.extension-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.extension-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Impressum Section */
.impressum-section {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--bg-main);
    border-top: 1px solid var(--glass-border);
}

.impressum-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.impressum-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    background: var(--bg-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none; /* simple mobile state, can be replaced with a hamburger menu later */
    }
    
    .twitch-embed-container {
        width: 100%;
        border-radius: 0;
    }
}
