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

body {
    font-family: 'Poppins', sans-serif;
    background: #1a0033;
    color: #e8d5f0;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c003e 0%, #512da8 50%, #673ab7 100%);
    z-index: -1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.main-header {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(74, 20, 140, 0.3);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(186, 104, 200, 0.3);
}

.site-logo {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e1bee7;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(186, 104, 200, 0.6);
}

.site-tagline {
    color: #ce93d8;
    font-size: 1.2rem;
    font-weight: 300;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.hero-box {
    background: rgba(103, 58, 183, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(186, 104, 200, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
}

.hero-box h2 {
    color: #ba68c8;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.hero-box p {
    color: #f3e5f5;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stream-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stream-btn {
    background: rgba(103, 58, 183, 0.3);
    border: 2px solid #7b1fa2;
    border-radius: 15px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.stream-btn:hover {
    background: rgba(156, 39, 176, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(186, 104, 200, 0.5);
    border-color: #ba68c8;
}

.btn-emoji {
    font-size: 3rem;
}

.btn-text {
    color: #f3e5f5;
    font-size: 1.2rem;
    font-weight: 600;
}

.live-tag {
    background: #e040fb;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

.main-article {
    background: rgba(74, 20, 140, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(186, 104, 200, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
}

.main-article section {
    margin-bottom: 2.5rem;
}

.main-article h2 {
    color: #ba68c8;
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(186, 104, 200, 0.3);
    padding-bottom: 0.8rem;
}

.main-article h3 {
    color: #ce93d8;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.main-article p {
    color: #f3e5f5;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.main-article ul {
    list-style: none;
    padding: 0;
}

.main-article li {
    background: rgba(103, 58, 183, 0.2);
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    border-left: 4px solid #ba68c8;
    color: #f3e5f5;
}

.main-article strong {
    color: #e1bee7;
    font-weight: 600;
}

.article-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 2rem auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(186, 104, 200, 0.3);
}

.steps {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.step-item {
    background: rgba(103, 58, 183, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #ba68c8;
    color: #f3e5f5;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .stream-buttons {
        grid-template-columns: 1fr;
    }
    
    .site-logo {
        font-size: 2.5rem;
    }
}