        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: sans-serif;
        }

        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

        body {
            min-height: 100vh;
            background: #0a0c0f;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 30%),
                repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.02) 0px, rgba(212, 175, 55, 0.02) 2px, transparent 2px, transparent 8px);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 20px;
        }

        /* Champion Casino-ya xas qızıl parıltılar */
        body::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="%23d4af37" stroke-width="0.5"/><circle cx="50" cy="50" r="15" fill="none" stroke="%23d4af37" stroke-width="0.5"/></svg>');
            background-size: 80px 80px;
            pointer-events: none;
        }

        /* Qızıl işıq topaları */
        .gold-glow {
           
        }

        .gold-glow.left {
            top: auto;
            bottom: -200px;
            left: -200px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 80%);
            animation: goldFloat 25s ease-in-out infinite reverse;
        }

        @keyframes goldFloat {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
            50% { transform: translate(50px, 30px) scale(1.2); opacity: 0.8; }
        }

        /* Mərkəzi Champion paneli */
        .champion-panel {
            position: relative;
            z-index: 100;
            width: 100%;
            max-width: 560px;
            background: #111316;
            border: 2px solid #d4af37;
            border-radius: 30px 30px 20px 20px;
            padding: 45px 40px 55px 40px;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.9),
                0 0 0 1px rgba(212, 175, 55, 0.3) inset,
                0 0 40px rgba(212, 175, 55, 0.2);
            text-align: center;
            backdrop-filter: blur(2px);
        }

        /* Üst xətt - champion imzası */
        .champion-strip {
			display:flex;
			gap: 10px;
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #d4af37;
            color: #0a0c0f;
            font-weight: 900;
            font-size: 16px;
            letter-spacing: 4px;
            padding: 8px 40px;
            border-radius: 40px;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
            white-space: nowrap;
            border: 1px solid #fff3cd;
        }

        /* Champion loqo */
        .champion-logo {
            margin-top: 15px;
            margin-bottom: 20px;
        }

        .champion-logo h1 {
            font-size: 58px;
            font-weight: 900;
            background: linear-gradient(180deg, #f9e283 0%, #d4af37 50%, #b8860b 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
            letter-spacing: 2px;
            line-height: 1;
        }

        .champion-logo .est {
            color: #d4af37;
            font-size: 14px;
            letter-spacing: 6px;
            font-weight: 600;
            border-bottom: 1px solid #d4af37;
            display: inline-block;
            padding-bottom: 5px;
        }

        /* Təlimat qutusu */
        .champion-info {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid #d4af37;
            border-radius: 20px;
            padding: 25px 20px;
            margin: 30px 0;
            position: relative;
            box-shadow: 0 10px 20px rgba(0,0,0,0.8);
        }

        .champion-info::before {
    content: 'Qaydalar';
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: #111316;
    color: #d4af37;
    font-weight: 800;
    font-size: 14px;
    padding: 4px 20px;
    border-radius: 30px;
    border: 1px solid #d4af37;
    letter-spacing: 2px;
        }

        .step-row {
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            font-size: 18px;
            font-weight: 600;
            padding: 10px 0;
        }

        .step-number {
            background: #d4af37;
            color: #0a0c0f;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 20px;
            box-shadow: 0 0 15px gold;
        }

        .step-text {
            flex: 1;
            text-align: left;
            color: #e5e5e5;
        }

        .step-text strong {
            color: #d4af37;
            font-size: 20px;
        }

        .code-hint {
            background: #1a1c22;
            border-radius: 40px;
            padding: 12px 20px;
            color: #b5b5b5;
            font-size: 14px;
            margin-top: 15px;
            border: 1px dashed #d4af37;
        }

        .code-hint span {
            color: #d4af37;
            font-weight: 700;
            letter-spacing: 2px;
        }

        /* Giriş sahəsi - champion style */
        .champion-input-group {
            background: #1e2128;
            border: 2px solid #3a3e4a;
            border-radius: 10px;
            display: flex;
            align-items: center;
            padding: 10px;
            margin: 25px 0 15px;
            transition: all 0.3s;
        }

        .champion-input-group:focus-within {
            border-color: #d4af37;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            background: #262b35;
        }

        .champion-input-group input {
			flex: 1;
			text-align: center;
			background: transparent;
			border: none;
			padding: 5px 0px;
			font-size: 35px;
			font-weight: 600;
			color: white;
			outline: none;
			letter-spacing: 2px;
        }

        .champion-input-group input::placeholder {
            color: #5a5f6b;
            font-size: 16px;
            letter-spacing: normal;
            font-weight: 400;
        }

        .champion-input-group .gold-icon {
            background: #d4af37;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #0a0c0f;
            font-weight: 700;
            box-shadow: 0 0 15px gold;
        }

        /* Oyna düyməsi - champion butonu */
        .champion-button {;
            background: linear-gradient(5deg, #ffc300a1, #ffb500);
            border: none;
            border-radius: 60px;
            padding: 22px 20px;
            width: 100%;
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            color: #f7f7f7;
            cursor: pointer;
            transition: all 0.1s ease;
            border: 1px solid #f1d48a;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .champion-button:active {
            transform: translateY(8px);
            box-shadow: 0 2px 0 #7a5c1a, 0 0 50px #ffd700;
        }

        .champion-button:disabled {
            opacity: 0.5;
            transform: translateY(5px);
            box-shadow: 0 5px 0 #5a3e0f;
            pointer-events: none;
        }

        /* Oyun ekranı - champion skin */
        .champion-game {
            margin-top: 40px;
            background: #16181f;
            border: 2px solid #d4af37;
            border-radius: 30px;
            padding: 30px 20px;
            box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
        }

        .game-tag {
            background: #d4af37;
            color: #0a0c0f;
            display: inline-block;
            padding: 8px 30px;
            border-radius: 40px;
            font-weight: 900;
            font-size: 16px;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .game-slot-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            background: #0f1116;
            padding: 25px;
            border-radius: 50px;
            border: 1px solid #d4af37;
        }

        .game-slot-row div {
            width: 80px;
            height: 80px;
            background: #1e2128;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            border-bottom: 5px solid #d4af37;
        }

        .game-balance {
            margin-top: 20px;
            color: #d4af37;
            font-weight: 700;
            font-size: 22px;
            background: #0f1116;
            padding: 15px;
            border-radius: 40px;
            border: 1px solid #d4af37;
        }

        .hidden {
            display: none;
        }

        .error-message {
            background: #2a1a1a;
            border: 1px solid #ff4444;
            color: #ff8888;
            padding: 15px;
            border-radius: 40px;
            margin-top: 15px;
            font-weight: 600;
        }

        .success-message {
            background: #1a2a1a;
            border: 1px solid #d4af37;
            color: #d4af37;
            padding: 15px;
            border-radius: 40px;
            margin-top: 15px;
            font-weight: 600;
        }

        /* Alt xətt */
        .footer-note {
            margin-top: 25px;
            color: #5a5f6b;
            font-size: 14px;
            border-top: 1px solid #2a2e38;
            padding-top: 20px;
        }

        .footer-note a {
            color: #d4af37;
            text-decoration: none;
            font-weight: 600;
        }
		.champion-input-group input::placeholder {
		  color: white;
		  font-size: 35px;
		}
		@media(max-width:853px){
			body {
				margin-top: 4px;
				padding: 5px;
			}
			.champion-input-group input{
				font-size: 20px;
				border-radius:10px;
			}
			.champion-input-group input::placeholder {
				font-size: 20px;
			}
			.step-text strong {
				font-size: 15px;
			}
			.champion-panel {
				padding: 45px 8px 55px 8px;
			}
			.champion-button {
				font-size:15px;
				box-shadow:unset;
			}