* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, rgba(0, 47, 201, 0.85) 0%, rgba(96, 0, 144, 0.85) 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

header > * {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.intro {
    font-size: 1.2em;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

.header-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.header-button:hover {
    background: transparent;
    color: white;
}

main {
    padding: 40px;
}

h2 {
    color: #667eea;
    font-size: 2em;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
}

h3 {
    color: #764ba2;
    font-size: 1.5em;
    margin: 30px 0 15px 0;
}

p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05em;
}

a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #764ba2;
    text-decoration: underline;
}



.banner-text {
    color: white;
    font-weight: 700;
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 20px 0;
    line-height: 1.2;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tr:hover {
    background-color: #e8eaf6;
}

ul, ol {
    margin: 20px 0 20px 30px;
}

li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.bonus-table th {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.bonus-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.bonus-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.games-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.games-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.games-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
    border-left: 5px solid #667eea;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.conclusion {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.conclusion h2 {
    color: white;
    border-bottom: 3px solid white;
}

.bottom-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.bottom-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #002FC9 0%, #600090 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

.bottom-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.top-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 10px;
    }

    header {
        padding: 30px 20px;
        background: linear-gradient(135deg, rgba(0, 47, 201, 0.85) 0%, rgba(96, 0, 144, 0.85) 100%);
    }


    h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .intro {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .banner-container {
        margin: 15px auto;
        position: relative;
    }

    .banner-text {
        font-size: 1.1em;
        margin: 15px 0;
        line-height: 1.1;
    }

    .header-button {
        margin-top: 15px;
        padding: 12px 30px;
        font-size: 0.9em;
    }

    h2 {
        font-size: 1.3em;
        margin: 30px 0 15px 0;
    }

    h3 {
        font-size: 1.2em;
    }

    main {
        padding: 20px 15px;
    }

    p {
        font-size: 1em;
        text-align: left;
    }

    .comparison-table,
    .bonus-table,
    .games-table {
        font-size: 0.75em;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table th,
    .bonus-table th,
    .games-table th,
    .comparison-table td,
    .bonus-table td,
    .games-table td {
        padding: 8px 6px;
        white-space: nowrap;
    }

    .highlight-box {
        padding: 15px;
        margin: 20px 0;
        font-size: 0.95em;
    }

    .highlight-box ul,
    .highlight-box ol {
        margin-left: 20px;
    }

    .faq-section {
        padding: 20px 15px;
    }

    .faq-question {
        font-size: 1em;
    }

    .conclusion {
        padding: 20px 15px;
        font-size: 0.95em;
    }

    ul, ol {
        margin-left: 20px;
        padding-left: 10px;
    }

    li {
        margin-bottom: 8px;
        font-size: 0.95em;
    }

    footer {
        padding: 20px;
        font-size: 0.9em;
    }

    .bottom-buttons {
        margin: 20px 0;
    }

    .bottom-button {
        padding: 12px 30px;
        font-size: 1em;
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px 15px;
        background: linear-gradient(135deg, rgba(0, 47, 201, 0.85) 0%, rgba(96, 0, 144, 0.85) 100%);
    }


    h1 {
        font-size: 1.2em;
    }

    .intro {
        font-size: 0.9em;
    }

    .banner-container {
        margin: 10px auto;
        position: relative;
    }

    .banner-text {
        font-size: 0.9em;
        margin: 10px 0;
        line-height: 1;
    }

    .header-button {
        margin-top: 10px;
        padding: 10px 25px;
        font-size: 0.85em;
    }

    h2 {
        font-size: 1.1em;
    }

    main {
        padding: 15px 10px;
    }

    .comparison-table,
    .bonus-table,
    .games-table {
        font-size: 0.7em;
    }

    .comparison-table th,
    .bonus-table th,
    .games-table th,
    .comparison-table td,
    .bonus-table td,
    .games-table td {
        padding: 6px 4px;
    }

    .bottom-button {
        padding: 10px 20px;
        font-size: 0.85em;
        width: 95%;
    }

    .highlight-box {
        padding: 12px;
        margin: 15px 0;
    }

    ul, ol {
        margin-left: 15px;
    }

    li {
        font-size: 0.9em;
    }
}

