:root {
    --primary-color: #000000;
    --accent-color: #53FF00;
    --text-color: #FFFFFF;
    --button-text: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background-color: var(--primary-color);
    padding: 10px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo img {
    height: 21px;
    width: auto;
}

.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 15px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-color);
    outline: none;
    padding: 5px;
    font-size: 14px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover:after {
    height: 100%;
}

.btn-login {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(83, 255, 0, 0.1);
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(83, 255, 0, 0.2);
    transform: translateY(-2px);
}

.btn-register {
    background-color: var(--accent-color);
    color: var(--button-text);
    box-shadow: 0 0 10px rgba(83, 255, 0, 0.3);
}

.btn-register:hover {
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(83, 255, 0, 0.5);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background-image.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero__content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__description {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero__bonus {
    margin-top: 40px;
}

.hero__bonus-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero__bonus-amount {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 25px;
    display: block;
}

.btn-join {
    background-color: var(--accent-color);
    color: var(--button-text);
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(83, 255, 0, 0.4);
}

.btn-join:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(83, 255, 0, 0.6);
}

.info-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.info-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 20px;
    font-size: 16px;
}

.info-table td:first-child {
    width: 30%;
    font-weight: bold;
    color: var(--accent-color);
}

.info-table td:last-child {
    color: var(--text-color);
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .search-container {
        display: none;
    }
    
    .header__inner {
        justify-content: space-between;
    }
    
    .auth-buttons {
        gap: 5px;
    }
    
    .btn {
        padding: 8px 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero__description {
        font-size: 14px;
    }
    
    .hero__bonus-amount {
        font-size: 36px;
    }
    
    .btn-join {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .logo img {
        height: 19px;
    }
    
    .hero__background {
        background-position: 80% center;
    }

    .hero__background:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }
    
    .hero__content {
        position: relative;
        z-index: 2;
    }
    
    .info-section {
        padding: 50px 0;
    }
    
    .info-table td {
        padding: 15px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.games-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.games-content {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.games-text {
    flex: 1;
}

.games-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.games-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.games-image {
    flex: 0 0 40%;
    border-radius: 10px;
    overflow: hidden;
}

.games-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.games-image img:hover {
    transform: scale(1.02);
}

.game-types {
    margin-top: 30px;
}

.game-type {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.game-type:last-child {
    border-bottom: none;
}

.game-type strong {
    color: var(--accent-color);
    font-weight: bold;
}

.live-casino {
    display: flex;
    gap: 40px;
    flex-direction: row-reverse;
}

.live-casino-image {
    flex: 0 0 40%;
    border-radius: 10px;
    overflow: hidden;
}

.live-casino-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.live-casino-image img:hover {
    transform: scale(1.02);
}

.live-casino-text {
    flex: 1;
}

.live-casino-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.live-casino-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.live-games-list {
    list-style: none;
    margin-bottom: 20px;
}

.live-games-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.live-games-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.live-games-list li:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .games-content, .live-casino {
        flex-direction: column;
    }
    
    .games-image, .live-casino-image {
        margin-top: 30px;
        flex: none;
    }
    
    .live-casino {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 50px 0;
    }
    
    .games-text h2 {
        font-size: 24px;
    }
    
    .live-casino-text h3 {
        font-size: 22px;
    }
    
    .games-content {
        margin-bottom: 50px;
    }
}

.registration-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.registration-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.registration-text {
    flex: 1;
}

.registration-image {
    flex: 0 0 45%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.registration-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.registration-image img:hover {
    transform: scale(1.02);
}

.registration-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.registration-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.process-steps {
    padding-left: 25px;
    counter-reset: step-counter;
    list-style: none;
}

.process-steps li {
    position: relative;
    padding: 10px 0 10px 35px;
    margin-bottom: 15px;
    counter-increment: step-counter;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    width: 25px;
    height: 25px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.login-content {
    margin: 0 auto;
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--button-text);
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(83, 255, 0, 0.4);
    margin-top: 30px;
    display: inline-block;
}

.btn-cta:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(83, 255, 0, 0.6);
}

.payment-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.payment-content, .withdrawal-content {
    margin-bottom: 40px;
    text-align: left;
}

.payment-image {
    margin: 40px 0;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.payment-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.payment-image img:hover {
    transform: scale(1.02);
}

.payment-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-color);
    text-align: left;
}

.payment-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.withdrawal-content {
    margin-top: 60px;
}

.process-steps {
    max-width: 100%;
}

.step-item {
    position: relative;
    padding: 15px 0 15px 45px;
    margin-bottom: 15px;
    text-align: left;
}

.step-number {
    position: absolute;
    left: 0;
    top: 12px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 992px) {
    .registration-content {
        flex-direction: column;
    }
    
    .registration-image {
        flex: none;
        margin-top: 30px;
    }

    .payment-content {
        flex-direction: column;
    }
    
    .payment-image {
        flex: none;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .registration-section {
        padding: 50px 0;
    }
    
    .registration-section h2 {
        font-size: 24px;
    }
    
    .process-steps li {
        padding-left: 30px;
    }
    
    .process-steps li::before {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .payment-section {
        padding: 50px 0;
    }
    
    .payment-section h2 {
        font-size: 24px;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .payment-image {
        margin: 30px auto;
    }
    
    .step-number {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    
    .step-item {
        padding-left: 40px;
        margin-bottom: 10px;
    }
}

.bonuses-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.bonuses-header {
    margin-bottom: 40px;
}

.bonuses-header h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.bonuses-header p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.bonuses-table-wrapper {
    margin-bottom: 50px;
    overflow-x: auto;
}

.bonuses-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.bonuses-table th, 
.bonuses-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonuses-table th {
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.bonuses-table td:first-child {
    font-weight: bold;
    width: 20%;
}

.bonuses-table tr:last-child td {
    border-bottom: none;
}

.tournaments-vip {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.tournaments-content {
    flex: 1;
}

.vip-image {
    flex: 0 0 40%;
    border-radius: 10px;
    overflow: hidden;
}

.vip-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.vip-image img:hover {
    transform: scale(1.02);
}

.tournaments-list,
.vip-benefits {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.tournaments-list li,
.vip-benefits li {
    position: relative;
    padding: 8px 0 8px 25px;
    margin-bottom: 5px;
}

.tournaments-list li:before,
.vip-benefits li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.bonus-details {
    margin-top: 40px;
}

.bonus-details p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.vip-program {
    margin: 30px 0;
}

@media (max-width: 992px) {
    .tournaments-vip {
        flex-direction: column;
    }
    
    .vip-image {
        flex: none;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .bonuses-section {
        padding: 50px 0;
    }
    
    .bonuses-header h2 {
        font-size: 24px;
    }
    
    .bonuses-table th,
    .bonuses-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .tournaments-list li,
    .vip-benefits li {
        padding-left: 20px;
    }
    
    .tournaments-list li:before,
    .vip-benefits li:before {
        width: 6px;
        height: 6px;
    }
}

.claim-bonuses-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.claim-bonuses-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.claim-bonuses-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.pros-cons-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.pros-cons-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.pros-cons-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.pros-cons-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
}

.pros-cons-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.pros-cons-table th {
    padding: 15px 20px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-cons-table td {
    padding: 15px 20px;
    vertical-align: top;
}

.pros-cons-table td:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-item, .cons-item {
    padding: 10px 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .claim-bonuses-section, 
    .pros-cons-section {
        padding: 50px 0;
    }
    
    .claim-bonuses-section h2,
    .pros-cons-section h2 {
        font-size: 24px;
    }
    
    .pros-cons-table th {
        padding: 12px 15px;
    }
    
    .pros-cons-table td {
        padding: 12px 15px;
    }
    
    .pros-item, .cons-item {
        padding: 8px 0;
    }
}

.faq-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-color);
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question span:first-child {
    font-weight: bold;
    font-size: 16px;
}

.faq-icon {
    color: var(--accent-color);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer {
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer.active {
        padding: 0 15px 15px;
    }
    
    .footer {
        padding: 30px 0;
    }
}

.text-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.text-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: var(--accent-color);
    opacity: 0.9;
}

.text-link:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
} 