        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(to bottom, #0a0e27 0%, #1a1a2e 50%, #16213e 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
            overflow-y: auto;
        }

        /* Enhanced Nebula background effect */
        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 60% 70%, rgba(34, 211, 238, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 30% 90%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
            animation: nebula 25s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes nebula {
            0% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.8;
            }
            100% {
                transform: translate(-8%, -8%) rotate(10deg) scale(1.1);
                opacity: 1;
            }
        }

        /* Enhanced Starfield layers */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(3px 3px at 20px 30px, rgba(255, 255, 255, 0.9), transparent),
                radial-gradient(2px 2px at 60px 70px, rgba(255, 255, 255, 1), transparent),
                radial-gradient(1px 1px at 50px 50px, rgba(200, 220, 255, 0.8), transparent),
                radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.9), transparent),
                radial-gradient(3px 3px at 90px 10px, rgba(180, 200, 255, 1), transparent),
                radial-gradient(1px 1px at 20px 100px, rgba(255, 255, 255, 0.7), transparent),
                radial-gradient(2px 2px at 160px 120px, rgba(220, 230, 255, 0.8), transparent),
                radial-gradient(1px 1px at 110px 40px, rgba(255, 255, 255, 0.6), transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: twinkle 4s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes twinkle {
            0%, 100% {
                opacity: 0.8;
            }
            50% {
                opacity: 1;
            }
        }

        /* Additional star layers for depth */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .stars::before,
        .stars::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(1px 1px at 100px 150px, #fff, transparent),
                radial-gradient(1px 1px at 200px 50px, #eee, transparent),
                radial-gradient(1px 1px at 300px 180px, #ddd, transparent),
                radial-gradient(1px 1px at 400px 90px, #fff, transparent),
                radial-gradient(1px 1px at 500px 220px, #eee, transparent),
                radial-gradient(2px 2px at 150px 10px, #fff, transparent),
                radial-gradient(1px 1px at 350px 120px, #ddd, transparent);
            background-repeat: repeat;
            background-size: 550px 250px;
            animation: twinkle 4s ease-in-out infinite reverse;
        }

        .stars::after {
            background-size: 450px 200px;
            animation-duration: 6s;
            animation-delay: 1s;
        }

        /* Floating planets */
        .planet {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(1px);
        }

        .planet-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            right: 8%;
            background: radial-gradient(circle at 30% 30%, #a78bfa, #7c3aed);
            box-shadow: 0 0 60px rgba(139, 92, 246, 0.4), inset -20px -20px 40px rgba(0, 0, 0, 0.3);
            animation: float 30s ease-in-out infinite;
            opacity: 0.6;
            z-index: 1;
        }

        .planet-2 {
            width: 80px;
            height: 80px;
            bottom: 15%;
            left: 5%;
            background: radial-gradient(circle at 35% 35%, #60a5fa, #3b82f6);
            box-shadow: 0 0 50px rgba(59, 130, 246, 0.4), inset -15px -15px 30px rgba(0, 0, 0, 0.3);
            animation: float 25s ease-in-out infinite reverse;
            opacity: 0.5;
            z-index: 1;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(20px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-15px, 20px) rotate(240deg);
            }
        }

        /* Comets */
        @keyframes comet-1 {
            0% {
                transform: translate(0, 0) rotate(135deg) scale(0.5);
                opacity: 0;
            }
            3% {
                opacity: 1;
                transform: translate(30px, 30px) rotate(135deg) scale(1);
            }
            97% {
                opacity: 0.8;
            }
            100% {
                transform: translate(1200px, 1200px) rotate(137deg) scale(0.8);
                opacity: 0;
            }
        }

        @keyframes comet-2 {
            0% {
                transform: translate(0, 0) rotate(130deg) scale(0.5);
                opacity: 0;
            }
            4% {
                opacity: 1;
                transform: translate(40px, 35px) rotate(130deg) scale(1);
            }
            96% {
                opacity: 0.8;
            }
            100% {
                transform: translate(1100px, 1000px) rotate(132deg) scale(0.9);
                opacity: 0;
            }
        }

        @keyframes comet-3 {
            0% {
                transform: translate(0, 0) rotate(140deg) scale(0.5);
                opacity: 0;
            }
            3% {
                opacity: 1;
                transform: translate(35px, 40px) rotate(140deg) scale(1);
            }
            97% {
                opacity: 0.8;
            }
            100% {
                transform: translate(1300px, 1150px) rotate(138deg) scale(0.7);
                opacity: 0;
            }
        }

        .shooting-star {
            position: fixed;
            top: -100px;
            left: -50px;
            width: 3px;
            height: 150px;
            pointer-events: none;
            z-index: 1;
        }

        .shooting-star::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, 
                rgba(255, 255, 255, 1) 0%,
                rgba(200, 220, 255, 0.9) 10%,
                rgba(150, 180, 255, 0.7) 25%,
                rgba(100, 150, 255, 0.4) 50%,
                rgba(80, 120, 255, 0.2) 75%,
                rgba(60, 100, 255, 0) 100%);
            border-radius: 50%;
            filter: blur(2px);
        }

        .shooting-star::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(200, 220, 255, 0.8) 40%, transparent 70%);
            border-radius: 50%;
            box-shadow: 
                0 0 10px 3px rgba(255, 255, 255, 0.8),
                0 0 20px 5px rgba(150, 200, 255, 0.5),
                0 0 30px 8px rgba(100, 150, 255, 0.3);
        }

        .shooting-star:nth-child(2) {
            animation: comet-1 7s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
        }

        .shooting-star:nth-child(3) {
            left: 40%;
            animation: comet-2 9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.5s infinite;
        }

        .shooting-star:nth-child(4) {
            left: 70%;
            top: -80px;
            animation: comet-3 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 5s infinite;
        }

        .shooting-star:nth-child(4) {
            right: 15%;
            animation-delay: 6s;
            animation-duration: 4.5s;
        }

        .container {
            max-width: 700px;
            width: 100%;
            background: rgba(15, 23, 42, 0.75);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(120, 0, 255, 0.3),
                inset 0 0 60px rgba(120, 0, 255, 0.1);
            text-align: center;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(120, 119, 198, 0.3);
            animation: slideInUp 0.6s ease-out, containerGlow 4s ease-in-out infinite alternate;
            position: relative;
            z-index: 10;
        }

        @keyframes containerGlow {
            0% {
                box-shadow: 
                    0 25px 50px rgba(0, 0, 0, 0.5),
                    0 0 100px rgba(120, 0, 255, 0.3),
                    inset 0 0 60px rgba(120, 0, 255, 0.1);
            }
            100% {
                box-shadow: 
                    0 25px 50px rgba(0, 0, 0, 0.5),
                    0 0 120px rgba(0, 150, 255, 0.4),
                    inset 0 0 80px rgba(0, 150, 255, 0.15);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile {
            margin-bottom: 40px;
            animation: fadeIn 0.8s ease-out 0.2s backwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .profile img {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            margin: 0 auto 25px auto;
            display: block;
            object-fit: cover;
            border: 5px solid rgba(120, 0, 255, 0.6);
            box-shadow: 
                0 10px 30px rgba(120, 0, 255, 0.5),
                0 0 40px rgba(120, 0, 255, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .profile img:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 
                0 10px 40px rgba(120, 0, 255, 0.7),
                0 0 60px rgba(120, 0, 255, 0.5),
                inset 0 0 30px rgba(255, 255, 255, 0.15);
        }

        .profile h1 {
            color: #ffffff;
            text-shadow: 0 0 20px rgba(120, 0, 255, 0.5);
        }

        .profile p {
            color: rgba(255, 255, 255, 0.8);
        }
            

        .links-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
            animation: fadeIn 0.8s ease-out 0.4s backwards;
        }

        .link-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .link-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 15px 30px;
            background: linear-gradient(135deg, rgba(120, 0, 255, 0.6) 0%, rgba(0, 150, 255, 0.6) 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(120, 0, 255, 0.4);
            cursor: pointer;
            flex: 1;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 
                0 6px 20px rgba(120, 0, 255, 0.4),
                0 0 30px rgba(120, 0, 255, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .link-button i {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .link-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
            z-index: 1;
        }

        .link-button:hover::before {
            left: 100%;
        }

        .link-button:hover {
            transform: translateY(-3px);
            background: linear-gradient(135deg, rgba(120, 0, 255, 0.8) 0%, rgba(0, 150, 255, 0.8) 100%);
            box-shadow: 
                0 12px 30px rgba(120, 0, 255, 0.6),
                0 0 50px rgba(120, 0, 255, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.3);
        }

        .link-button:hover i {
            transform: scale(1.15);
        }

        .link-button:active {
            transform: translateY(-1px);
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin: 18px 0 10px 0;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(120, 0, 255, 0.2);
            color: #b794f6;
            font-weight: 700;
            font-size: 12px;
            text-decoration: none;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: 1px solid rgba(120, 0, 255, 0.3);
            backdrop-filter: blur(5px);
        }

        .social-link:hover {
            background: rgba(120, 0, 255, 0.6);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(120, 0, 255, 0.5), 0 0 30px rgba(120, 0, 255, 0.3);
        }

        /* NSFW Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease-out;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 450px;
            width: 90%;
            overflow: hidden;
            animation: slideInUp 0.4s ease-out;
        }

        .modal-header {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            padding: 30px 25px;
            color: white;
            text-align: center;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 700;
        }

        .modal-body {
            padding: 30px 25px;
            text-align: center;
        }

        .modal-body p {
            margin: 0 0 15px 0;
            font-size: 16px;
            color: #333;
            line-height: 1.6;
        }

        .modal-body p:last-child {
            margin-bottom: 0;
        }

        .modal-body strong {
            color: #e74c3c;
            font-weight: 700;
        }

        .modal-footer {
            padding: 20px 25px;
            display: flex;
            gap: 12px;
            background: #f8f9fa;
            border-top: 1px solid #eee;
        }

        .modal-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .modal-btn.decline {
            background: #f0f0f0;
            color: #666;
        }

        .modal-btn.decline:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
        }

        .modal-btn.confirm {
            background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
            color: white;
            box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
        }

        .modal-btn.confirm:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
        }

        .modal-btn:active {
            transform: translateY(0);
        }

        .loading {
            color: #a78bfa;
            font-size: 18px;
            font-weight: 600;
            text-shadow: 0 0 20px rgba(120, 0, 255, 0.5);
        }

        /* Characters Section */
        .characters-section {
            margin-top: 50px;
            padding-top: 35px;
            border-top: 3px solid rgba(120, 0, 255, 0.3);
            animation: fadeIn 0.8s ease-out 0.6s backwards;
        }

        .characters-section h2 {
            font-size: 24px;
            color: #ffffff;
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(120, 0, 255, 0.5);
        }

        .character-bubbles {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            justify-items: center;
            padding: 10px 6px 18px 6px;
            margin-bottom: 22px;
            max-width: 100%;
        }

        .character-bubbles::-webkit-scrollbar {
            display: none;
        }

        .character-bubble {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            min-width: 90px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .character-bubble img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(120, 0, 255, 0.5);
            box-shadow: 0 8px 18px rgba(120, 0, 255, 0.4), 0 0 20px rgba(120, 0, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .character-bubble:hover img {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 12px 28px rgba(120, 0, 255, 0.6), 0 0 40px rgba(120, 0, 255, 0.4);
            border-color: rgba(120, 0, 255, 0.9);
        }

        .character-bubble.selected img {
            border-color: rgba(120, 0, 255, 1);
            box-shadow: 0 12px 28px rgba(120, 0, 255, 0.8), 0 0 50px rgba(120, 0, 255, 0.6);
            transform: scale(1.1);
        }

        .character-bubble.selected span {
            color: rgba(167, 139, 250, 1);
        }

        .character-bubble span {
            max-width: 90px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .character-bubble .character-icons {
            display: flex;
            gap: 6px;
            color: #667eea;
        }

        .character-bubble .character-icons i {
            font-size: 12px;
            opacity: 0.85;
        }


        .ref-sheets-grid {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .ref-sheet-item {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(120, 0, 255, 0.2);
            border: 2px solid rgba(120, 0, 255, 0.3);
            background: rgba(30, 41, 59, 0.6);
            backdrop-filter: blur(10px);
            max-width: 700px;
            width: 100%;
        }

        .ref-sheet-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 50px rgba(120, 0, 255, 0.4);
            border-color: rgba(120, 0, 255, 0.6);
        }

        .ref-sheet-item img {
            width: 100%;
            height: auto;
            max-height: 600px;
            object-fit: contain;
            background: #ffffff;
            transition: transform 0.3s ease;
        }

        .character-icons {
            display: none;
        }

        .ref-sheet-item:hover img {
            transform: scale(1.05);
        }

        .ref-sheet-item p {
            margin: 14px 14px 16px 14px;
            padding: 10px 16px;
            text-align: center;
            color: #ffffff;
            font-weight: 800;
            background: linear-gradient(135deg, rgba(120, 0, 255, 0.6) 0%, rgba(0, 150, 255, 0.6) 100%);
            font-size: 13px;
            border-radius: 12px;
            box-shadow: 0 6px 16px rgba(120, 0, 255, 0.4), 0 0 20px rgba(120, 0, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            backdrop-filter: blur(5px);
        }

        /* Games Grid */
        .games-section {
            margin-top: 50px;
            padding-top: 35px;
            border-top: 3px solid rgba(120, 0, 255, 0.3);
            animation: fadeIn 0.8s ease-out 1s backwards;
        }

        .games-section h2 {
            font-size: 24px;
            color: #ffffff;
            margin-bottom: 25px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(120, 0, 255, 0.5);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-bottom: 30px;
        }

        .game-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(30, 41, 59, 0.6);
            border-radius: 16px;
            padding: 16px;
            box-shadow: 
                0 10px 25px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(120, 0, 255, 0.2),
                inset 0 0 30px rgba(120, 0, 255, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-height: 220px;
            border: 1px solid rgba(120, 0, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .game-card:hover {
            transform: translateY(-6px);
            box-shadow: 
                0 16px 35px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(120, 0, 255, 0.4),
                inset 0 0 40px rgba(120, 0, 255, 0.1);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            margin-bottom: 12px;
        }

        .game-info {
            text-align: center;
            width: 100%;
        }

        .game-info h3 {
            color: rgba(255, 255, 255, 0.95);
            font-size: 15px;
            margin: 0 0 6px 0;
            font-weight: 800;
            line-height: 1.2;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        }

        .game-info p {
            color: rgba(168, 139, 250, 1);
            font-size: 12px;
            margin: 0;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .game-info i {
            font-size: 12px;
        }

        @media (max-width: 720px) {
            .games-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 520px) {
            .games-grid {
                grid-template-columns: 1fr;
            }
            
            .character-bubbles {
                grid-template-columns: repeat(2, 1fr);
            }
        }