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

:root {
    --primary: #600177;
    --secondary: #fe3d02;
    --accent: #ff6b00;
    --dark: #0b0000;
    --light: #ffffff;
    --pink: #d4015f;
    --light-pink: #eec3d7;
    --gray: #cecdd2;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--secondary);
    color: var(--light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(254, 61, 2, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.section-button {
    text-align: center;
    margin-top: 3rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--pink) 100%);
    color: var(--light);
    padding: 5rem 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-table .features-table {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.hero-table .features-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-table .features-table tr:last-child {
    border-bottom: none;
}

.hero-table .feature-label {
    color: var(--light);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-table .feature-value {
    color: var(--light);
}

/* Features Table */
.features-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.features-table tr {
    border-bottom: 1px solid var(--gray);
}

.features-table tr:last-child {
    border-bottom: none;
}

.feature-label {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    width: 40%;
    vertical-align: top;
    border-right: 1px solid var(--gray);
}

.feature-value {
    padding: 1rem 1.5rem;
    color: var(--dark);
    width: 60%;
    vertical-align: top;
}

/* Description Text Section */
.description-text {
    padding: 3rem 0;
    background: var(--light);
}

.description-content {
    width: 100%;
}

.description-intro {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    line-height: 1.4;
    font-weight: 600;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.description-subtitle {
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.description-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.description-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.9;
}

.description-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary);
}

/* Feature Card (used in JS animations) */
.feature-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--gray);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(96, 1, 119, 0.2);
}

/* Bonus Section */
.bonus {
    padding: 5rem 0;
    background: #f8f8f8;
}


.bonus-intro-text {
    margin-bottom: 2.5rem;
}

.bonus-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.bonus-intro-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.bonus-table-wrapper {
    margin-bottom: 3rem;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bonus-table thead {
    background: var(--secondary);
    color: var(--light);
}

.bonus-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-table th:first-child {
    width: 35%;
}

.bonus-table th:nth-child(2),
.bonus-table th:nth-child(3) {
    width: 32.5%;
}

.bonus-table tbody tr {
    border-bottom: 1px solid var(--gray);
}

.bonus-table tbody tr:last-child {
    border-bottom: none;
}

.bonus-table td {
    padding: 1rem 1.5rem;
    vertical-align: top;
}

.bonus-deposit {
    font-weight: 600;
    color: var(--dark);
}

.bonus-percent {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-spins {
    color: var(--accent);
    font-weight: 500;
}

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

.bonus-extra-item {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--gray);
}

.bonus-extra-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.bonus-extra-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.9;
    margin: 0;
}

/* Bonus Card (used in JS animations) */
.bonus-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--secondary);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 61, 2, 0.3);
}

/* Registration Guide Section */
.registration-guide {
    padding: 5rem 0;
    background: var(--light);
}

.registration-content {
    width: 100%;
}

.registration-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.registration-steps-block {
    margin: 2.5rem 0;
}

.registration-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.registration-list {
    padding-left: 2rem;
    margin: 1rem 0;
}

.registration-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.registration-list li::marker {
    color: var(--secondary);
    font-weight: 600;
}

.registration-note {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-top: 2rem;
    opacity: 0.9;
    font-style: italic;
}

/* Games Section */
.games {
    padding: 5rem 0;
    background: #f8f8f8;
}

.games-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-align: left;
}

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

.games-providers {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.9;
    text-align: left;
    margin-top: 2.5rem;
}

.game-category {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--gray);
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(96, 1, 119, 0.2);
}

.game-category img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.game-category h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--secondary);
    font-size: 1.5rem;
}

.game-category p {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Register Section */
.register {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: var(--light);
}

.register-content {
    width: 100%;
    text-align: left;
}

.register .section-title {
    color: var(--light);
    margin-bottom: 2rem;
}

.register-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light);
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.register-content p:last-child {
    margin-bottom: 0;
}

/* Step (used in JS animations) */
.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--light);
}

.benefits-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-align: left;
}

.benefits-content {
    margin-bottom: 2.5rem;
}

.benefit-item {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefits-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0 0 1rem;
    font-weight: 600;
}

.benefits-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin: 0;
    opacity: 0.9;
}

.benefits-conclusion {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.9;
    text-align: left;
    margin-top: 2.5rem;
}

/* Benefit Card (used in JS animations) */
.benefit-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--gray);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(96, 1, 119, 0.2);
}

/* Tool Item (used in JS animations) */
.tool-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-column a {
    display: block;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .features-table {
        font-size: 0.9rem;
    }

    .feature-label,
    .feature-value {
        padding: 1rem 1.5rem;
    }

    .feature-label {
        width: 35%;
        font-size: 0.9rem;
    }

    .feature-value {
        width: 65%;
        font-size: 0.85rem;
    }

    .bonus-intro-text p {
        font-size: 1rem;
    }

    .bonus-intro-subtitle {
        font-size: 1.3rem;
    }

    .bonus-extra-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bonus-extra-title {
        font-size: 1.3rem;
    }

    .bonus-extra-item p {
        font-size: 1rem;
    }

    .register-content p {
        font-size: 1rem;
    }

    .bonus-table {
        font-size: 0.9rem;
    }

    .bonus-table th,
    .bonus-table td {
        padding: 1rem 1.5rem;
    }

    .bonus-table th {
        font-size: 1rem;
    }

    .bonus-percent {
        font-size: 1rem;
    }

    .description-intro {
        font-size: 1.6rem;
    }

    .description-content p {
        font-size: 1rem;
    }

    .description-subtitle {
        font-size: 1.5rem;
    }

    .description-list li {
        font-size: 1rem;
    }

    .games-intro {
        font-size: 1rem;
    }

    .games-providers {
        font-size: 1rem;
    }

    .benefits-intro {
        font-size: 1rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .benefits-subtitle {
        font-size: 1.3rem;
    }

    .benefits-content p {
        font-size: 1rem;
    }

    .benefits-conclusion {
        font-size: 1rem;
    }

    .registration-content > p,
    .registration-list li,
    .registration-note {
        font-size: 1rem;
    }

    .registration-subtitle {
        font-size: 1.3rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-wrapper {
        gap: 1.5rem;
    }

    .hero-table {
        padding: 1rem;
    }

    .bonus,
    .games,
    .register,
    .benefits,
    .description-text,
    .registration-guide {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-table {
        font-size: 0.8rem;
    }

    .feature-label,
    .feature-value {
        padding: 0.75rem 1rem;
    }

    .feature-label {
        width: 30%;
        font-size: 0.8rem;
    }

    .feature-value {
        width: 70%;
        font-size: 0.75rem;
    }

    .bonus-intro-text p {
        font-size: 0.95rem;
    }

    .bonus-intro-subtitle {
        font-size: 1.2rem;
    }

    .bonus-extra-content {
        gap: 1rem;
    }

    .bonus-extra-item {
        padding: 1.5rem;
    }

    .bonus-extra-title {
        font-size: 1.2rem;
    }

    .bonus-extra-item p {
        font-size: 0.95rem;
    }

    .bonus-table {
        font-size: 0.8rem;
    }

    .bonus-table th,
    .bonus-table td {
        padding: 0.75rem 1rem;
    }

    .bonus-table th {
        font-size: 0.9rem;
    }

    .bonus-percent {
        font-size: 0.9rem;
    }

    .description-intro {
        font-size: 1.4rem;
    }

    .description-content p {
        font-size: 0.95rem;
    }

    .register-content p {
        font-size: 0.95rem;
    }

    .games-intro {
        font-size: 0.95rem;
    }

    .games-providers {
        font-size: 0.95rem;
    }

    .benefits-intro {
        font-size: 0.95rem;
    }

    .benefit-item {
        padding: 1.25rem;
    }

    .benefits-subtitle {
        font-size: 1.2rem;
    }

    .benefits-content p {
        font-size: 0.95rem;
    }

    .benefits-conclusion {
        font-size: 0.95rem;
    }

    .registration-content > p,
    .registration-list li,
    .registration-note {
        font-size: 0.95rem;
    }

    .registration-subtitle {
        font-size: 1.2rem;
    }

    .registration-list {
        padding-left: 1.5rem;
    }

    .description-subtitle {
        font-size: 1.3rem;
    }

    .description-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

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

