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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    overflow-x: hidden;
}

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

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

body.age-modal-open {
    overflow: hidden;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-modal-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffd700;
}

.age-modal-content p {
    margin-bottom: 25px;
    font-size: 16px;
}

.age-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a237e;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 35, 126, 0.95);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a237e;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Header */
.header {
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Burger Menu */
.burger-checkbox {
    display: none;
}

.burger-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: #ffd700;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 11px;
}

.burger-line:nth-child(3) {
    top: 22px;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(2) {
    transform: scale(0);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: white;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.12), transparent 55%),
                radial-gradient(circle at bottom right, rgba(255, 140, 0, 0.22), transparent 60%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/Premium casino-inspired visual.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    mix-blend-mode: screen;
    pointer-events: none;
}

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

.hero-subtitle {
    font-size: 18px;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 14px;
}

.trust-item i {
    color: #ffd700;
    font-size: 16px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.14), rgba(255, 255, 255, 0.06));
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.35);
}

.hero-text p {
    margin-bottom: 15px;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: radial-gradient(circle at top, #fff7da 0%, #f8f9fa 40%, #e0e3f0 100%);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a237e;
    position: relative;
}

.section-title::after {
    content: '';
    position: relative;
    display: block;
    width: 90px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd700, #ffae00);
}

.section-title.section-title--light {
    color: #ffffff;
}

.section-title.section-title--light::after {
    background: linear-gradient(90deg, #ffec8b, #ffd700);
}

/* Aggregator Highlight */
.aggregator {
    padding: 80px 0;
    background: linear-gradient(135deg, #090b27 0%, #15173d 40%, #261332 100%);
}

.aggregator-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.aggregator-text {
    color: #f8f9ff;
}

.aggregator-text p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(235, 239, 255, 0.9);
    margin-bottom: 20px;
}

.aggregator-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.aggregator-pill {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.35), rgba(17, 24, 63, 0.9));
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #fffdf0;
}

.aggregator-visuals {
    display: grid;
    gap: 20px;
}

.aggregator-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.25), rgba(5, 7, 32, 0.95));
}

.aggregator-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transform: scale(1.03);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.aggregator-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.aggregator-image-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}

.aggregator-image-card--secondary {
    max-width: 320px;
    margin-left: auto;
    margin-right: 10px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.offer-card {
    background: radial-gradient(circle at top, #ffffff 0%, #fdf7e6 45%, #f3f4fb 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 215, 0, 0.7);
}

.top-offer {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    position: relative;
    overflow: hidden;
}

.top-offer::before {
    content: 'TOP PICK';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ffd700;
    color: #1a237e;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.offer-logo {
    max-height: 40px;
    width: auto;
    display: block;
}

.offer-header h3 {
    font-size: 24px;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating i {
    color: #ffd700;
    font-size: 14px;
}

.rating-score {
    font-size: 14px;
    font-weight: 700;
    color: #d19b00;
}

.top-offer .rating-score {
    color: #ffec8b;
}

.offer-bonus {
    text-align: center;
    margin-bottom: 20px;
}

.bonus-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.bonus-text {
    font-size: 14px;
    color: #666;
}

.top-offer .bonus-text {
    color: rgba(255, 255, 255, 0.8);
}

.offer-features ul {
    list-style: none;
    margin-bottom: 20px;
}

.offer-features li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.top-offer .offer-features li {
    color: rgba(255, 255, 255, 0.9);
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.payment-methods i {
    font-size: 24px;
    color: #666;
}

.cta-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a237e;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Checklist Section */
.checklist {
    padding: 80px 0;
    background: radial-gradient(circle at top, #fffaf0 0%, #f7f8fc 45%, #eceff6 100%);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.checklist-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff, #f7f2e4);
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.checklist-item i {
    font-size: 48px;
    color: #d4a017;
    margin-bottom: 20px;
}

.checklist-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a237e;
}

.checklist-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Safety Criteria */
.safety {
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.18), transparent 55%),
                linear-gradient(135deg, #101438, #222968 45%, #3a1b45 100%);
    color: white;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.safety-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, rgba(19, 24, 65, 0.96), rgba(73, 47, 112, 0.96));
    border-radius: 15px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.safety-item i {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
}

.safety-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.safety-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Bonus Analysis */
.bonus-analysis {
    padding: 80px 0;
    background: radial-gradient(circle at top, #fff8e1 0%, #f7f8fc 45%, #e7e9f3 100%);
}

.analysis-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.analysis-item {
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff, #fbf3dd);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.analysis-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a237e;
}

.analysis-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Player Protection */
.player-protection {
    padding: 80px 0;
    background: radial-gradient(circle at top, #fff7e0 0%, #f5f7ff 45%, #e3e6f2 100%);
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.protection-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(140deg, #ffffff, #f7f2e6);
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.32);
    transition: all 0.3s ease;
}

.protection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.protection-item i {
    font-size: 48px;
    color: #d4a017;
    margin-bottom: 20px;
}

.protection-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a237e;
}

.protection-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: radial-gradient(circle at top, #fff9e6 0%, #f8f9fc 45%, #e5e7f1 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(140deg, #ffffff, #f7f2e4);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a237e;
}

.faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Disclaimer */
.disclaimer {
    padding: 80px 0;
    position: relative;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.16), transparent 55%),
                linear-gradient(135deg, #151a3f, #252c68 45%, #3b1f4a 100%);
    color: white;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.disclaimer-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.disclaimer-content a {
    color: #ffd700;
    text-decoration: underline;
}

.banner-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.banner-item {
    aspect-ratio: 4 / 1;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.banner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: #ffd700;
    background: rgba(0, 0, 0, 0.85);
}

.banner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.banner-item--gamstop img,
.banner-item--over18 img {
    filter: none;
}

/* Footer */
.footer {
    background: #1a237e;
    color: white;
    padding: 60px 0 30px;
}

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

.footer h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
}

.legal-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.contact-info i {
    color: #ffd700;
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Legal Pages Styles */
.legal-page {
    background: white;
    min-height: 100vh;
    padding: 40px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
    margin-top: 30px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #283593;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.legal-list {
    list-style: none;
    padding-left: 0;
}

.legal-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.legal-list li::before {
    content: '•';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-list li strong {
    color: #1a237e;
}

.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #1a237e;
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.support-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.support-org {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.support-org h4 {
    color: #1a237e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.support-org p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.support-org strong {
    color: #283593;
}

.emergency-help {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.emergency-help h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.emergency-help p {
    color: white;
    margin-bottom: 20px;
}

.emergency-help .legal-list li {
    color: white;
}

.emergency-help .legal-list li::before {
    color: #ffd700;
}

.back-link {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.legal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.legal-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.3);
}

.legal-back-btn i {
    font-size: 16px;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .legal-section p,
    .legal-list li {
        font-size: 14px;
    }
    
    .support-organizations {
        grid-template-columns: 1fr;
    }
    
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 15px;
        margin: 15px;
    }
    
    .legal-content h1 {
        font-size: 24px;
    }
    
    .legal-section h2 {
        font-size: 18px;
    }
    
    .legal-section h3 {
        font-size: 16px;
    }
    
    .emergency-help {
        padding: 20px;
    }
    
    .emergency-help h3 {
        font-size: 20px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger-label {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 35, 126, 0.98);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }
    
    .burger-checkbox:checked ~ .nav {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .trust-indicators {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 0;
        gap: 15px;
    }
    
    .trust-item {
        flex-shrink: 0;
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .hero-text {
        padding: 20px;
        font-size: 14px;
    }
    
    .offers-grid,
    .aggregator-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        padding: 20px;
    }

    .aggregator-image-card--secondary {
        max-width: none;
        margin: 0;
    }
    
    .checklist-grid,
    .safety-grid,
    .analysis-content,
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .banner-placeholder {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .banner-placeholder .banner-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 200px;
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .age-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .age-modal-content h2 {
        font-size: 24px;
    }
    
    /* Remove section padding on mobile */
    .hero,
    .offers,
    .checklist,
    .safety,
    .bonus-analysis,
    .player-protection,
    .faq,
    .disclaimer {
        padding: 40px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .trust-indicators {
        font-size: 11px;
        gap: 10px;
    }
    
    .offer-header h3 {
        font-size: 20px;
    }
    
    .bonus-amount {
        font-size: 24px;
    }
    
    .banner-placeholder {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: #ffd700;
}

.bg-navy {
    background: #1a237e;
}

.bg-gradient {
    background: linear-gradient(135deg, #1a237e, #3949ab);
}

.rounded {
    border-radius: 15px;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Placeholder Images */
.placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    text-align: center;
    aspect-ratio: 16/9;
}

.placeholder i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}