        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header */
        header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 0 0 20px #ffd700;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #ffd700;
        }
        
        /* Main Content */
        .main-content {
            margin-top: 80px;
            padding: 40px 0;
        }
        
        .demo-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .demo-header h1 {
            color: #ffd700;
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 0 0 20px #ffd700;
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { text-shadow: 0 0 20px #ffd700; }
            to { text-shadow: 0 0 30px #ffd700, 0 0 40px #ffd700; }
        }
        
        .demo-header p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .demo-notice {
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid #ffd700;
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
        }
        
        .demo-notice h3 {
            color: #ffd700;
            margin-bottom: 10px;
        }
        
        .demo-notice p {
            margin: 0;
            font-size: 1.1rem;
        }
        
        /* Game Container */
        .game-container {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        
        .game-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .game-title h2 {
            color: #ffd700;
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .game-title .beta-tag {
            background: linear-gradient(45deg, #ff6b6b, #ffd700);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        /* Slot Demo Integration */
        #SCcont26625 {
            width: 100%;
            padding-top: 56.25%;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
        }
        
        #SCgFrame26625 {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            border-radius: 15px;
        }
        
        /* Features */
        .features {
            padding: 60px 0;
        }
        
        .features h2 {
            text-align: center;
            color: #ffd700;
            font-size: 2.5rem;
            margin-bottom: 40px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .feature-card h3 {
            color: #ffd700;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        /* Legal Links */
        .legal-section {
            background: rgba(0, 0, 0, 0.3);
            padding: 60px 0;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .legal-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .legal-header h2 {
            color: #ffd700;
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .legal-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 30px;
            border-radius: 10px;
            text-decoration: none;
            color: #ffffff;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .legal-link:hover {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
            transform: translateY(-2px);
        }
        
        .legal-link h3 {
            color: #ffd700;
            margin-bottom: 5px;
        }
        
        .legal-link p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Disclaimer Banner */
        .disclaimer-banner {
            background: rgba(255, 107, 107, 0.2);
            border: 2px solid #ff6b6b;
            border-radius: 15px;
            padding: 25px;
            margin: 40px 0;
            text-align: center;
        }
        
        .disclaimer-banner h3 {
            color: #ff6b6b;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .disclaimer-banner p {
            margin: 0;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.9);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: #64ffda;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffd700;
        }
        
        .social-links {
            display: flex;
            gap: 20px;
        }
        
        .social-links a {
            color: #ffd700;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: #ff6b6b;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .demo-header h1 {
                font-size: 2rem;
            }
            
            .legal-links {
                flex-direction: column;
                align-items: center;
            }
            
            .legal-link {
                width: 100%;
                max-width: 300px;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .game-container {
                padding: 20px;
            }
        }
        
        /* Loading Animation */
        .loading {
            display: none;
            text-align: center;
            color: #ffd700;
            font-size: 1.2rem;
        }
        
        .spinner {
            border: 3px solid rgba(255, 215, 0, 0.3);
            border-top: 3px solid #ffd700;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }