<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Vibrant Gaming Design */
body {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #2D1B69 0%, #11998E 50%, #38EF7D 100%) !important;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
}

/* Vibrant background overlay with gaming colors */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 239, 125, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(17, 153, 142, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: colorShift 8s ease-in-out infinite;
}

@keyframes colorShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Clean text visibility */
.text-white {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.text-gray-400 {
    color: #cbd5e0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.text-gray-700 {
    color: #1a202c !important;
    font-weight: 600;
}

/* Form text visibility */
.phone-input, .pin-input {
    color: #1a202c !important;
    font-weight: 500;
    text-shadow: none !important;
    background: #ffffff;
}

.phone-input::placeholder, .pin-input::placeholder {
    color: #9ca3af !important;
    text-shadow: none !important;
    font-weight: 400;
}

/* Elegant text effects */
h1, h2, h3, .text-lg {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Base transitions */
* {
    transition: all 0.3s ease;
}

/* Subtle pulse animation */
@keyframes subtle-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.pulse {
    animation: subtle-pulse 3s infinite;
}

/* Vibrant container design */
.container {
    backdrop-filter: blur(15px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
}

/* 2D Gaming Objects Animations */
.gaming-object-1 {
    animation: float-rotate 6s ease-in-out infinite;
}

.gaming-object-2 {
    animation: bounce-glow 4s ease-in-out infinite;
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0px) rotate(12deg);
    }
    50% {
        transform: translateY(-20px) rotate(25deg);
    }
}

@keyframes bounce-glow {
    0%, 100% {
        transform: translateY(0px) rotate(-12deg) scale(1);
        box-shadow: 4px 4px 0px #4A5568, 8px 8px 15px rgba(0,0,0,0.5);
    }
    50% {
        transform: translateY(-15px) rotate(-25deg) scale(1.1);
        box-shadow: 6px 6px 0px #4A5568, 12px 12px 25px rgba(0,0,0,0.6), 0 0 20px rgba(168, 85, 247, 0.5);
    }
}

/* Vibrant input styling */
#phoneInputContainer, #pinInputContainer {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 50px;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

#phoneInputContainer::before, #pinInputContainer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
    border-radius: inherit;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

#phoneInputContainer:focus-within, #pinInputContainer:focus-within {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(255, 107, 107, 0.5),
        0 0 20px rgba(255, 107, 107, 0.3);
}

/* Vibrant button styling */
button[type="submit"] {
    transition: all 0.3s ease;
    border: none;
    font-weight: bold;
    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

button[type="submit"]:hover::before {
    left: 100%;
}

button[type="submit"]:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 25px rgba(255, 107, 107, 0.3);
}

button[type="submit"]:active {
    transform: translateY(-1px) scale(1.02);
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Clean language switcher */
.language-switcher {
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.language-switcher:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Elegant logo effects */
.logo-text {
    position: relative;
    display: inline-block;
}

.logo-letter {
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.logo-letter:hover {
    transform: scale(1.1);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.subtitle-glow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

/* Subtle background pattern */
.dots-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    body {
        padding: 0.5rem;
        min-height: 100vh;
        overflow-x: hidden;
    }
    
    .container {
        min-height: auto !important;
        padding: 1rem 0;
        margin: 0.5rem;
    }
    
    .logo-container {
        height: 80px;
        margin: 0.6rem 0;
    }
    
    .logo-container img {
        max-height: 80px;
    }
    
    .text-\[9px\] {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
    
    .fixed {
        display: none;
    }
    
    button[type="submit"]:hover {
        transform: translateY(-1px);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    body {
        padding: 0.25rem;
    }
    
    .container {
        padding: 0.5rem;
        margin: 0.25rem;
    }
    
    .text-\[9px\] {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }
    
    .logo-container {
        height: 60px;
    }
    
    .logo-container img {
        max-height: 60px;
    }
}

/* Print styles */
@media print {
    .dots-pattern {
        display: none;
    }
}

/* Clean form container */
#formContainer {
    background: transparent;
    border-radius: 0;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

/* Professional hover effects for links */
a:hover {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

/* Clean scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
/* Logo image styling */
.logo-image {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Enhanced container spacing */
.container {
    min-height: auto;
    padding: 2rem 1.5rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Improved symmetry and spacing */
.space-y-6 &gt; * + * {
    margin-top: 1.5rem;
}

/* Enhanced form elements */
#phoneInputContainer, #pinInputContainer {
    min-height: 56px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Clean form container override */
#formContainer {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* iPad responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        max-width: 700px;
        padding: 3rem 2rem;
        transform: scale(1.2);
        margin-top: 2rem;
    }
    
    .logo-image {
        height: 7rem;
    }
    
    #phoneInputContainer, #pinInputContainer {
        min-height: 70px;
        font-size: 1.1rem;
    }
    
    .phone-input, .pin-input {
        font-size: 1.1rem !important;
        padding: 1.2rem 1rem !important;
    }
    
    button[type="submit"] {
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
    }
    
    .gaming-object-1, .gaming-object-2 {
        transform: scale(1);
    }
    
    /* Larger text for iPad */
    .text-sm {
        font-size: 1rem !important;
    }
    
    .text-lg {
        font-size: 1.3rem !important;
    }
    
    .text-base {
        font-size: 1.1rem !important;
    }
    
    .text-\[9px\] {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
    
    .text-\[10px\] {
        font-size: 13px !important;
        line-height: 1.4 !important;
        font-weight: 600 !important;
    }
}

/* Tablet responsiveness */
@media (max-width: 768px) and (min-width: 641px) {
    .container {
        max-width: 500px;
        padding: 1.5rem;
        margin: 0 auto;
    }
    
    .logo-image {
        height: 5rem;
    }
    
    #phoneInputContainer, #pinInputContainer {
        min-height: 60px;
    }
    
    .gaming-object-1, .gaming-object-2 {
        display: none !important;
    }
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    body {
        padding: 0.25rem;
        min-height: 100vh;
    }
    
    .container {
        padding: 0.5rem;
        max-width: 100%;
        margin: 0 auto;
        width: calc(100% - 0.5rem);
        min-height: auto;
    }
    
    .logo-image {
        height: 3rem;
    }
    
    #phoneInputContainer, #pinInputContainer {
        min-height: 44px;
    }
    
    .gaming-object-1, .gaming-object-2 {
        display: none !important;
    }
    
    /* Fixed mobile spacing */
    .space-y-4 &gt; * + * {
        margin-top: 0.5rem !important;
    }
    
    /* Mobile button adjustments */
    button[type="submit"] {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Mobile text adjustments */
    .text-\[9px\] {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }
    
    /* Mobile form title adjustments */
    #form-title {
        margin-bottom: 0.5rem !important;
    }
    
    #form-title div {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
    
    /* Mobile language switcher */
    .language-switcher {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
    
    /* Mobile pricing info - target by position */
    .container &gt; div:nth-child(2) {
        margin-bottom: 0.3rem !important;
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
    
    /* Mobile logo container */
    .logo-container {
        margin-bottom: 0.5rem !important;
    }
    
    .logo-container .subtitle-glow {
        font-size: 0.75rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    /* Mobile input adjustments */
    .phone-input, .pin-input {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Mobile margins override */
    .mb-3 {
        margin-bottom: 0.3rem !important;
    }
    
    .mb-4 {
        margin-bottom: 0.5rem !important;
    }
}

/* iPhone and Extra small screens - Enhanced UI */
@media (max-width: 480px) {
    body {
        padding: 0.3rem !important;
        min-height: 100vh;
        background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #1e40af 100%) !important;
    }
    
    /* Enhanced background overlay */
    body::before {
        background:
            radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.2) 0%, transparent 70%);
        animation: colorShift 6s ease-in-out infinite;
    }
    
    .container {
        padding: 1.2rem !important;
        width: calc(100% - 0.6rem) !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 2px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 2rem !important;
        backdrop-filter: blur(25px) !important;
        box-shadow:
            0 12px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Language switcher - enhanced */
    .container &gt; div:first-child {
        display: flex !important;
        justify-content: flex-end !important;
        margin-bottom: 0.8rem !important;
        width: 100% !important;
    }
    
    .language-switcher {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
        margin: 0 !important;
        background: rgba(15, 23, 42, 0.8) !important;
        border: 1px solid rgba(59, 130, 246, 0.4) !important;
        border-radius: 0.75rem !important;
        color: white !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Pricing info - enhanced */
    .container &gt; div:nth-child(2) {
        margin-bottom: 1rem !important;
        padding: 0.8rem 1.2rem !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
        background: rgba(15, 23, 42, 0.7) !important;
        border: 1px solid rgba(59, 130, 246, 0.3) !important;
        border-radius: 1rem !important;
        color: white !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Logo section - enhanced */
    .logo-container {
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .logo-image {
        height: 4.5rem !important;
        margin-bottom: 0.6rem !important;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)) !important;
    }
    
    .subtitle-glow {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
        font-weight: bold !important;
        color: #fbbf24 !important;
        text-shadow: 0 0 15px rgba(251, 191, 36, 0.6) !important;
    }
    
    /* Form title - enhanced */
    #form-title {
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    #form-title div {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        background: rgba(15, 23, 42, 0.8) !important;
        border: 1px solid rgba(59, 130, 246, 0.4) !important;
        border-radius: 1rem !important;
        color: white !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Form container - enhanced */
    #formContainer {
        margin-bottom: 1rem !important;
    }
    
    /* Form elements - enhanced */
    #phoneInputContainer, #pinInputContainer {
        min-height: 56px !important;
        border-radius: 1.75rem !important;
        box-shadow:
            0 6px 20px rgba(0, 0, 0, 0.25),
            0 0 0 1px rgba(255, 255, 255, 0.1) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 2px solid rgba(59, 130, 246, 0.3) !important;
        margin-bottom: 1rem !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .phone-input, .pin-input {
        padding: 1rem 1.2rem !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        height: 56px !important;
        color: #1f2937 !important;
    }
    
    #phoneInputContainer &gt; div:first-child,
    #pinInputContainer &gt; div:first-child {
        padding: 1rem 1.2rem !important;
        font-size: 0.95rem !important;
        font-weight: bold !important;
        background: rgba(243, 244, 246, 0.9) !important;
        color: #374151 !important;
    }
    
    /* Subscribe button - enhanced */
    button[type="submit"] {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: bold !important;
        border-radius: 1.75rem !important;
        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        margin: 0.8rem 0 1rem 0 !important;
        height: 56px !important;
        width: 100% !important;
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%) !important;
        border: none !important;
        color: white !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    button[type="submit"]:hover {
        transform: translateY(-3px) !important;
        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    }
    
    /* Response messages - enhanced */
    #responseMessage, #pinResponseMessage {
        font-size: 0.95rem !important;
        padding: 0.8rem 1.2rem !important;
        margin: 0.8rem 0 !important;
        border-radius: 1rem !important;
        background: rgba(15, 23, 42, 0.8) !important;
        border: 1px solid rgba(59, 130, 246, 0.4) !important;
        color: white !important;
        text-align: center !important;
        font-weight: 500 !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Disclaimer section - better spacing and sizing */
    .container &gt; div:last-child {
        margin-top: 0.6rem !important;
        padding: 0 0.4rem !important;
    }
    
    /* Override all disclaimer text classes with higher specificity */
    .text-\[9px\],
    .text-\[10px\],
    .text-\[11px\],
    div.text-\[9px\],
    div.text-\[10px\],
    div.text-\[11px\],
    p.text-\[9px\],
    p.text-\[10px\],
    p.text-\[11px\] {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 0.3rem !important;
        color: #ffffff !important;
        font-weight: 500 !important;
    }
    
    /* Specific override for disclaimer titles */
    .text-red-300,
    p.text-red-300 {
        font-size: 14px !important;
        line-height: 1.5 !important;
        font-weight: 700 !important;
        color: #fbbf24 !important;
    }
    
    /* Ensure all disclaimer text is visible */
    .bg-red-900\/20 p,
    .bg-red-900\/20 .text-white,
    div[class*="bg-red-900"] p,
    div[class*="bg-red-900"] .text-white {
        font-size: 13px !important;
        line-height: 1.5 !important;
        color: #ffffff !important;
        font-weight: 500 !important;
    }
    
    /* Better disclaimer container styling */
    .bg-red-900\/20,
    div[class*="bg-red-900"] {
        background: rgba(59, 130, 246, 0.15) !important;
        border: 1px solid rgba(147, 197, 253, 0.3) !important;
        border-radius: 0.75rem !important;
        padding: 0.6rem !important;
        margin: 0.4rem 0 !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .bg-red-900\/20 {
        background: rgba(127, 29, 29, 0.4) !important;
        border: 1px solid rgba(239, 68, 68, 0.5) !important;
        border-radius: 1rem !important;
        padding: 0.8rem !important;
        margin: 0.6rem 0 !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }
    
    .text-red-300 {
        color: #fca5a5 !important;
    }
    
    .text-white {
        color: #ffffff !important;
    }
    
    /* Enhanced spacing */
    .space-y-4 &gt; * + * {
        margin-top: 1rem !important;
    }
    
    .mb-3 {
        margin-bottom: 0.6rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    /* Hide decorative elements on mobile */
    .fixed.left-0,
    .fixed.top-16,
    .fixed.top-10,
    .fixed.top-32,
    .fixed.top-20,
    .fixed.bottom-20,
    .gaming-object-1,
    .gaming-object-2 {
        display: none !important;
    }
    
    /* Enhanced dots pattern */
    .dots-pattern {
        background-size: 12px 12px !important;
        opacity: 0.08 !important;
        background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08) 1px, transparent 1px) !important;
    }
}</pre></body></html>