/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 25%, #6d28d9 50%, #7c3aed 75%, #8b5cf6 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #ffffff, #f0f0f0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ffffff;
    text-align: center;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #ffffff;
}

h4 {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #e0e0e0;
}

/* Links */
a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #e0e0e0;
    text-decoration: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(76, 29, 149, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.05);
}

.logo-icon {
    color: #ffffff;
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.logo-text {
    color: inherit;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.6) 0%, rgba(91, 33, 182, 0.6) 50%, rgba(109, 40, 217, 0.6) 100%),
                url('../imgs/background-image-hero-seciton.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 60px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    color: #b0b0b0;
    margin-bottom: 48px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 120px;
}

.trust-badge:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.trust-icon {
    color: #ffffff;
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.trust-text {
    font-size: 0.875rem;
    color: #e0e0e0;
    font-weight: 500;
    text-align: center;
}

/* Top Offers Section */
.top-offers {
    padding: 80px 0;
    background: rgba(76, 29, 149, 0.6);
    position: relative;
}

.top-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.125rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.casino-grid {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Header Row */
.casino-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.header-cell {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-cell.sortable {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.header-cell.sortable:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
}

.sort-icon {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.header-cell.sortable:hover .sort-icon {
    opacity: 1;
}

/* Casino Rows */
.casino-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

.casino-row:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.01);
}

.casino-row:last-child {
    border-bottom: none;
}

.casino-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.casino-cell:first-child,
.casino-cell:nth-child(2) {
    justify-content: flex-start;
}

/* Casino Badges */
.casino-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.casino-badge.top-rated {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #4c1d95;
}

.casino-badge.best-offers {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: #ffffff;
}

.casino-badge.most-popular {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
}

.casino-badge.new-favorite {
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    color: #ffffff;
}

.casino-badge.rising-star {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    color: #4c1d95;
}

/* Casino Logo Column */
.casino-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.casino-logo img {
    max-height: 45px;
    max-width: 80px;
    object-fit: contain;
    border-radius: 8px;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.casino-logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.casino-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    white-space: nowrap;
}

/* Offer Details */
.offer-details {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
    max-width: 220px;
}

.offer-details strong {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.offer-terms {
    font-size: 0.7rem;
    color: #b0b0b0;
    font-style: italic;
    line-height: 1.2;
}

/* Rating Column */
.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    max-width: 120px;
    justify-content: center;
}

.stars {
    color: #ffffff;
    font-size: 0.8rem;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3));
}

.rating-number {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

/* Reviews Column */
.reviews {
    color: #b0b0b0;
    font-size: 0.8rem;
    text-align: center;
    min-width: 80px;
    max-width: 100px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #4c1d95;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 120px;
    max-width: 140px;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    color: #4c1d95;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    font-size: 0.7rem;
}

/* Payment Methods Section */
.payment-methods {
    padding: 80px 0;
    background: rgba(109, 40, 217, 0.8);
    position: relative;
}

.payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.payment-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-category:hover {
    transform: translateY(-4px);
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.payment-category h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 80px;
}

.payment-icon:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.payment-icon img {
    max-height: 40px;
    max-width: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.payment-icon span {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

.payment-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.payment-note p {
    color: #e0e0e0;
    font-size: 0.875rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-note i {
    color: #ffffff;
    font-size: 1rem;
}

/* Important Information Section */
.important-info {
    padding: 80px 0;
    background: rgba(91, 33, 182, 0.8);
    position: relative;
}

.important-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.info-description {
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: 48px;
    line-height: 1.6;
}

.info-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.info-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.info-point:hover {
    transform: translateY(-4px);
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.info-icon i {
    color: #4c1d95;
    font-size: 1.25rem;
}

.info-text h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.info-text p {
    color: #b0b0b0;
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsible Gaming Section */
.responsible-play {
    padding: 80px 0;
    background: rgba(76, 29, 149, 0.6);
    position: relative;
}

.responsible-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.responsible-header {
    text-align: center;
    margin-bottom: 60px;
}

.responsible-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsible Info Cards */
.responsible-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.responsible-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.responsible-card:hover {
    transform: translateY(-8px);
    border-color: #ffffff;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.responsible-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.responsible-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Organizations Section */
.responsible-organizations {
    margin-bottom: 60px;
}

.orgs-title {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.orgs-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.responsible-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.responsible-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #ffffff;
    min-height: 120px;
    min-width: 160px;
    justify-content: center;
}

.responsible-logo:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.responsible-logo img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    display: block;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.responsible-logo:hover img {
    filter: brightness(1.4) contrast(1.2);
    transform: scale(1.05);
}

.logo-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-top: 8px;
}

.age-restriction {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.8), rgba(255, 69, 0, 0.8));
    border-color: rgba(220, 53, 69, 0.5);
}

.age-restriction img {
    filter: brightness(1.2) contrast(1.1) !important;
    max-height: 60px !important;
    max-width: 120px !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Emergency Help Section */
.emergency-help {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.help-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.help-card:hover {
    transform: translateY(-4px);
    border-color: #ffffff;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.help-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-icon i {
    font-size: 1.5rem;
    color: #4c1d95;
}

.help-content h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.helpline-number {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.helpline-text {
    color: #b0b0b0;
    font-size: 0.875rem;
}

/* Disclaimer Section */
.responsible-disclaimer {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 69, 0, 0.1));
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 40px;
}

.disclaimer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.8), rgba(255, 69, 0, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disclaimer-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

.disclaimer-content h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.disclaimer-content p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

.help-text p {
    font-size: 0.875rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.help-text strong {
    color: #ffffff;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: rgba(76, 29, 149, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-subtitle {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: #b0b0b0;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-contact {
    color: #b0b0b0;
    font-size: 0.875rem;
}

.footer-email {
    color: #ffffff;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.875rem;
}

.disclaimer {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile-First Responsive Design */

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
    
    .trust-badges {
        gap: 32px;
    }
    
    .info-points {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .responsible-logos {
        gap: 32px;
    }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
    .hero {
        padding: 100px 0 80px;
    }
    
    .trust-badges {
        gap: 48px;
    }
    
    .info-points {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Mobile Table Transformation */
@media (max-width: 767px) {
    .header-nav {
        display: none;
    }
    
    .casino-grid {
        margin: 0 -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .casino-header {
        display: none;
    }
    
    .casino-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        margin-bottom: 16px;
    }
    
    .casino-cell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .casino-cell:last-child {
        border-bottom: none;
    }
    
    .casino-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: #ffffff;
        font-size: 0.875rem;
        min-width: 80px;
    }
    
    .casino-logo {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding-left: 0;
    }
    
    .casino-logo img {
        max-height: 35px;
        max-width: 60px;
    }
    
    .casino-name {
        font-size: 0.9rem;
    }
    
    .offer-details {
        min-width: auto;
        max-width: none;
        text-align: right;
    }
    
    .offer-details strong {
        font-size: 0.8rem;
    }
    
    .offer-terms {
        font-size: 0.65rem;
    }
    
    .rating {
        min-width: auto;
        max-width: none;
        justify-content: flex-end;
    }
    
    .reviews {
        min-width: auto;
        max-width: none;
        text-align: right;
    }
    
    .cta-button {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .payment-icons {
        gap: 12px;
    }
    
    .payment-icon {
        min-width: 70px;
        padding: 10px;
    }
    
    .payment-icon img {
        max-height: 35px;
        max-width: 50px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .responsible-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .responsible-card {
        padding: 24px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .responsible-card h3 {
        font-size: 1.25rem;
    }
    
    .orgs-title {
        font-size: 1.5rem;
    }
    
    .responsible-logos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .responsible-logo {
        min-height: 100px;
        min-width: 140px;
        padding: 16px;
    }
    
    .responsible-logo img {
        max-height: 50px;
        max-width: 100px;
    }
    
    .emergency-help {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .help-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .help-icon {
        width: 50px;
        height: 50px;
    }
    
    .help-icon i {
        font-size: 1.25rem;
    }
    
    .helpline-number {
        font-size: 1.25rem;
    }
    
    .responsible-disclaimer {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .disclaimer-icon {
        width: 40px;
        height: 40px;
    }
    
    .disclaimer-icon i {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Focus States for Accessibility */
a:focus,
button:focus,
.sortable:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
        padding: 20px 0;
    }
    
    .casino-table tr {
        break-inside: avoid;
    }
}