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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 50%, #b3daff 100%);
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4472c4 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff8c42;
}

.header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, #ff8c42, #ffd93d);
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 140, 66, 0.3);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.header-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
    background: linear-gradient(135deg, #ff6b35, #ff4500);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffd93d;
    color: #ffd93d;
}

.btn-cta {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-size: 1.1rem;
    padding: 16px 32px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    border-radius: 50px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #20c997, #17a2b8);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 30%, #4472c4 70%, #5a86d6 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dutch" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><rect width="25" height="25" fill="none"/><circle cx="12.5" cy="12.5" r="1.5" fill="white" opacity="0.1"/><path d="M5,5 L20,5 L20,20 L5,20 Z" fill="none" stroke="white" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dutch)"/></svg>') repeat;
    opacity: 0.3;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 140, 66, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(255, 140, 66, 0.3);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #fff, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: #e8f4f8;
}

.bonus-showcase {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    margin: 3rem 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.bonus-label {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c42, #ffd93d);
    color: #1e3c72;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bonus-showcase h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffd93d;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bonus-showcase p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.bonus-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    color: #e8f4f8;
}

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 3px solid #ff8c42;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trust-item span:last-child {
    font-weight: 600;
    color: #1e3c72;
}

/* Main Content */
.main-content {
    background: white;
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff8c42, #ffd93d);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #495057;
}

.intro-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff8c42;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
}

/* Bonuses Section */
.bonuses-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.bonus-container {
    display: grid;
    gap: 3rem;
}

.featured-bonus {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 60, 114, 0.3);
}

.featured-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
    opacity: 0.2;
}

.bonus-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.bonus-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c42, #ffd93d);
    color: #1e3c72;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.featured-bonus h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-bonus .bonus-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd93d;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bonus-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.bonus-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.bonus-btn {
    font-size: 1.2rem;
    padding: 16px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #ff8c42, #ffd93d);
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.bonus-day {
    display: inline-block;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.bonus-card .bonus-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff8c42;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-terms {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.bonus-terms span {
    font-size: 0.9rem;
    color: #495057;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 10px;
}

/* Comparison Section */
.comparison-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.comparison-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin: 0 auto;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    font-weight: 600;
    text-align: center;
}

.comparison-table tr.winner {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    font-weight: 600;
}

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

.score {
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    text-align: center;
}

.score.excellent {
    background: #28a745;
    color: white;
}

.score.good {
    background: #ffc107;
    color: #212529;
}

.score.average {
    background: #17a2b8;
    color: white;
}

/* Banking Section */
.banking-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.banking-content {
    display: grid;
    gap: 3rem;
}

.banking-methods {
    display: grid;
    gap: 3rem;
}

.method-category h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    text-align: center;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.method-item.featured {
    border-color: #ff8c42;
    background: linear-gradient(135deg, #fff8f5, #ffffff);
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.method-item span:last-child {
    font-weight: 600;
    color: #1e3c72;
}

.banking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #ff8c42;
}

.info-card h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.info-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Registration Section */
.registration-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.registration-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step.active {
    border-left: 5px solid #ff8c42;
    background: linear-gradient(135deg, #fff8f5, #ffffff);
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.step-number {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step.active .step-number {
    background: linear-gradient(135deg, #ff8c42, #ffd93d);
}

.step-content h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
}

.registration-benefits {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.registration-benefits h3 {
    color: #1e3c72;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list {
    display: grid;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit span:last-child {
    color: #495057;
    font-weight: 500;
}

/* Games Section */
.games-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.games-showcase {
    margin-top: 2rem;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-category.popular {
    border: 2px solid #ff8c42;
    background: linear-gradient(135deg, #fff8f5, #ffffff);
}

.game-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.game-category h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.game-category p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.category-stats span {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

/* License Section */
.license-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.license-content {
    margin-top: 2rem;
}

.license-badges {
    display: grid;
    gap: 3rem;
}

.license-badge.main {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 6px solid #ff8c42;
}

.badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #ff8c42, #ffd93d);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.badge-content h4 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.badge-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1.1rem;
}

.license-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.feature-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    gap: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, #ff8c42, #ffd93d);
    padding: 8px;
    border-radius: 12px;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: bold;
}

.footer-brand p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-license {
    font-size: 0.9rem;
    color: #ffd93d;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    color: #ffd93d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
}

.link-group a:hover {
    color: #ffd93d;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.responsible-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 140, 66, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 140, 66, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .bonus-showcase h2 {
        font-size: 2.4rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-process {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-menu {
        order: 2;
        gap: 1rem;
    }
    
    .header-buttons {
        justify-content: center;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .bonus-showcase {
        padding: 2rem;
    }
    
    .bonus-showcase h2 {
        font-size: 2rem;
    }
    
    .bonus-features {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-bonus {
        padding: 2rem;
    }
    
    .featured-bonus .bonus-amount {
        font-size: 2.2rem;
    }
    
    .bonus-details {
        grid-template-columns: 1fr;
    }
    
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-categories {
        grid-template-columns: 1fr;
    }
    
    .license-badge.main {
        flex-direction: column;
        text-align: center;
    }
    
    .license-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .bonus-showcase h2 {
        font-size: 1.6rem;
    }
    
    .bonus-showcase p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .responsible-badges {
        justify-content: center;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.intro-content {
    animation: fadeInUp 0.8s ease-out;
}

.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}

.bonus-card:nth-child(1) { animation-delay: 0.1s; }
.bonus-card:nth-child(2) { animation-delay: 0.2s; }
.bonus-card:nth-child(3) { animation-delay: 0.3s; }
.bonus-card:nth-child(4) { animation-delay: 0.4s; }
.bonus-card:nth-child(5) { animation-delay: 0.5s; }

.game-category {
    animation: slideInUp 0.6s ease-out;
}

.game-category:nth-child(1) { animation-delay: 0.1s; }
.game-category:nth-child(2) { animation-delay: 0.2s; }
.game-category:nth-child(3) { animation-delay: 0.3s; }
.game-category:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.btn-cta {
    animation: pulse 2s infinite;
}

/* Loading states */
.btn-primary:active,
.btn-cta:active {
    transform: scale(0.98);
}

/* Focus states for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.btn-cta:focus {
    outline: 3px solid #ffd93d;
    outline-offset: 2px;
}

a:focus,
.nav-menu a:focus {
    outline: 2px solid #ffd93d;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000080;
    }
    
    .btn-primary,
    .btn-cta {
        border: 2px solid #fff;
    }
    
    .bonus-card {
        border: 2px solid #000;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .btn-cta {
        animation: none;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn-primary,
    .btn-secondary,
    .btn-cta,
    .trust-bar {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .bonus-showcase {
        border: 2px solid #000;
        background: white;
    }
}

/* Dark mode support (if user prefers dark) */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
        color: #e9ecef;
    }
    
    .main-content {
        background: #16213e;
    }
    
    .bonus-card,
    .method-item,
    .info-card,
    .step,
    .game-category {
        background: rgba(255, 255, 255, 0.05);
        color: #e9ecef;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .section-header h2 {
        color: #ffd93d;
    }
}

/* Hover effects for touch devices */
@media (hover: none) {
    .bonus-card:hover,
    .game-category:hover,
    .method-item:hover {
        transform: none;
    }
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff8c42, #ffd93d);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

/* Selection color */
::selection {
    background: rgba(255, 140, 66, 0.3);
    color: #1e3c72;
}

::-moz-selection {
    background: rgba(255, 140, 66, 0.3);
    color: #1e3c72;
}