:root {
    --primary-blue: #1e59e3;
    --button-blue: #1e59e3;
    --button-hover-blue: #1a4fd0;
    --dark-blue: #0c2a6e;
    --section-blue: #172d72;
    --light-blue: #2a68f5;
    --lighter-blue: #3a78ff;
    --white: #ffffff;
    --login-gradient: linear-gradient(135deg, #00c6ff, #0072ff);
    --register-gradient: linear-gradient(135deg, #ff9a44, #fc6076);
    --green-gradient: linear-gradient(135deg, #43e97b, #38f9d7);
    --heading-gradient: linear-gradient(90deg, #00c6ff, #0072ff);
    --table-header-gradient: linear-gradient(135deg, #1e59e3, #3a78ff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: var(--dark-blue);
    min-height: 100vh;
}

.site-header {
    background-color: var(--primary-blue);
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    background-image: linear-gradient(to right, #1e59e3, #2563eb);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.search-container {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 20px;
}

#search-form {
    display: flex;
    position: relative;
}

#search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    outline: none;
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.login-button, .register-button {
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    font-size: 15px;
}

.login-button {
    background-image: var(--login-gradient);
    color: var(--white);
}

.register-button {
    background-image: var(--register-gradient);
    color: var(--white);
}

.login-button:hover, .register-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.login-button:active, .register-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.login-button::after, .register-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.login-button:hover::after, .register-button:hover::after {
    left: 100%;
}

@media (max-width: 768px) {
    .search-container {
        display: none;
    }
    
    .header-container {
        justify-content: space-between;
    }
    
    .logo img {
        height: 30px;
    }
    
    .login-button, .register-button {
        padding: 8px 18px;
        font-size: 13px;
    }
}

.hero-section {
    position: relative;
    background-image: url('assets/background-image.webp');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 42, 110, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
}

.bonus-container {
    background: rgba(30, 89, 227, 0.9);
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: 30px;
}

.bonus-ribbon {
    background-color: #ff7b00;
    color: white;
    padding: 8px 20px;
    font-weight: bold;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.bonus-ribbon::before, .bonus-ribbon::after {
    content: '';
    position: absolute;
    top: 0;
    border: 10px solid #ff7b00;
}

.bonus-ribbon::before {
    left: -10px;
    border-left-color: transparent;
}

.bonus-ribbon::after {
    right: -10px;
    border-right-color: transparent;
}

.bonus-content {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.bonus-text {
    flex: 1;
    min-width: 200px;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: #ffdd00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-extra {
    font-size: 1.3rem;
    margin: 5px 0 0;
    color: #ffdd00;
}

.register-now-button {
    background-image: var(--green-gradient);
    color: var(--dark-blue);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.register-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.register-now-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.register-now-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.register-now-button:hover::after {
    left: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
        min-height: 500px;
        background-position: 60% center;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .bonus-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-text {
        margin-bottom: 20px;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .bonus-extra {
        font-size: 1.1rem;
    }
    
    .register-now-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1.1rem;
    }
}

.info-section {
    background-color: var(--section-blue);
    padding: 60px 20px;
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-table-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.2);
}

.info-table tr {
    transition: background-color 0.2s;
}

.info-table tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.info-table tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.info-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table td:first-child {
    font-weight: bold;
    color: var(--white);
    width: 50%;
}

.info-table td:last-child {
    color: var(--white);
}

@media (max-width: 768px) {
    .info-section {
        padding: 40px 15px;
    }
    
    .info-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .info-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

.games-section {
    background-color: var(--section-blue);
    padding: 60px 20px;
    color: var(--white);
}

.section-heading {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-image: var(--heading-gradient);
    border-radius: 2px;
}

.games-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.games-text {
    flex: 2;
    min-width: 300px;
}

.games-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.games-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
    max-width: 350px;
}

.games-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.games-image img:hover {
    transform: scale(1.02);
}

.subsection-heading {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--white);
    position: relative;
    padding-left: 15px;
}

.subsection-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-image: var(--heading-gradient);
    border-radius: 2px;
}

.slots-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-providers {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.game-providers p {
    margin-bottom: 15px;
}

.providers-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.providers-list li {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.providers-list li:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.live-casino-section {
    margin-top: 60px;
}

.live-casino-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.live-casino-image {
    flex: 1;
    min-width: 250px;
    order: 2;
    max-width: 350px;
}

.live-casino-text {
    flex: 2;
    min-width: 300px;
    order: 1;
}

.live-casino-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.live-casino-image img:hover {
    transform: scale(1.02);
}

.live-casino-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.live-casino-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .games-section {
        padding: 40px 15px;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .subsection-heading {
        font-size: 1.5rem;
    }
    
    .games-text, .live-casino-text {
        flex: 1;
    }
    
    .games-image, .live-casino-image {
        flex: 1;
        max-width: none;
        width: 100%;
    }
    
    .games-image img, .live-casino-image img {
        width: 100%;
        height: auto;
    }
    
    .providers-list {
        grid-template-columns: 1fr;
    }
    
    .live-casino-image {
        order: 1;
    }
    
    .live-casino-text {
        order: 2;
    }
}

.account-section {
    background-color: var(--section-blue);
    padding: 60px 20px;
    color: var(--white);
}

.signup-container, .login-container {
    margin-bottom: 70px;
}

.login-container {
    margin-bottom: 0;
}

.account-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.account-content.reverse {
    flex-direction: row-reverse;
}

.account-text {
    flex: 2;
    min-width: 300px;
}

.account-image {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
}

.account-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.account-image img:hover {
    transform: scale(1.02);
}

.account-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.steps-container {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
}

.steps-list {
    margin-left: 20px;
    padding-left: 15px;
    margin-bottom: 15px;
}

.steps-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    position: relative;
}

.steps-list li::marker {
    color: var(--lighter-blue);
    font-weight: bold;
}

.steps-container p {
    margin-bottom: 15px;
}

.steps-container p:last-child {
    margin-bottom: 0;
    font-weight: bold;
    color: #ffdd00;
    font-size: 1.2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .account-section {
        padding: 40px 15px;
    }
    
    .account-text, .account-image {
        flex: 1;
    }
    
    .account-image {
        max-width: none;
        width: 100%;
    }
    
    .account-image img {
        width: 100%;
        height: auto;
    }
    
    .account-content.reverse {
        flex-direction: column;
    }
    
    .steps-list li {
        font-size: 1rem;
    }
    
    .signup-container, .login-container {
        margin-bottom: 50px;
    }
}

.bonuses-section {
    background-color: var(--section-blue);
    padding: 60px 20px;
    color: var(--white);
}

.bonuses-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin: 30px 0 50px;
}

.bonuses-text {
    flex: 2;
    min-width: 300px;
}

.bonuses-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bonuses-text p:last-child {
    margin-bottom: 0;
}

.promo-image {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
}

.promo-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.promo-image img:hover {
    transform: scale(1.02);
}

.bonuses-table-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.bonuses-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.2);
}

.bonuses-table th {
    padding: 15px 20px;
    text-align: left;
    background-image: var(--table-header-gradient);
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
}

.bonuses-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.bonuses-table tr:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bonuses-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .bonuses-section {
        padding: 40px 15px;
    }
    
    .bonuses-text, .promo-image {
        flex: 1;
    }
    
    .promo-image {
        max-width: none;
        width: 100%;
    }
    
    .promo-image img {
        width: 100%;
        height: auto;
    }
    
    .bonuses-table th, .bonuses-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

.vip-section {
    background-color: #0c2a6e;
    padding: 60px 20px;
    color: var(--white);
}

.vip-section .section-heading {
    position: relative;
    margin-bottom: 15px;
}

.vip-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #00c6ff;
    border-radius: 2px;
}

.vip-content {
    margin: 30px 0 40px;
}

.vip-text {
    max-width: 900px;
    margin: 0 auto;
}

.vip-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.vip-table-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.vip-table {
    width: 100%;
    border-collapse: collapse;
}

.vip-table th {
    padding: 15px 10px;
    text-align: center;
    background-color: #2a68f5;
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
}

.vip-table tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.3);
}

.vip-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.2);
}

.vip-table td {
    padding: 15px 10px;
    color: var(--white);
    text-align: center;
    vertical-align: middle;
}

.vip-table td:first-child {
    background-color: #2a68f5;
    font-weight: bold;
}

.vip-table td:nth-child(2) {
    font-weight: bold;
}

.x-mark {
    color: #9370db;
    font-weight: bold;
    font-size: 1.2rem;
}

.check-mark {
    color: #43e97b;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .vip-section {
        padding: 40px 15px;
    }
    
    .vip-section .section-heading {
        font-size: 1.8rem;
    }
    
    .vip-text p {
        font-size: 1rem;
    }
    
    .vip-table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    .vip-table {
        min-width: 500px;
    }
    
    .vip-table th, .vip-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .x-mark, .check-mark {
        font-size: 1rem;
    }
}

.payment-section {
    background-color: var(--section-blue);
    padding: 60px 20px;
    color: var(--white);
}

.payment-content {
    margin: 30px 0 40px;
}

.payment-text {
    max-width: 900px;
    margin: 0 auto;
}

.payment-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1rem;
}

.payment-text p:last-child {
    margin-bottom: 0;
}

.payment-tables {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.deposit-table-container,
.withdrawal-table-container {
    width: 100%;
}

.table-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
    font-weight: bold;
}

.table-wrapper {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
}

.payment-table th {
    padding: 15px 10px;
    text-align: left;
    background-image: var(--table-header-gradient);
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
}

.payment-table tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.3);
}

.payment-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.2);
}

.payment-table td {
    padding: 12px 15px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .payment-section {
        padding: 40px 15px;
    }
    
    .payment-text p {
        font-size: 1rem;
    }
    
    .table-title {
        font-size: 1.3rem;
    }
    
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .payment-table {
        min-width: 500px;
    }
    
    .payment-table th, 
    .payment-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}

.reviews-section {
    background-color: var(--dark-blue);
    padding: 60px 20px;
    color: var(--white);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-image: var(--heading-gradient);
    border-radius: 2px 0 0 2px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.review-content {
    padding: 25px 25px 25px 30px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(58, 120, 255, 0.2);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: Georgia, serif;
    z-index: -1;
}

.reviewer-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--lighter-blue);
    text-align: right;
    margin-top: 10px;
    position: relative;
    padding-top: 10px;
}

.reviewer-name::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--lighter-blue);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 15px;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .review-content {
        padding: 20px 20px 20px 25px;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
}

.pros-cons-section {
    background-color: var(--section-blue);
    padding: 60px 20px;
    color: var(--white);
}

.pros-cons-content {
    max-width: 900px;
    margin: 30px auto 40px;
}

.pros-cons-text {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.pros-cons-table-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.pros-cons-table {
    width: 100%;
    border-collapse: collapse;
}

.pros-cons-table th {
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.pros-header {
    background-image: linear-gradient(135deg, #43e97b, #38f9d7);
    color: var(--dark-blue);
}

.cons-header {
    background-image: linear-gradient(135deg, #ff9a44, #fc6076);
    color: var(--white);
}

.pros-cons-table tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.3);
}

.pros-cons-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.2);
}

.pros-cons-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    vertical-align: top;
}

.pros-cons-table tr:last-child td {
    border-bottom: none;
}

.pros-cons-table td:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .pros-cons-section {
        padding: 40px 15px;
    }
    
    .pros-cons-text {
        font-size: 1rem;
    }
    
    .pros-cons-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pros-cons-table {
        min-width: 500px;
    }
    
    .pros-cons-table th {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .pros-cons-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

.faq-section {
    background-color: var(--dark-blue);
    padding: 60px 20px;
    color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px;
    background-image: var(--table-header-gradient);
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--lighter-blue);
}

.faq-question::after {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-container {
        margin-top: 30px;
        gap: 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 15px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

.brand-link {
    color: var(--lighter-blue);
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.brand-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: var(--heading-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    color: #00c6ff;
}

.brand-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-footer {
    background-color: #0f1a3e;
    padding: 40px 20px 30px;
    color: var(--white);
    border-top: 3px solid #ff9a44;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo img {
    display: block;
    filter: brightness(1.1);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ff9a44;
}

.footer-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 600px;
    line-height: 1.5;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.45;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px 25px;
    }
    
    .footer-logo img {
        width: 120px;
        height: auto;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .copyright, .disclaimer {
        font-size: 0.78rem;
    }
}

.burger-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.burger-toggle {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--register-gradient);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.burger-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.burger-toggle:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.burger-toggle::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.burger-toggle:hover::after {
    left: 100%;
}

.burger-line {
    width: 24px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-nav.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-nav.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-nav.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.burger-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--section-blue);
    border-radius: 15px;
    padding: 20px;
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.burger-nav.active .burger-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.burger-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.burger-menu-list li {
    margin-bottom: 15px;
}

.burger-menu-list li:last-child {
    margin-bottom: 0;
}

.burger-menu-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 10px;
    background: var(--login-gradient);
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.burger-menu-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.burger-menu-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.burger-menu-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.burger-menu-link:hover::after {
    left: 100%;
}

.burger-menu-list li:nth-child(2) .burger-menu-link {
    background: var(--register-gradient);
}

@media (max-width: 768px) {
    .burger-nav {
        bottom: 15px;
        right: 15px;
    }
    
    .burger-toggle {
        width: 55px;
        height: 55px;
    }
    
    .burger-line {
        width: 20px;
        height: 2px;
    }
    
    .burger-nav.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .burger-nav.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .burger-menu {
        bottom: 75px;
        min-width: 160px;
        padding: 15px;
    }
    
    .burger-menu-link {
        font-size: 14px;
        padding: 10px 12px;
    }
}

.welcome-bonus-section {
    padding: 60px 0;
    background-color: var(--section-blue);
}

.welcome-bonus-section h2,
.ongoing-bonuses-section h2,
.bonus-table-section h2,
.how-to-claim-section h2,
.terms-conditions-section h2,
.welcome-bonus-section h3,
.ongoing-bonuses-section h3,
.bonus-table-section h3,
.how-to-claim-section h3,
.terms-conditions-section h3 {
    color: var(--white);
}

.welcome-bonus-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.welcome-bonus-text {
    color: var(--white);
}

.welcome-bonus-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.bonus-features {
    margin-top: 30px;
}

.bonus-features h3 {
    color: #00c6ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.bonus-features-list {
    list-style: none;
    padding: 0;
}

.bonus-features-list li {
    color: var(--white);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.bonus-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #43e97b;
    font-weight: bold;
    font-size: 16px;
}

.welcome-bonus-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.ongoing-bonuses-section {
    padding: 60px 0;
    background-color: var(--dark-blue);
}

.ongoing-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: var(--section-blue);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bonus-card h3 {
    color: #00c6ff;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
}

.bonus-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-description {
    color: var(--white);
    line-height: 1.5;
    font-size: 14px;
}

.sports-bonuses {
    background: var(--section-blue);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
}

.sports-bonuses h3 {
    color: #00c6ff;
    margin-bottom: 15px;
    font-size: 20px;
}

.sports-bonuses p {
    color: var(--white);
    line-height: 1.6;
}

.bonus-table-section {
    padding: 60px 0;
    background-color: var(--section-blue);
}

.bonus-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.how-to-claim-section {
    padding: 60px 0;
    background-color: var(--dark-blue);
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--section-blue);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--register-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #00c6ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.step-card p {
    color: var(--white);
    line-height: 1.5;
    font-size: 14px;
}

.important-notes {
    background: var(--section-blue);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
}

.important-notes h3 {
    color: #00c6ff;
    margin-bottom: 20px;
    font-size: 18px;
}

.notes-list {
    list-style: none;
    padding: 0;
}

.notes-list li {
    color: var(--white);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.notes-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.terms-conditions-section {
    padding: 60px 0;
    background-color: var(--section-blue);
}

.terms-content {
    display: grid;
    gap: 40px;
}

.terms-section {
    background: var(--dark-blue);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
}

.terms-section h3 {
    color: #00c6ff;
    margin-bottom: 20px;
    font-size: 18px;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    color: var(--white);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00c6ff;
    font-weight: bold;
    font-size: 20px;
}

.bonus-disclaimer {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid #ff9a44;
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.bonus-disclaimer p {
    color: var(--white);
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .welcome-bonus-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ongoing-bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .claim-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-card, .step-card, .terms-section {
        padding: 20px;
    }
    
    .bonus-value {
        font-size: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.login-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.login-cta-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.login-cta-btn.primary {
    background: var(--login-gradient);
    color: var(--white);
}

.login-cta-btn.secondary {
    background: var(--register-gradient);
    color: var(--white);
}

.login-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.login-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.login-cta-btn:hover::after {
    left: 100%;
}

.login-guide-section {
    padding: 60px 0;
    background-color: var(--section-blue);
}

.login-guide-section h2,
.registration-section h2,
.verification-section h2,
.account-benefits-section h2,
.troubleshooting-section h2,
.customer-support-section h2 {
    color: var(--white);
}

.login-guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.login-guide-text {
    color: var(--white);
}

.login-guide-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.login-steps h3,
.login-tips h3 {
    color: #00c6ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.login-steps-list {
    list-style: decimal;
    padding-left: 20px;
    color: var(--white);
}

.login-steps-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.security-tips-list {
    list-style: none;
    padding: 0;
}

.security-tips-list li {
    color: var(--white);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.security-tips-list li::before {
    content: '🔒';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.login-guide-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.registration-section {
    padding: 60px 0;
    background-color: var(--dark-blue);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.registration-text {
    color: var(--white);
}

.registration-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.registration-steps h3,
.registration-requirements h3 {
    color: #00c6ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.registration-steps-list {
    list-style: decimal;
    padding-left: 20px;
    color: var(--white);
    margin-bottom: 30px;
}

.registration-steps-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    color: var(--white);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.requirements-list li::before {
    content: '📋';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.registration-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.verification-section {
    padding: 60px 0;
    background-color: var(--section-blue);
}

.verification-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.verification-text {
    color: var(--white);
}

.verification-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.verification-process h3,
.verification-documents h3 {
    color: #00c6ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.verification-steps-list {
    list-style: decimal;
    padding-left: 20px;
    color: var(--white);
    margin-bottom: 30px;
}

.verification-steps-list li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.document-type h4 {
    color: #43e97b;
    margin-bottom: 10px;
    font-size: 16px;
}

.document-type ul {
    list-style: none;
    padding: 0;
}

.document-type li {
    color: var(--white);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
    font-size: 14px;
}

.document-type li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #43e97b;
    font-weight: bold;
}

.verification-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.account-benefits-section {
    padding: 60px 0;
    background-color: var(--dark-blue);
}

.benefits-intro {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-intro p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--section-blue);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    color: #00c6ff;
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit-card p {
    color: var(--white);
    line-height: 1.5;
    font-size: 14px;
}

.member-bonuses-table {
    background: var(--section-blue);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
}

.member-bonuses-table h3 {
    color: #00c6ff;
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
}

.troubleshooting-section {
    padding: 60px 0;
    background-color: var(--section-blue);
}

.troubleshooting-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.troubleshooting-text {
    color: var(--white);
}

.troubleshooting-text p {
    line-height: 1.6;
    font-size: 16px;
}

.troubleshooting-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-solution {
    background: var(--dark-blue);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid var(--primary-blue);
}

.problem-solution h3 {
    color: #00c6ff;
    margin-bottom: 20px;
    font-size: 18px;
}

.solution-steps ol,
.solution-steps ul {
    color: var(--white);
    line-height: 1.5;
}

.solution-steps li {
    margin-bottom: 8px;
    font-size: 14px;
}

.quick-fixes {
    background: var(--dark-blue);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
}

.quick-fixes h3 {
    color: #00c6ff;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
}

.fixes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.fix-item {
    background: var(--section-blue);
    padding: 15px;
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    text-align: center;
}

.customer-support-section {
    padding: 60px 0;
    background-color: var(--dark-blue);
}

.support-intro {
    text-align: center;
    margin-bottom: 50px;
}

.support-intro p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-method {
    background: var(--section-blue);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.support-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.support-method h3 {
    color: #00c6ff;
    margin-bottom: 15px;
    font-size: 20px;
}

.support-method p {
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 14px;
}

.support-specialties {
    margin-bottom: 50px;
}

.support-specialties h3 {
    color: #00c6ff;
    margin-bottom: 30px;
    font-size: 22px;
    text-align: center;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.specialty-item {
    background: var(--section-blue);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid var(--primary-blue);
}

.specialty-item h4 {
    color: #43e97b;
    margin-bottom: 15px;
    font-size: 16px;
}

.specialty-item ul {
    list-style: none;
    padding: 0;
}

.specialty-item li {
    color: var(--white);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
}

.specialty-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00c6ff;
    font-weight: bold;
}

.support-promise {
    background: var(--section-blue);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
}

.support-promise h3 {
    color: #00c6ff;
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
}

.promise-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
}

.promise-icon {
    font-size: 24px;
}

@media (max-width: 768px) {
    .login-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .login-cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .login-guide-content,
    .registration-content,
    .verification-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid,
    .troubleshooting-grid,
    .support-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .documents-grid,
    .specialties-grid,
    .promise-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .troubleshooting-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .fixes-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefit-card, .support-method, .problem-solution, .specialty-item {
        padding: 20px;
    }
    
    .member-bonuses-table, .support-promise {
        padding: 25px 20px;
    }
}

.bonus-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.bonus-option-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bonus-option-card:first-child {
    border-color: #43e97b;
    background: rgba(67, 233, 123, 0.08);
}

.bonus-option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--lighter-blue);
}

.bonus-option-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.bonus-option-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: #00c6ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.bonus-option-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .bonus-options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .bonus-option-card {
        padding: 15px;
    }
    
    .bonus-option-emoji {
        font-size: 1.5rem;
    }
}

.tournament-card {
    max-width: 500px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, rgba(30, 89, 227, 0.9), rgba(12, 42, 110, 0.95));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--primary-blue);
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
}

.tournament-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--white);
}

.tournament-tag {
    background-image: var(--register-gradient);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tournament-body {
    padding: 25px;
}

.tournament-prize {
    text-align: center;
    margin-bottom: 20px;
}

.tournament-prize-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.tournament-prize-amount {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tournament-details {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.tournament-detail {
    text-align: center;
    color: var(--white);
    font-size: 0.9rem;
}

.tournament-detail span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.tournament-detail strong {
    color: #ffdd00;
}

@media (max-width: 768px) {
    .tournament-card {
        max-width: 100%;
    }
    
    .tournament-prize-amount {
        font-size: 2rem;
    }
}

.cta-banner-section {
    background: linear-gradient(135deg, #ff9a44, #fc6076);
    padding: 50px 20px;
    text-align: center;
}

.cta-banner-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.cta-banner-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-banner-section .register-now-button {
    background-image: linear-gradient(135deg, #0c2a6e, #1e59e3);
    color: var(--white);
}

@media (max-width: 768px) {
    .cta-banner-section {
        padding: 35px 15px;
    }
    
    .cta-banner-title {
        font-size: 1.6rem;
    }
    
    .cta-banner-tagline {
        font-size: 1rem;
    }
}

.conditions-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 25px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conditions-list li {
    background: rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--lighter-blue);
    border-radius: 0 8px 8px 0;
    padding: 14px 20px;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.conditions-list li:hover {
    background: rgba(0, 0, 0, 0.35);
    border-left-color: #43e97b;
}

@media (max-width: 768px) {
    .conditions-list li {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

.vip-perks-layout {
    max-width: 900px;
    margin: 30px auto 0;
}

.vip-description {
    text-align: left;
    margin-bottom: 35px;
}

.vip-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 15px;
}

.vip-description p:last-child {
    margin-bottom: 0;
}

.vip-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.vip-perk-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.vip-perk-card:hover {
    transform: translateY(-4px);
    border-color: #43e97b;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.vip-perk-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.vip-perk-title {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .vip-perks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .vip-perk-card {
        padding: 15px 10px;
    }
    
    .vip-perk-icon {
        font-size: 1.5rem;
    }
    
    .vip-perk-title {
        font-size: 0.8rem;
    }
    
    .vip-description p {
        font-size: 1rem;
    }
}

.drops-wins-layout {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.drops-wins-text {
    flex: 2;
    min-width: 300px;
}

.drops-wins-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 15px;
}

.drops-wins-text p:last-child {
    margin-bottom: 0;
}

.drops-wins-highlights {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-stat {
    background: linear-gradient(135deg, rgba(30, 89, 227, 0.6), rgba(42, 104, 245, 0.3));
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 18px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-stat:hover {
    transform: translateY(-3px);
    border-color: #ffdd00;
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.highlight-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .drops-wins-layout {
        gap: 25px;
    }
    
    .drops-wins-text {
        flex: 1;
        min-width: 100%;
    }
    
    .drops-wins-text p {
        font-size: 1rem;
    }
    
    .drops-wins-highlights {
        flex-direction: row;
        min-width: 100%;
    }
    
    .highlight-stat {
        flex: 1;
        padding: 15px 10px;
    }
    
    .highlight-number {
        font-size: 1.5rem;
    }
    
    .highlight-label {
        font-size: 0.75rem;
    }
}

.content-card {
    max-width: 900px;
    margin: 25px auto 0;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 30px 35px;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .content-card {
        padding: 20px;
    }
    
    .content-card p {
        font-size: 1rem;
    }
}