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

:root {
    --bg-primary: #0a0a0a;
    --bg-box: #141414;
    --bg-box-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #ffffff;
    --border: #282828;
    --discord: #5865F2;
    --twitch: #9146FF;
    --youtube: #FF0000;
    --instagram: #E4405F;
    --tiktok: #000000;
    --twitter: #000000;
    --game-dot: #00ff88;
    --glow-color: rgba(0, 255, 136, 0.3);
}

body {
    font-family: 'Space Mono', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
}

/* Remove cursor styles */

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.top-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.middle-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bento-box {
    background: var(--bg-box);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        var(--glow-color) 25%, 
        transparent 50%, 
        var(--glow-color) 75%, 
        transparent 100%);
    background-size: 200% 200%;
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.bento-box:hover {
    background: var(--bg-box-hover);
    border-color: var(--accent);
}

/* Remove generic hover effect for specific boxes */
.bento-box:not(.social-box):hover {
    box-shadow: 'none';
}

.header-box {
    text-align: center;
    padding: 3rem 2rem;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    object-fit: cover;
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.5));
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.8));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.streamer-name-link {
    text-decoration: none;
    display: inline-block;
}

.streamer-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #ffffff 0%, #9146FF 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.streamer-name:hover {
    transform: scale(1.05);
}

@keyframes textShimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.social-media-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-box {
    display: flex;
    flex-direction: column;
}

.about-box h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Discord Box */
.discord-box {
    position: relative;
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.discord-icon {
    width: 40px;
    height: 40px;
    color: var(--discord);
    animation: levitate 3s ease-in-out infinite;
}

@keyframes levitate {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.discord-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.discord-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.discord-button {
    display: inline-block;
    background: var(--discord);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discord-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.discord-button:hover::before {
    width: 300px;
    height: 300px;
}

.discord-button:hover {
    background: #4752c4;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.5);
}

/* Schedule Box */
.schedule-box {
    position: relative;
}

.schedule-box h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon {
    width: 28px;
    height: 28px;
}

.schedule-grid {
    display: grid;
    gap: 0.75rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
}

.schedule-item.regular {
    border-color: rgba(0, 255, 136, 0.3);
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.day {
    font-weight: 700;
}

.time {
    color: var(--game-dot);
    font-weight: 700;
}

.time.spontan {
    color: var(--text-secondary);
    font-style: italic;
}

/* Games Box */
.games-box {
    position: relative;
}

.games-box h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.games-list {
    display: grid;
    gap: 1rem;
}

.game-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.game-item.expanded {
    background: rgba(0, 255, 136, 0.08);
}

.game-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0 0 2rem;
}

.game-item.expanded .game-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.75rem;
}

.game-dot {
    width: 12px;
    height: 12px;
    background: var(--game-dot);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--game-dot), 0 0 20px var(--game-dot);
}

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

/* Social Boxes */
.social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.social-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.social-box span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.social-box:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-box.twitch {
    --glow-color: rgba(145, 70, 255, 0.3);
}

.social-box.twitch:hover {
    border-color: var(--twitch);
}

.social-box.youtube,
.social-box.youtube-uncut {
    --glow-color: rgba(255, 0, 0, 0.3);
}

.social-box.youtube:hover {
    border-color: var(--youtube);
}

.social-box.youtube-uncut:hover {
    border-color: var(--youtube);
}

.social-box.instagram {
    --glow-color: rgba(228, 64, 95, 0.3);
}

.social-box.instagram:hover {
    border-color: var(--instagram);
}

.social-box.tiktok {
    --glow-color: rgba(0, 242, 234, 0.3);
}

.social-box.tiktok .social-icon {
    filter: none;
}

.social-box.tiktok:hover {
    border-color: #00f2ea;
}

.social-box.twitter {
    --glow-color: rgba(255, 255, 255, 0.3);
}

.social-box.twitter:hover {
    border-color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .top-section,
    .middle-section {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .social-media-section {
        grid-template-columns: 1fr;
    }

    .streamer-name {
        font-size: 2rem;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .social-box {
        min-height: 100px;
        padding: 1rem;
        gap: 0.5rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-box span {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .social-media-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-section,
    .middle-section {
        grid-template-columns: 1fr;
    }
}