* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background: #0e0e0e;
    color: white;
}
a {
    text-decoration: none;
}
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background: rgba(15,15,15,0.95);
    padding: 25px;
    transition: 0.3s;
    z-index: 1000;
}
.logo {
    text-align: center;
}
.logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(155,89,182,0.4);
}
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
nav ul {
    list-style: none;
}
nav ul li {
    margin: 8px 0;
}
nav ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: #ccc;
    transition: 0.2s;
}
nav ul li a:hover {
    background: rgba(255,79,216,0.12);
    color: #fff;
    box-shadow: 0 0 12px rgba(155,89,182,0.4);
    transform: translateX(5px);
}
main {
    margin-left: 260px;
}
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.8;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #ff4fd8, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255,79,216,0.4);
}
.hero p {
    margin-top: 10px;
    color: #ccc;
}
.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(90deg, #ff4fd8, #9b59b6);
    border-radius: 12px;
    color: white;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(255,79,216,0.3);
    transition: 0.2s;
}
.btn:hover {
    transform: scale(1.05);
}
.twitch-btn {
    background: linear-gradient(90deg, #9146ff, #772ce8);
    box-shadow: 0 0 15px rgba(145,70,255,0.4);
}
footer {
    margin-left: 260px;
    text-align: center;
    padding: 20px;
    color: #888;
}
@media(max-width:768px){
    header {
        left: -260px;
    }
    header.active {
        left: 0;
    }
    .menu-toggle {
        display: block;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1100;
    }
    main, footer {
        margin-left: 0;
    }
    .bg-video {
        opacity: 0.5;
    }
    .hero h1 {
        font-size: 2rem;
    }
}