@import 'tailwindcss'; @theme { --color-deep-blue: #0a1219; --color-deep-blue-light: #121e27; --color-deep-blue-contrast: #1a2835; --color-emerald: #10b981; --color-emerald-dark: #059669; --color-emerald-light: #34d399; --color-text-primary: #ffffff; --color-text-secondary: #94a3b8; --color-text-tertiary: #64748b; --color-accent-yellow: #fbbf24; --color-accent-red: #ef4444; --color-accent-purple: #8b5cf6; } body { @apply bg-deep-blue text-text-primary; } button, a { @apply cursor-pointer active:scale-95 transition-all duration-200; } .card { @apply bg-deep-blue-contrast rounded-lg overflow-hidden shadow-lg hover:shadow-xl transition-shadow duration-300; } .button-base { @apply bg-emerald hover:bg-emerald-dark text-text-primary font-bold transition-all duration-300 active:scale-95 rounded; } .game-card-content { @apply p-4; } .nav-button { @apply hidden lg:block absolute top-1/2 -translate-y-1/2 bg-deep-blue-contrast hover:bg-deep-blue-contrast/90 text-text-primary p-3 rounded-full opacity-0 group-hover:opacity-100 transition-all duration-300 shadow-lg hover:scale-110; } .slider-container { @apply flex transition-transform duration-500 ease-out; } .slider-grid { @apply min-w-full grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4; } .welcome-bonus { @apply text-4xl sm:text-5xl lg:text-7xl font-extrabold text-emerald-light mb-3 sm:mb-4; } .bonus-description { @apply text-text-secondary text-base sm:text-lg mb-6 sm:mb-8; } .section-heading { @apply font-bold text-text-primary; } .game-heading { @apply font-bold text-text-primary mb-2; } .game-text { @apply text-text-secondary text-sm mb-4; } .stat-container { @apply bg-deep-blue-contrast rounded-lg shadow-lg p-4 sm:p-6 text-center; } .stat-number { @apply text-xl sm:text-2xl font-bold text-emerald; } .stat-text { @apply text-text-secondary text-sm; } html, body { height: 100%; } body { margin: 0; font-family: Roboto, 'Helvetica Neue', sans-serif; } .mat-mdc-dialog-container { --mdc-dialog-container-color: var(--color-deep-blue-light) !important; --mdc-dialog-subhead-color: #ffffff !important; --mdc-dialog-supporting-text-color: #9ca3af !important; --mdc-dialog-container-shape: 6px !important; }