* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1E88E5;
    text-decoration: none;
}

.logo .pulse {
    background: linear-gradient(45deg, #FFD700, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1E88E5;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.age-restriction {
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 18px;
    border: 2px solid #ff6b7a;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    animation: pulse-glow 2s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(255, 71, 87, 0.6);
    }
}

/* Important Disclaimers Styles */
.important-disclaimers {
    background: linear-gradient(135deg, #ff6b7a, #ff4757);
    color: white;
    padding: 25px 0;
    margin: 0;
}

.disclaimer-banner {
    text-align: center;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.disclaimer-content .warning-icon {
    font-size: 28px;
    margin-right: 10px;
}

.disclaimer-content p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.important-notice {
    background: linear-gradient(135deg, #ff6b7a, #ff4757);
    color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #ff8a95;
}

.important-notice h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.important-notice .warning-icon {
    font-size: 24px;
    margin-right: 8px;
}

.important-notice p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

/* Additional styles for new pages */
.contact-grid, .support-options, .guidelines-grid, .tools-grid, .quick-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-method, .support-option, .guideline-card, .tool-card, .help-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #1E88E5;
}

.contact-method h3, .support-option h3, .guideline-card h3, .tool-card h3, .help-card h3 {
    color: #1E88E5;
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-category {
    margin: 40px 0;
}

.faq-category h3 {
    color: #1E88E5;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3f2fd;
}

.faq-item {
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #FFD700;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.response-times, .time-category, .support-topics, .topic-category {
    margin: 25px 0;
}

.time-category, .topic-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-option {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.help-resources {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.resource-category {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 6px;
}

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

.question-group {
    background: #fff3e0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.parent-info {
    background: #e8f5e8;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #4caf50;
}

/* Game Page Styles */
.game-main {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.game-header {
    text-align: center;
    margin-bottom: 30px;
}

.game-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 900;
}

.game-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 0;
}

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

.game-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.game-info h2 {
    color: #1E88E5;
    margin-bottom: 20px;
    font-size: 24px;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.feature-icon {
    font-size: 24px;
}

.game-frame-container {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    min-height: 640px;
}

.loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.loading-message h3 {
    color: #1E88E5;
    margin-bottom: 10px;
    font-size: 24px;
}

.loading-message p {
    color: #7f8c8d;
    font-size: 16px;
}

#gameFrame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.game-disclaimers {
    margin: 30px 0;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.disclaimer-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid #ff4757;
}

.disclaimer-item h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 18px;
}

.disclaimer-item p {
    color: #2c3e50;
    line-height: 1.6;
}

.responsible-gaming-notice {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #28a745;
    margin: 30px 0;
}

.responsible-gaming-notice h3 {
    color: #155724;
    margin-bottom: 15px;
    font-size: 22px;
}

.responsible-gaming-notice p {
    color: #155724;
    margin-bottom: 15px;
    font-size: 16px;
}

.responsible-gaming-notice ul {
    color: #155724;
    margin: 15px 0;
    padding-left: 20px;
}

.responsible-gaming-notice li {
    margin: 8px 0;
}

.help-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.help-links a {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.help-links a:hover {
    background: #1e7e34;
}

/* Mobile responsiveness for game page */
@media (max-width: 768px) {
    .game-header h1 {
        font-size: 28px;
    }

    .game-subtitle {
        font-size: 16px;
    }

    .game-features {
        grid-template-columns: 1fr;
    }

    .feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .game-frame-container {
        padding: 15px;
        min-height: 400px;
    }

    #gameFrame {
        height: 400px;
    }

    .disclaimer-grid {
        grid-template-columns: 1fr;
    }

    .help-links {
        flex-direction: column;
    }

    .help-links a {
        text-align: center;
    }
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #1E88E5, #0277BD);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

.btn-hero {
    background: linear-gradient(45deg, #FFD700, #FFC107);
    color: #333;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    border: 2px solid #1E88E5;
    color: #1E88E5;
    background: transparent;
}

.btn-outline:hover {
    background: #1E88E5;
    color: white;
}

.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.benefit-icon {
    font-size: 24px;
}

.hero-actions {
    text-align: left;
}

.disclaimer {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
}

.hero-wheel {
    display: flex;
    justify-content: center;
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    border: 8px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(
        #1E88E5 0deg 60deg,
        #FFD700 60deg 120deg,
        #1E88E5 120deg 180deg,
        #FFD700 180deg 240deg,
        #1E88E5 240deg 300deg,
        #FFD700 300deg 360deg
    );
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wheel-section {
    position: absolute;
    width: 50%;
    height: 2px;
    background: white;
    transform-origin: right center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    font-weight: 700;
    color: #333;
}

.wheel-section:nth-child(1) { transform: rotate(30deg); }
.wheel-section:nth-child(2) { transform: rotate(90deg); }
.wheel-section:nth-child(3) { transform: rotate(150deg); }
.wheel-section:nth-child(4) { transform: rotate(210deg); }
.wheel-section:nth-child(5) { transform: rotate(270deg); }
.wheel-section:nth-child(6) { transform: rotate(330deg); }

.wheel-spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FFC107);
    color: #333;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.wheel-spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.welcome {
    background: white;
}

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

.welcome-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    transition: transform 0.3s ease;
}

.welcome-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.welcome-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.welcome-card p {
    color: #666;
    line-height: 1.6;
}

.loyalty {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.loyalty .section-header h2,
.loyalty .section-header p {
    color: white;
}

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

.tier {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.tier:hover {
    transform: translateY(-10px);
}

.tier-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bronze .tier-badge {
    background: #CD7F32;
}

.silver .tier-badge {
    background: #C0C0C0;
}

.gold .tier-badge {
    background: #FFD700;
    color: #333;
}

.tier h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.tier ul {
    list-style: none;
    text-align: left;
}

.tier li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.tier li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.comparison {
    background: white;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

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

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

.comparison-table th {
    background: linear-gradient(45deg, #1E88E5, #0277BD);
    color: white;
    font-weight: 700;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table th:nth-child(2) {
    background: linear-gradient(45deg, #FFD700, #FFC107);
    color: #333;
}

.check {
    color: #4CAF50;
    font-size: 18px;
    font-weight: 700;
}

.cross {
    color: #f44336;
    font-size: 18px;
    font-weight: 700;
}

.advantages {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.advantage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

.news {
    background: white;
}

.news-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
}

.news-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.news-card {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    color: white;
}

.news-date {
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.news-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.age-banner {
    background: #ff4757;
    color: white;
    padding: 40px 0;
}

.age-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.age-icon {
    font-size: 64px;
}

.age-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.age-text p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 500px;
}

.footer {
    background: #2c3e50;
    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-logo h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-logo .pulse {
    background: linear-gradient(45deg, #FFD700, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: #bdc3c7;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.legal-text {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 14px;
}

.legal-text strong {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 14px;
}

.responsible-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.responsible-links a:hover {
    color: #FFD700;
}

.register-main {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: calc(100vh - 80px);
}

.register-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.register-header {
    background: linear-gradient(45deg, #1E88E5, #0277BD);
    color: white;
    padding: 40px;
    text-align: center;
}

.register-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.register-header p {
    opacity: 0.9;
}

.register-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1E88E5;
}

.form-group small {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin-bottom: 30px;
}

.social-signup {
    text-align: center;
}

.divider {
    margin: 20px 0;
    position: relative;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #666;
}

.btn-google {
    width: 100%;
    background: white;
    border: 2px solid #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #1E88E5;
}

.google-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.register-disclaimers {
    background: #f8f9fa;
    padding: 40px;
    display: grid;
    gap: 30px;
}

.disclaimer-box {
    text-align: center;
}

.disclaimer-box h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.disclaimer-box p {
    color: #666;
    line-height: 1.6;
}

.disclaimer-box a {
    color: #1E88E5;
    text-decoration: none;
}

.disclaimer-box a:hover {
    text-decoration: underline;
}

.legal-main {
    margin-top: 80px;
    padding: 60px 0;
    background: white;
    min-height: calc(100vh - 80px);
}

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

.legal-content h1 {
    color: #1E88E5;
    font-size: 36px;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
}

.legal-section h3 {
    color: #1E88E5;
    font-size: 18px;
    margin: 20px 0 10px 0;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section strong {
    color: #1E88E5;
}

.legal-section a {
    color: #1E88E5;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-disclaimer {
    background: linear-gradient(135deg, #ff4757, #c44569);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.legal-disclaimer h3 {
    color: white !important;
    font-size: 20px;
    margin-bottom: 15px;
}

.legal-disclaimer p {
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .wheel-container {
        width: 250px;
        height: 250px;
    }
    
    .wheel {
        width: 250px;
        height: 250px;
    }
    
    .age-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .age-icon {
        font-size: 48px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .responsible-links {
        justify-content: center;
    }
    
    .register-container {
        margin: 0 20px;
    }
    
    .register-header,
    .register-form,
    .register-disclaimers {
        padding: 30px 20px;
    }
    
    .legal-content {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .wheel-container {
        width: 200px;
        height: 200px;
    }
    
    .wheel {
        width: 200px;
        height: 200px;
    }
    
    .wheel-spin-btn {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
    
    .news-card {
        flex: 0 0 280px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
}