* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: #0a1729;
}

header {
    background: linear-gradient(to right, #153bb0, #0d2f7e);
    padding: 12px 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.5s ease;
}

.btn:hover:before {
    left: 100%;
}

.login-btn {
    background-color: #1e50e2;
    color: white;
    animation: buttonPulse 3s infinite;
}

.register-btn {
    background-color: #12c7b7;
    color: white;
    animation: buttonPulse 3s infinite 1.5s;
}

.login-btn:hover, .register-btn:hover {
    opacity: 0.95;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero {
    width: 100%;
    min-height: 500px;
    background: url('assets/bg.webp') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 60px 20px;
    margin: 0 auto;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.bonus-container {
    max-width: 650px;
}

.bonus-label {
    display: inline-block;
    background: linear-gradient(45deg, #1e50e2, #12c7b7);
    color: white;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 25px;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.bonus-offer {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 8px;
}

.bonus-container .bonus-offer:last-of-type {
    margin-bottom: 30px;
}

.join-now-btn {
    display: inline-block;
    background: linear-gradient(to bottom, #4cdb7e, #28b95e);
    color: white;
    text-decoration: none;
    padding: 20px 70px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(40, 185, 94, 0.7);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s infinite;
}

.join-now-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.join-now-btn:hover:before {
    left: 100%;
}

.join-now-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(40, 185, 94, 0.8);
    background: linear-gradient(to bottom, #55e287, #2ec567);
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 219, 126, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(76, 219, 126, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 219, 126, 0);
    }
}

.info-section {
    background: linear-gradient(135deg, #0f2744 0%, #1a3a5c 100%);
    padding: 80px 0;
    color: #fff;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e8f4f8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-label {
    font-size: 1rem;
    font-weight: bold;
    color: #12c7b7;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ffffff;
}

.guide-section {
    background: #0a1729;
    padding: 80px 0;
    color: #fff;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.guide-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.guide-block:nth-child(even) .guide-image {
    order: -1;
}

.guide-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.guide-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8f4f8;
    margin-bottom: 20px;
}

.guide-steps {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.guide-steps li {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 12px;
    padding-left: 10px;
}

.guide-steps li:last-child {
    margin-bottom: 0;
}

.guide-image {
    text-align: center;
}

.guide-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.guide-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.games-section {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2744 100%);
    padding: 80px 0;
    color: #fff;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.games-header {
    text-align: center;
    margin-bottom: 60px;
}

.games-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.games-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e8f4f8;
    max-width: 800px;
    margin: 0 auto;
}

.games-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.games-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.games-text .game-category {
    margin-bottom: 30px;
}

.games-text .game-category:last-child {
    margin-bottom: 0;
}

.games-text .category-title {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #12c7b7;
    font-weight: bold;
}

.games-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8f4f8;
}

.games-image {
    text-align: center;
}

.games-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.games-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.games-lobby-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lobby-text {
    max-width: 100%;
}

.lobby-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.lobby-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8f4f8;
    margin-bottom: 20px;
}

.lobby-image {
    text-align: center;
}

.lobby-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.lobby-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.game-types {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.game-type-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.game-type-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-type-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.game-type-title {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #12c7b7;
    font-weight: bold;
}

.game-type-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
}

.slots-image {
    text-align: center;
}

.slots-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.slots-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.live-casino-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.live-casino-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8f4f8;
    margin-bottom: 20px;
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.live-game-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.live-game-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.live-game-title {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #12c7b7;
    font-weight: bold;
}

.live-game-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-text {
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .bonus-offer {
        font-size: 2rem;
    }
    
    .join-now-btn {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
    
    .info-section {
        padding: 60px 0;
    }
    
    .info-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        padding: 20px;
    }
    
    .guide-section {
        padding: 60px 0;
    }
    
    .guide-content {
        gap: 40px;
    }
    
    .guide-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guide-block:nth-child(even) .guide-image {
        order: 0;
    }
    
    .guide-text h2 {
        font-size: 1.8rem;
    }
    
    .guide-text p {
        font-size: 1rem;
    }
    
    .guide-image img {
        max-width: 300px;
    }
    
    .games-section {
        padding: 60px 0;
    }
    
    .games-header {
        margin-bottom: 40px;
    }
    
    .games-header h2 {
        font-size: 2rem;
    }
    
    .games-header p {
        font-size: 1.1rem;
    }
    
    .games-content {
        gap: 40px;
    }
    
    .games-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .games-lobby-section {
        gap: 30px;
    }
    
    .lobby-text {
        order: 1;
    }
    
    .lobby-image {
        order: 2;
    }
    
    .game-types {
        order: 3;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .game-type-grid {
        order: 1;
    }
    
    .slots-image {
        order: 2;
    }
    
    .live-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: row;
        gap: 15px;
        padding: 10px 20px;
        flex-wrap: wrap;
    }
    
    .nav-buttons {
        gap: 8px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .bonus-offer {
        font-size: 1.6rem;
    }
    
    .join-now-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .info-intro {
        font-size: 1rem;
    }
    
    .guide-text h2 {
        font-size: 1.5rem;
    }
    
    .guide-steps {
        padding: 20px;
    }
    
    .guide-image img {
        max-width: 250px;
    }
    
    .games-header h2 {
        font-size: 1.7rem;
    }
    
    .games-header p {
        font-size: 1rem;
    }
    
    .games-text .category-title {
        font-size: 1.3rem;
    }
    
    .lobby-text h2 {
        font-size: 1.7rem;
    }
    
    .live-casino-section h2 {
        font-size: 1.7rem;
    }
    
    .game-type-item {
        padding: 20px;
    }
    
    .live-game-item {
        padding: 20px;
    }
}

.bonuses-section {
    background: #0a1729;
    padding: 80px 0;
    color: #fff;
}

.bonuses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bonuses-header {
    text-align: center;
    margin-bottom: 60px;
}

.bonuses-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.bonuses-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e8f4f8;
    max-width: 800px;
    margin: 0 auto;
}

.bonuses-table-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    overflow-x: auto;
}

.bonuses-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.bonuses-table th {
    background: linear-gradient(45deg, #1e50e2, #12c7b7);
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonuses-table th:first-child {
    border-top-left-radius: 8px;
}

.bonuses-table th:last-child {
    border-top-right-radius: 8px;
}

.bonuses-table td {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ffffff;
    vertical-align: top;
}

.bonuses-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bonuses-table tr:last-child td {
    border-bottom: none;
}

.bonus-image-container, .bonuses-image-container {
    text-align: center;
    margin: 50px 0;
}

.bonus-image-container img, .bonuses-image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.bonus-image-container img:hover, .bonuses-image-container img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bonuses-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.bonus-layout-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bonus-layout-block.reverse .bonus-section {
    order: 2;
}

.bonus-layout-block.reverse .bonuses-image-container {
    order: 1;
}

.bonus-section-full {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: 100%;
}

.bonus-section-full:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bonus-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bonus-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bonus-section h3, .bonus-section-full h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #12c7b7;
    line-height: 1.3;
}

.bonus-section p, .bonus-section-full p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8f4f8;
    margin-bottom: 15px;
}

.bonus-section p:last-child, .bonus-section-full p:last-child {
    margin-bottom: 0;
}

.bonus-section strong, .bonus-section-full strong {
    color: #ffffff;
}

.bonus-image-container, .bonuses-image-container {
    text-align: center;
}

.bonus-image-container img, .bonuses-image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.bonus-image-container img:hover, .bonuses-image-container img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .bonuses-section {
        padding: 60px 0;
    }
    
    .bonuses-header {
        margin-bottom: 40px;
    }
    
    .bonuses-header h2 {
        font-size: 2rem;
    }
    
    .bonuses-header p {
        font-size: 1.1rem;
    }
    
    .bonuses-table-container {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .bonuses-table {
        font-size: 0.9rem;
    }
    
    .bonuses-table th {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .bonuses-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .bonus-layout-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-layout-block.reverse .bonus-section {
        order: 1;
    }
    
    .bonus-layout-block.reverse .bonuses-image-container {
        order: 2;
    }
    
    .bonus-image-container img, .bonuses-image-container img {
        max-width: 300px;
    }
    
    .bonuses-content {
        gap: 30px;
    }
    
    .bonus-section {
        padding: 25px;
    }
    
    .bonus-section-full {
        padding: 25px;
    }
    
    .bonus-section h3, .bonus-section-full h3 {
        font-size: 1.7rem;
    }
    
    .bonus-section p, .bonus-section-full p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .bonuses-header h2 {
        font-size: 1.7rem;
    }
    
    .bonuses-header p {
        font-size: 1rem;
    }
    
    .bonuses-table-container {
        padding: 15px;
    }
    
    .bonuses-table th {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .bonuses-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .bonus-image-container img, .bonuses-image-container img {
        max-width: 250px;
    }
    
    .bonus-section {
        padding: 20px;
    }
    
    .bonus-section-full {
        padding: 20px;
    }
    
    .bonus-section h3, .bonus-section-full h3 {
        font-size: 1.5rem;
    }
    
    .bonus-section p, .bonus-section-full p {
        font-size: 0.95rem;
    }
}

.payment-section {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2744 100%);
    padding: 80px 0;
    color: #fff;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-header {
    text-align: center;
    margin-bottom: 60px;
}

.payment-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.payment-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e8f4f8;
    max-width: 800px;
    margin: 0 auto;
}

.payment-table-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    overflow-x: auto;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.payment-table th {
    background: linear-gradient(45deg, #1e50e2, #12c7b7);
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-table th:first-child {
    border-top-left-radius: 8px;
}

.payment-table th:last-child {
    border-top-right-radius: 8px;
}

.payment-table td {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ffffff;
    vertical-align: top;
}

.payment-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.payment-table tr:last-child td {
    border-bottom: none;
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.payment-layout-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.payment-layout-block.reverse .payment-section-content {
    order: 2;
}

.payment-layout-block.reverse .payment-brand-container {
    order: 1;
}

.payment-section-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.payment-section-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.payment-section-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #12c7b7;
    line-height: 1.3;
}

.payment-section-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8f4f8;
    margin-bottom: 15px;
}

.payment-section-content p:last-child {
    margin-bottom: 0;
}

.payment-steps {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.payment-steps li {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 12px;
    padding-left: 10px;
}

.payment-steps li:last-child {
    margin-bottom: 0;
}

.payment-image-container, .payment-brand-container {
    text-align: center;
}

.payment-image-container img, .payment-brand-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.payment-image-container img:hover, .payment-brand-container img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .payment-section {
        padding: 60px 0;
    }
    
    .payment-header {
        margin-bottom: 40px;
    }
    
    .payment-header h2 {
        font-size: 2rem;
    }
    
    .payment-header p {
        font-size: 1.1rem;
    }
    
    .payment-table-container {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .payment-table {
        font-size: 0.9rem;
    }
    
    .payment-table th {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .payment-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .payment-layout-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-layout-block.reverse .payment-section-content {
        order: 1;
    }
    
    .payment-layout-block.reverse .payment-brand-container {
        order: 2;
    }
    
    .payment-image-container img, .payment-brand-container img {
        max-width: 300px;
    }
    
    .payment-content {
        gap: 30px;
    }
    
    .payment-section-content {
        padding: 25px;
    }
    
    .payment-section-content h3 {
        font-size: 1.7rem;
    }
    
    .payment-section-content p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .payment-header h2 {
        font-size: 1.7rem;
    }
    
    .payment-header p {
        font-size: 1rem;
    }
    
    .payment-table-container {
        padding: 15px;
    }
    
    .payment-table th {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .payment-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .payment-image-container img, .payment-brand-container img {
        max-width: 250px;
    }
    
    .payment-section-content {
        padding: 20px;
    }
    
    .payment-section-content h3 {
        font-size: 1.5rem;
    }
    
    .payment-section-content p {
        font-size: 0.95rem;
    }
    
    .payment-steps {
        padding: 20px;
    }
}

.faq-section {
    background: #0a1729;
    padding: 80px 0;
    color: #fff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #12c7b7;
    line-height: 1.4;
    font-weight: bold;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8f4f8;
    margin: 0;
}

.site-footer {
    background: linear-gradient(135deg, #0d2f7e 0%, #153bb0 100%);
    padding: 40px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-container p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e8f4f8;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-content {
        gap: 25px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item p {
        font-size: 1rem;
    }
    
    .site-footer {
        padding: 30px 0;
    }
    
    .footer-container p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .faq-header h2 {
        font-size: 1.7rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    .footer-container p {
        font-size: 0.85rem;
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #4cdb7e, #28b95e);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(40, 185, 94, 0.6);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    animation: ctaGlow 2.5s infinite;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(40, 185, 94, 0.8);
    background: linear-gradient(45deg, #55e287, #2ec567);
}

@keyframes ctaGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 219, 126, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 219, 126, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 219, 126, 0);
    }
}

.cta-register {
    background: linear-gradient(45deg, #1e50e2, #4f7aff);
    box-shadow: 0 6px 20px rgba(30, 80, 226, 0.6);
}

.cta-register:hover {
    background: linear-gradient(45deg, #2a5dff, #5f87ff);
    box-shadow: 0 10px 30px rgba(30, 80, 226, 0.8);
}

.cta-games {
    background: linear-gradient(45deg, #ff6b35, #ff8f65);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.cta-games:hover {
    background: linear-gradient(45deg, #ff7649, #ffa279);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.8);
}

.cta-bonus {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
}

.cta-bonus:hover {
    background: linear-gradient(45deg, #ff5a6b, #ff7e8e);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.8);
}

.cta-win {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.cta-win:hover {
    background: linear-gradient(45deg, #ffe135, #fff063);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.8);
    color: #333;
}

.link {
    color: #12c7b7;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.link:hover {
    color: #4cdb7e;
    border-bottom-color: #4cdb7e;
    text-shadow: 0 0 8px rgba(76, 219, 126, 0.5);
}

.link:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #12c7b7, #4cdb7e);
    transition: width 0.3s ease;
}

.link:hover:before {
    width: 100%;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 15px;
    }
}

@media (max-width: 600px) {
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 12px;
    }
} 