/* Custom CSS for Szymool Casino Website */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root variables for consistent theming */
:root {
    --primary-red: #dc2626;
    --primary-red-dark: #b91c1c;
    --primary-red-light: #ef4444;
    --accent-purple: #9333ea;
    --accent-purple-dark: #7c3aed;
    --bg-dark: #111827;
    --bg-gray: #1f2937;
    --bg-gray-light: #374151;
    --text-gray: #9ca3af;
    --text-gray-light: #d1d5db;
    --border-gray: #374151;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --info-blue: #3b82f6;
}

/* Base styles override */
html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-dark) !important;
    color: var(--text-gray-light) !important;
    min-height: 100vh;
}

/* Font Awesome Icon Fixes */
.fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.fab, .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Ensure all Font Awesome icons are visible */
i[class*="fa-"], [class*="fa-"] {
    display: inline-block !important;
    font-style: normal !important;
    text-decoration: inherit !important;
    speak: none !important;
}

/* Fix for specific icon visibility */
.fa-trophy::before { content: "\f091" !important; }
.fa-users::before { content: "\f0c0" !important; }
.fa-gift::before { content: "\f06b" !important; }

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-light);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Body defaults */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: var(--bg-dark);
    color: var(--text-gray-light);
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Navigation styles */
.nav-link {
    color: #d1d5db !important;
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: #f87171 !important;
}

.nav-link.active {
    @apply text-red-400;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Button styles */
.btn-primary {
    background-color: #dc2626;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background-color: #374151;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #4b5563;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #4b5563;
    border-color: #dc2626;
    transform: scale(1.05);
}

.btn-casino {
    background: linear-gradient(to right, #dc2626, #9333ea);
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.btn-casino:hover {
    background: linear-gradient(to right, #b91c1c, #7c3aed);
    transform: scale(1.05);
}

/* Card styles */
.casino-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.casino-card:hover {
    border-color: #dc2626;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

/* Feature card styles */
.feature-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: #dc2626;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

/* Bonus card styles */
.bonus-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    border-color: #dc2626;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.bonus-header {
    flex-shrink: 0;
}

.bonus-details {
    flex-grow: 1;
}

.bonus-footer {
    flex-shrink: 0;
    margin-top: auto;
}

.casino-logo-small {
    flex-shrink: 0;
}

.bonus-amount {
    text-align: center;
    margin-bottom: 1rem;
}

.bonus-code {
    background: rgba(17, 24, 39, 0.5);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #374151;
}

/* Badge styles */
.badge-exclusive {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-hot {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-new {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-crypto {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-recommended {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* Casino table responsive styles */
.casino-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.75rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
}

.casino-table {
    min-width: 600px;
    width: 100%;
}

/* Mobile adaptations */
@media (max-width: 768px) {
    .casino-table-container {
        margin: 0 -1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .casino-table th:first-child,
    .casino-table td:first-child {
        padding-left: 1rem;
    }
    
    .casino-table th:last-child,
    .casino-table td:last-child {
        padding-right: 1rem;
    }
    
    .casino-table .btn-casino {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .casino-table .flex.items-center.space-x-3 {
        gap: 0.5rem;
    }
    
    .casino-table .w-12.h-12 {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
    }
    
    .casino-table .font-bold.text-lg {
        font-size: 1rem;
        line-height: 1.2;
    }
}

@media (max-width: 640px) {
    .casino-table {
        min-width: 480px;
    }
    
    .casino-table-container {
        margin: 0 -1.5rem;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .casino-table th:first-child,
    .casino-table td:first-child {
        padding-left: 0.75rem;
    }
    
    .casino-table th:last-child,
    .casino-table td:last-child {
        padding-right: 0.75rem;
    }
    
    .casino-table .btn-casino {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .casino-table .w-12.h-12 {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
    }
    
    .casino-table .w-12.h-12 i {
        font-size: 0.875rem;
    }
    
    .casino-table .font-bold.text-lg {
        font-size: 0.875rem;
    }
}

/* Table hover effects */
.casino-table tbody tr:hover {
    background: rgba(55, 65, 81, 0.5);
    transition: all 0.2s ease;
}

.casino-table tbody tr {
    transition: all 0.2s ease;
}

/* Casino Cards for Mobile */
.casino-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.casino-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
    border: 1px solid #374151;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.casino-card:hover {
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.btn-casino-mobile {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4rem;
}

.btn-casino-mobile:hover {
    background: linear-gradient(45deg, #b91c1c, #991b1b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Mobile optimizations for casino cards */
@media (max-width: 640px) {
    .casino-card {
        padding: 0.75rem;
    }
    
    .casino-card .flex.items-center.space-x-3 {
        gap: 0.75rem;
    }
    
    .casino-card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .casino-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .btn-casino-mobile {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
        min-width: 3.5rem;
    }
}

@media (max-width: 480px) {
    .casino-card {
        padding: 0.6rem;
    }
    
    .casino-card .w-12.h-12 {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
    }
    
    .casino-card h3 {
        font-size: 0.9rem;
    }
    
    .casino-card p {
        font-size: 0.75rem;
    }
    
    .btn-casino-mobile {
        padding: 0.375rem 0.6rem;
        font-size: 0.75rem;
        min-width: 3rem;
    }
}

.casino-detailed-card {
    @apply bg-gray-800 p-8 rounded-2xl border border-gray-700 hover:border-red-500 transition-all duration-300;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
    backdrop-filter: blur(10px);
}

.feature-card {
    @apply bg-gray-800 p-6 rounded-xl text-center hover:bg-gray-700 transition-all duration-300 transform hover:-translate-y-1;
    border: 1px solid rgba(55, 65, 81, 0.5);
}

.feature-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

/* Streamer card with animation */
.streamer-card {
    @apply relative;
}

.streamer-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-purple), var(--info-blue), var(--primary-red));
    border-radius: 18px;
    background-size: 400% 400%;
    animation: gradientBorder 4s ease infinite;
    z-index: -1;
}

@keyframes gradientBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Live status indicator */
.live-indicator {
    @apply flex items-center space-x-2 px-3 py-1 rounded-full text-sm font-bold;
}

.live-indicator.live {
    @apply bg-green-600 text-white;
}

.live-indicator.offline {
    @apply bg-gray-600 text-gray-300;
}

.live-pulse {
    @apply w-2 h-2 rounded-full animate-pulse;
}

.live-indicator.live .live-pulse {
    @apply bg-green-300;
}

.live-indicator.offline .live-pulse {
    @apply bg-gray-400;
}

/* Stream status card */
.stream-status-card {
    @apply bg-gray-800 p-6 rounded-xl border border-gray-700;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
}

.stream-player-container {
    @apply relative overflow-hidden rounded-lg;
}

/* Schedule cards */
.schedule-card {
    @apply bg-gray-800 p-6 rounded-xl border border-gray-700;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
}

.schedule-header {
    @apply flex items-center justify-between mb-4 pb-2 border-b border-gray-700;
}

.schedule-item {
    @apply flex justify-between items-center py-2 border-b border-gray-700 last:border-b-0;
}

.schedule-item .day {
    @apply font-semibold text-red-400;
}

.schedule-item .time {
    @apply text-gray-300;
}

.schedule-item .desc {
    @apply text-sm text-gray-400;
}

/* Highlight cards */
.highlight-card {
    @apply bg-gray-800 rounded-xl overflow-hidden hover:transform hover:-translate-y-1 transition-all duration-300;
}

.highlight-thumbnail {
    @apply relative overflow-hidden;
}

.highlight-overlay {
    @apply absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 hover:opacity-100 transition-opacity duration-300 cursor-pointer;
}

.play-btn {
    @apply w-16 h-16 bg-red-600 rounded-full flex items-center justify-center text-white text-2xl hover:bg-red-700 transition-colors;
}

.highlight-info {
    @apply p-4;
}

/* Bonus cards */
.bonus-card {
    @apply bg-gray-800 rounded-2xl overflow-hidden border border-gray-700 hover:border-red-500 transition-all duration-300;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95));
}

.bonus-header {
    @apply p-6 pb-4;
}

.bonus-amount {
    @apply text-center mb-4;
}

.bonus-details {
    @apply px-6 pb-4;
}

.bonus-code {
    @apply bg-gray-900 p-4 rounded-lg border border-gray-600;
}

.bonus-footer {
    @apply p-6 pt-4;
}

.no-deposit-card {
    @apply bg-gray-800 p-6 rounded-xl text-center border border-gray-700 hover:border-green-500 transition-all duration-300;
}

/* Badge styles */
.badge-exclusive {
    @apply bg-gradient-to-r from-red-600 to-purple-600 text-white text-xs font-bold px-3 py-1 rounded-full;
}

.badge-hot {
    @apply bg-gradient-to-r from-orange-500 to-red-500 text-white text-xs font-bold px-3 py-1 rounded-full;
}

.badge-new {
    @apply bg-gradient-to-r from-green-500 to-blue-500 text-white text-xs font-bold px-3 py-1 rounded-full;
}

.badge-crypto {
    @apply bg-gradient-to-r from-yellow-500 to-orange-500 text-white text-xs font-bold px-3 py-1 rounded-full;
}

.badge-recommended {
    @apply bg-gradient-to-r from-red-600 to-purple-600 text-white text-xs font-bold px-3 py-1 rounded-full animate-pulse;
}

/* Statistics cards */
.stat-card {
    @apply bg-gray-800 p-6 rounded-xl text-center border border-gray-700 hover:border-red-500 transition-all duration-300;
}

/* Social media cards */
.social-card {
    @apply bg-gray-800 p-6 rounded-xl text-center border border-gray-700 hover:border-red-500 transition-all duration-300 transform hover:-translate-y-1;
}

.social-icon {
    @apply w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4;
}

.social-icon.telegram {
    @apply bg-blue-600;
}

.social-icon.discord {
    @apply bg-indigo-600;
}

.social-icon.instagram {
    @apply bg-gradient-to-br from-purple-600 to-pink-600;
}

.social-icon.kick {
    @apply bg-green-600;
}

.social-stats {
    @apply text-center;
}

.social-stats .stat .number {
    @apply text-2xl font-bold text-red-400;
}

.social-stats .stat .label {
    @apply text-sm text-gray-400;
}

.btn-social {
    @apply font-semibold py-2 px-4 rounded-lg transition-all duration-300 transform hover:scale-105 w-full;
}

.telegram-btn {
    @apply bg-blue-600 hover:bg-blue-700 text-white;
}

.discord-btn {
    @apply bg-indigo-600 hover:bg-indigo-700 text-white;
}

.instagram-btn {
    @apply bg-gradient-to-r from-purple-600 to-pink-600 hover:from-purple-700 hover:to-pink-700 text-white;
}

.kick-btn {
    @apply bg-green-600 hover:bg-green-700 text-white;
}

/* FAQ styles */
.faq-category-btn {
    @apply bg-gray-700 hover:bg-red-600 text-white px-4 py-2 rounded-lg transition-all duration-300 text-sm font-medium;
}

.faq-category-btn.active {
    @apply bg-red-600;
}

.faq-category {
    @apply space-y-6;
}

.faq-item {
    @apply bg-gray-800 rounded-lg border border-gray-700 overflow-hidden;
}

.faq-question {
    @apply p-6 cursor-pointer hover:bg-gray-700 transition-colors duration-300 flex justify-between items-center;
}

.faq-question h3 {
    @apply text-lg font-semibold text-white;
}

.faq-question i {
    @apply text-red-400 transition-transform duration-300;
}

.faq-item.active .faq-question i {
    @apply transform rotate-180;
}

.faq-answer {
    @apply px-6 pb-6 text-gray-300 hidden;
}

.faq-item.active .faq-answer {
    @apply block;
}

/* Platform cards */
.platform-card {
    @apply bg-gray-800 p-6 rounded-xl text-center border border-gray-700 hover:border-red-500 transition-all duration-300;
}

/* Article styles */
.article-card {
    @apply bg-gray-800 rounded-xl overflow-hidden border border-gray-700 hover:border-red-500 transition-all duration-300 transform hover:-translate-y-1;
}

.article-image {
    @apply relative overflow-hidden;
}

.article-content {
    @apply p-6;
}

.article-category {
    @apply text-xs font-bold text-red-400 uppercase tracking-wide mb-2;
}

.article-title {
    @apply text-xl font-bold mb-3 hover:text-red-400 transition-colors;
}

.article-title a {
    @apply text-white hover:text-red-400;
}

.article-excerpt {
    @apply text-gray-300 text-sm leading-relaxed mb-4;
}

.article-footer {
    @apply flex justify-between items-center text-xs text-gray-400;
}

.article-date, .article-read-time {
    @apply text-gray-400;
}

.featured-article-card {
    @apply bg-gray-800 p-8 rounded-2xl border border-gray-700 hover:border-red-500 transition-all duration-300;
}

.article-badge {
    @apply bg-red-600 text-white text-xs font-bold px-3 py-1 rounded-full mb-4 inline-block;
}

.article-meta {
    @apply text-sm text-gray-400;
}

.article-meta-full {
    @apply mb-6 pb-6 border-b border-gray-700;
}

/* Full article styles */
.full-article {
    @apply mb-16 pb-16 border-b border-gray-700 last:border-b-0;
}

.article-header {
    @apply mb-8;
}

.article-body {
    @apply prose prose-lg prose-invert max-w-none;
}

.article-body h3 {
    @apply text-2xl font-bold mb-4 text-red-400 mt-8;
}

.article-body p {
    @apply text-gray-300 mb-6 leading-relaxed;
}

.article-body ul {
    @apply list-disc list-inside space-y-2 text-gray-300 mb-6;
}

.article-body strong {
    @apply text-white font-semibold;
}

.article-cta {
    @apply bg-gradient-to-r from-red-600/20 to-purple-600/20 rounded-lg p-6 border border-red-600/30 mt-8;
}

/* Slot ranking styles */
.slot-ranking {
    @apply space-y-6;
}

.slot-item {
    @apply flex items-start space-x-4 bg-gray-800 p-6 rounded-xl border border-gray-700;
}

.slot-position {
    @apply w-12 h-12 bg-red-600 rounded-full flex items-center justify-center text-white font-bold text-xl;
}

.slot-info {
    @apply flex-1;
}

/* Guide steps */
.guide-step {
    @apply text-center;
}

.step-number {
    @apply w-12 h-12 bg-red-600 rounded-full flex items-center justify-center text-white font-bold text-xl mx-auto mb-4;
}

/* Terms and conditions styles */
.terms-card {
    @apply bg-gray-800 p-6 rounded-xl border border-gray-700;
}

/* Legal document styles */
.legal-content {
    @apply space-y-8;
}

.legal-section {
    @apply bg-gray-800 p-8 rounded-xl border border-gray-700;
}

.legal-heading {
    @apply text-2xl font-bold text-red-400 mb-4;
}

.legal-text {
    @apply text-gray-300 mb-4 leading-relaxed;
}

.legal-list {
    @apply list-disc list-inside space-y-2 text-gray-300 mb-4 pl-4;
}

.legal-list li {
    @apply leading-relaxed;
}

.contact-info {
    @apply bg-gray-900 p-4 rounded-lg border border-gray-600 mt-4;
}

.warning-box {
    @apply bg-red-900/20 border border-red-600/50 rounded-lg p-6 text-center mb-6;
}

.help-box {
    @apply bg-green-900/20 border border-green-600/50 rounded-lg p-4 mt-4;
}

/* Form styles */
.contact-form {
    @apply bg-gray-800 p-8 rounded-xl border border-gray-700;
}

.form-group {
    @apply mb-4;
}

.form-label {
    @apply block text-sm font-medium text-gray-300 mb-2;
}

.form-input {
    @apply w-full px-4 py-3 bg-gray-900 border border-gray-600 rounded-lg text-white placeholder-gray-400 focus:border-red-500 focus:ring-1 focus:ring-red-500 transition-colors;
}

.form-input:focus {
    outline: none;
}

/* Feature benefit cards */
.feature-benefit-card {
    @apply bg-gray-800 p-6 rounded-xl text-center border border-gray-700 hover:border-red-500 transition-all duration-300;
}

/* Animation utilities */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(220, 38, 38, 0.5); }
    to { box-shadow: 0 0 20px rgba(220, 38, 38, 0.8); }
}

/* Casino logos */
.casino-logo {
    @apply mb-4;
}

.casino-logo-small {
    @apply flex-shrink-0;
}

.casino-logo-large {
    @apply mb-6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary, .btn-casino {
        @apply text-sm py-2 px-4;
    }
    
    .casino-card {
        @apply p-4;
    }
    
    .casino-detailed-card {
        @apply p-6;
    }
    
    .bonus-card {
        @apply text-sm;
    }
}

/* Loading states */
.loading {
    @apply animate-pulse;
}

/* Hover effects for interactive elements */
.hover-lift {
    @apply transition-transform duration-300 hover:-translate-y-1;
}

.hover-glow {
    @apply transition-shadow duration-300;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

/* Success states */
.success-message {
    @apply bg-green-900/20 border border-green-600/50 text-green-300 p-4 rounded-lg;
}

.error-message {
    @apply bg-red-900/20 border border-red-600/50 text-red-300 p-4 rounded-lg;
}

/* Accessibility improvements */
.sr-only {
    @apply absolute w-px h-px p-0 -m-px overflow-hidden whitespace-nowrap border-0;
}

/* Focus styles for better accessibility */
.focus-visible {
    @apply focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-offset-2 focus:ring-offset-gray-900;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}
