/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e1e1e1;
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #9147ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e1e1e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #9147ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #9147ff, #00d4ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e1e1e1;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.profile-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #9147ff;
    box-shadow: 0 0 30px rgba(145, 71, 255, 0.5);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #0f1419;
}

.status-indicator.live {
    background: #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e1e1e1, #9147ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(45deg, #9147ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #9147ff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #b8b8b8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #9147ff, #7c3aed);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(145, 71, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e1e1e1;
    border: 2px solid #9147ff;
}

.btn-secondary:hover {
    background: #9147ff;
    color: white;
    transform: translateY(-2px);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(145, 71, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icons i:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-icons i:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-icons i:nth-child(4) { top: 30%; right: 30%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e1e1e1, #9147ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: rgba(26, 26, 46, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e1e1e1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(145, 71, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(145, 71, 255, 0.2);
}

.stat-item h3 {
    font-size: 2rem;
    color: #9147ff;
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.about-details h3 {
    color: #9147ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-details ul {
    list-style: none;
}

.about-details li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-details i {
    color: #00ff88;
    font-size: 1.1rem;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #9147ff;
    box-shadow: 0 20px 40px rgba(145, 71, 255, 0.3);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Live Status Section */
.live-status {
    background: rgba(26, 26, 46, 0.5);
}

.status-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.status-card {
    background: linear-gradient(135deg, rgba(145, 71, 255, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(145, 71, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9147ff, #00d4ff, #9147ff);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.status-indicator-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 4px solid rgba(145, 71, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.status-indicator-large.live {
    background: radial-gradient(circle, #00ff88, #00cc66);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    animation: livePulse 2s infinite;
}

.status-indicator-large.offline {
    background: radial-gradient(circle, #666, #444);
    box-shadow: 0 0 20px rgba(102, 102, 102, 0.3);
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
    }
}

.status-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e1e1e1, #9147ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-content p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
}

.status-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(145, 71, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(145, 71, 255, 0.1);
}

.info-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #9147ff;
    margin-bottom: 0.5rem;
}

.info-item span {
    color: #e1e1e1;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Recent Streams */
.recent-streams {
    background: linear-gradient(135deg, rgba(145, 71, 255, 0.05), rgba(0, 212, 255, 0.02));
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(145, 71, 255, 0.1);
}

.recent-streams h3 {
    color: #9147ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.stream-history {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stream-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(145, 71, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(145, 71, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stream-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(145, 71, 255, 0.2);
    border-color: #9147ff;
}

.stream-thumbnail {
    position: relative;
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.stream-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(145, 71, 255, 0.9);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.stream-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stream-details h4 {
    color: #e1e1e1;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.stream-details p {
    color: #b8b8b8;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.stream-date {
    color: #9147ff;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Stream Info Section */
.stream-info {
    background: rgba(26, 26, 46, 0.3);
}

.stream-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stream-text h2 {
    font-size: 2.2rem;
    color: #e1e1e1;
    margin-bottom: 1.5rem;
}

.stream-text p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
}

.stream-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(145, 71, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(145, 71, 255, 0.2);
}

.feature i {
    color: #9147ff;
    font-size: 1.3rem;
}

.twitch-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #9147ff, #7c3aed);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 200px;
}

.twitch-link:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(145, 71, 255, 0.4);
}

.twitch-link i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.twitch-link span {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Contact Section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link.twitch {
    background: linear-gradient(135deg, #9147ff, #7c3aed);
}

.social-link.discord {
    background: linear-gradient(135deg, #5865f2, #4752c4);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #1991db);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-link span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #0f1419;
    padding: 2rem 0;
    border-top: 1px solid rgba(145, 71, 255, 0.2);
}

.footer-content {
    text-align: center;
    color: #b8b8b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 20, 25, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stream-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        min-width: 100px;
        padding: 1.5rem;
    }

    .status-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .status-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .status-actions {
        flex-direction: column;
        align-items: center;
    }

    .status-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        justify-content: center;
    }
}

/* Scroll animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: slideInUp 0.8s ease-out;
}
