* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #ffb3ba 0%, #ffdfba 50%, #ffffba 100%);
            min-height: 100vh;
            color: #4a4a4a;
        }

        .box {
            max-width: 1000px;
            margin: 20px auto;
            display: grid;
            grid-gap: 15px;
            grid-template-columns: 220px minmax(0, 1fr);
            padding: 0 20px;
        }

        /* Header with cute Teto characters */
        header {
            grid-row: 1/2;
            grid-column: 1/3;
            background: linear-gradient(45deg, #ff9a9e, #fecfef, #fecfef);
            border: 3px solid #ff6b9d;
            border-radius: 20px;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: sparkle 3s linear infinite;
        }

        @keyframes sparkle {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        header img {
            max-height: 400px;
            margin: 0 10px;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
            transition: transform 0.3s ease;
        }

        header img:hover {
            transform: scale(1.1) rotate(5deg);
        }

        /* Navigation styling */
        nav {
            grid-row: 2/3;
            grid-column: 1/2;
            background: linear-gradient(135deg, #ffeaa7, #fab1a0);
            border: 3px solid #e17055;
            border-radius: 18px;
            height: max-content;
            padding: 20px 15px;
            box-shadow: 0 6px 20px rgba(225, 112, 85, 0.2);
            position: relative;
        }
        
        

        nav::before {
            content: '✨';
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 18px;
            animation: twinkle 2s ease-in-out infinite alternate;
        }

        @keyframes twinkle {
            0% { opacity: 0.5; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.2); }
        }

        nav h3 {
            color: #d63031;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 18px;
            text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
        }

        menu {
            list-style: none;
            padding: 0;
        }

        menu li {
            margin: 12px 0;
            transition: transform 0.2s ease;
        }

        menu li:hover {
            transform: translateX(5px);
        }

        menu a {
            text-decoration: none;
            color: #2d3436;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            padding: 8px 12px;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.3);
        }

        menu a:hover {
            background: rgba(255, 255, 255, 0.6);
            color: #e17055;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        menu a i {
            margin-right: 10px;
            font-size: 18px;
        }

        .fa-twitter { color: #1DA1F2; }
        .fa-youtube { color: #ff0000; }
        .fa-github { color: #333; }
        .fa-heart { color: #e84393; }
        
        poll {
            grid-row: 2/3;
            grid-column: 1/2;
            background: linear-gradient(135deg, #ffeaa7, #fab1a0);
            border: 3px solid #e17055;
            border-radius: 18px;
            height: max-content;
            padding: 20px 15px;
            box-shadow: 0 6px 20px rgba(225, 112, 85, 0.2);
            position: relative;
        }
        
        /* Main content styling */
        main {
            grid-row: 2/3;
            grid-column: 2/3;
            background: linear-gradient(135deg, #ff9ff3, #f368e0);
            border: 3px solid #e84393;
            border-radius: 18px;
            height: max-content;
            padding: 25px;
            box-shadow: 0 6px 20px rgba(232, 67, 147, 0.2);
            position: relative;
            overflow: hidden;
        }

        main::after {
            content: '♪♫♪';
            position: absolute;
            top: 15px;
            right: 20px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 20px;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        main h1 {
            color: #ffffff;
            font-weight: 700;
            font-size: 28px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #fff, #ffeaa7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .verse, .chorus {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 20px;
            margin: 15px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
        }

        .verse::before {
            content: '🎵';
            position: absolute;
            top: -5px;
            left: 15px;
            background: #ff6b9d;
            color: white;
            padding: 5px 10px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: bold;
        }

        .chorus::before {
            content: '🎤';
            position: absolute;
            top: -5px;
            left: 15px;
            background: #e84393;
            color: white;
            padding: 5px 10px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: bold;
        }

        .verse h3, .chorus h3 {
            color: #e17055;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .verse p, .chorus p {
            color: #2d3436;
            margin: 5px 0;
            font-weight: 500;
            line-height: 1.4;
        }

        /* Footer styling */
        footer {
            grid-row: 3/4;
            grid-column: 1/3;
            background: linear-gradient(135deg, #a29bfe, #6c5ce7);
            border: 3px solid #5f3dc4;
            border-radius: 18px;
            padding: 20px;
            box-shadow: 0 6px 20px rgba(95, 61, 196, 0.2);
        }

        .banner {
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: 600;
            font-size: 18px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }

        .banner::before {
            content: 'Sup fuckers';
            position: absolute;
            animation: slide 8s linear infinite;
        }

        @keyframes slide {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .box {
                grid-template-columns: 1fr;
                padding: 10px;
            }
            
            header {
                grid-column: 1/2;
            }
            
            nav {
                grid-row: 3/4;
                grid-column: 1/2;
            }
            
            main {
                grid-row: 2/3;
                grid-column: 1/2;
            }
            
            footer {
                grid-row: 4/5;
                grid-column: 1/2;
            }
            
            header img {
                max-height: 80px;
            }
        }

        /* Cute cursor effects */
        body {
            cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%23ff6b9d" opacity="0.8"/></svg>'), auto;
        }

        a:hover {
            cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%23e84393"/></svg>'), pointer;
        }