/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #0f4c75 0%, #1e5f8e 50%, #2a7fb8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 20px;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: 40px;
    font-style: italic;
    letter-spacing: -2px;
}

.logo .blue {
    color: #00a6ff;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 0;
    position: relative;
    z-index: 10000;
}

.nav-item {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 0 8px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-item:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00a6ff;
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-item:hover::after {
    transform: scaleX(1);
}

.dropdown-arrow {
    font-size: 9px;
    opacity: 0.6;
}

.higher-lower {
    background: linear-gradient(90deg, #ff6b1a, #ffa51e);
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 4px;
    margin-left: 10px;
    height: auto;
    font-weight: 600;
}

.higher-lower:hover {
    background: linear-gradient(90deg, #ff5500, #ff9500);
}

.header-right {
    display: flex;
    gap: 6px;
    align-items: center;
    position: relative;
    z-index: 1000;
    flex-shrink: 0;
}

.currency-display {
    color: #ffc107;
    font-size: 16px;
    font-weight: bold;
    margin-right: 6px;
}

.gift-bonus {
    font-size: 18px;
    cursor: pointer;
    margin-right: 6px;
}

.btn {
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 10px;
    transition: all 0.2s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-register {
    background: #8bc34a;
    color: #fff;
}

.btn-register:hover {
    background: #7cb342;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139,195,74,0.3);
}

.btn-login {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-login:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.settings-btn {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
}

.settings-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 56px;
    width: 60px;
    height: calc(100vh - 56px);
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    border-right: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
}

.sidebar-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    margin: 4px 0;
    transition: all 0.2s;
}

.sidebar-item:hover {
    background: rgba(255,255,255,0.1);
    color: #00a6ff;
}

.sidebar-item.active {
    background: rgba(0,166,255,0.2);
    color: #00a6ff;
}

/* Main Content Area */
.main-wrapper {
    margin-top: 56px;
    margin-left: 60px;
    min-height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
}

/* Hero Slider Section */
.hero-section {
    height: 400px;
    background: rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.match-card {
    background: #1e5f8e;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    max-width: 500px;
    margin-left: 100px;
}

.match-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.match-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-logo {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.vs {
    font-size: 24px;
    font-weight: bold;
    color: rgba(255,255,255,0.5);
}

.odds-row {
    display: flex;
    gap: 10px;
}

.odd-btn {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.odd-btn:hover {
    background: rgba(0,166,255,0.3);
    border-color: #00a6ff;
}

.odd-type {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.odd-value {
    font-size: 18px;
    font-weight: bold;
    color: #00a6ff;
}

.more-bets {
    background: #00a6ff;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.more-bets:hover {
    background: #0090e0;
}

/* Central Diamond Logo */
.central-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.15;
    pointer-events: none;
}

.diamond {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00a6ff, #0078ff);
    transform: rotate(45deg);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,166,255,0.5);
}

/* Sports Filter Bar - Maximized */
.sports-filter {
    background: rgba(0,0,0,0.5);
    padding: 20px 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    overflow-x: auto;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.sport-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.sport-btn:hover {
    background: rgba(0,166,255,0.3);
    border-color: #00a6ff;
}

.sport-btn.active {
    background: #00a6ff;
    border-color: #00a6ff;
}

/* Custom Text Area */
.custom-content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 30px;
}

.custom-content + .custom-content {
    margin-top: 10px;
}

.editable-area {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 30px;
    min-height: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.editable-area h2 {
    color: #1e3c72;
    margin-bottom: 15px;
}

.editable-area p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.content-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.content-register-btn {
    background: linear-gradient(135deg, #8bc34a, #7cb342);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(139,195,74,0.3);
}

.content-register-btn:hover {
    background: linear-gradient(135deg, #7cb342, #6ba03a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,195,74,0.4);
}

.content-bonus-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.content-bonus-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Contacts Table */
.contacts-table-container {
    margin: 30px 0;
}

.contacts-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contacts-table tr {
    border-bottom: 1px solid #e0e0e0;
}

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

.contact-label {
    background: #f8f9fa;
    padding: 15px 20px;
    font-weight: bold;
    color: #333;
    width: 30%;
    vertical-align: top;
    border-right: 1px solid #e0e0e0;
}

.contact-value {
    padding: 15px 20px;
    color: #666;
    line-height: 1.5;
}

.contact-value a {
    color: #00a6ff;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

/* Contact Buttons Specific Styles */
#customText3 .content-register-btn {
    background: linear-gradient(135deg, #00a6ff, #0078ff);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,166,255,0.3);
}

#customText3 .content-register-btn:hover {
    background: linear-gradient(135deg, #0078ff, #0056cc);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,166,255,0.4);
}

#customText3 .content-bonus-btn {
    background: linear-gradient(135deg, #8bc34a, #7cb342);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(139,195,74,0.3);
}

#customText3 .content-bonus-btn:hover {
    background: linear-gradient(135deg, #7cb342, #6ba03a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,195,74,0.4);
}

/* Side by Side Layout */
.side-by-side-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.side-block {
    width: 100%;
}

/* Mobile Apps Styles */
.mobile-apps-container {
    margin: 20px 0;
}

.mobile-app-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.app-number {
    background: #00a6ff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.app-image {
    margin-right: 15px;
    flex-shrink: 0;
}

.phone-mockup {
    font-size: 40px;
    background: #333;
    color: #fff;
    width: 60px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-info {
    flex: 1;
    margin-right: 15px;
}

.app-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.star {
    color: #ffc107;
    font-size: 16px;
}

.rating {
    font-size: 14px;
    color: #666;
}

.app-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-icon {
    font-size: 14px;
    color: #666;
}

.comment-count {
    font-size: 14px;
    color: #666;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.app-details-btn {
    background: transparent;
    color: #00a6ff;
    border: 1px solid #00a6ff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.app-details-btn:hover {
    background: #00a6ff;
    color: #fff;
}

.app-download-btn {
    background: #00a6ff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.app-download-btn:hover {
    background: #0078ff;
}

/* Bonuses Section */
.bonuses-section {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px;
}

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

.bonuses-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bonus-card-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bonus-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.bonus-visual {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bonus-icon-large {
    font-size: 60px;
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 15px;
}

.bonus-number {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
    z-index: 2;
}

.bonus-calendar {
    font-size: 45px;
    font-weight: bold;
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.bonus-freebet {
    font-size: 30px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0,255,136,0.5);
    background: rgba(0,0,0,0.3);
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #00ff88;
}

.age-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #1e3c72;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.bonus-info {
    padding: 20px;
}

.bonus-card-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bonus-value {
    font-size: 20px;
    font-weight: bold;
    color: #00a6ff;
    margin-bottom: 15px;
}

.bonus-get-btn {
    width: 100%;
    background: linear-gradient(135deg, #8bc34a, #7cb342);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(139,195,74,0.3);
}

.bonus-get-btn:hover {
    background: linear-gradient(135deg, #7cb342, #6ba03a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139,195,74,0.4);
}

.more-bonuses-btn-container {
    text-align: center;
    margin-top: 30px;
}

.more-bonuses-btn {
    background: linear-gradient(135deg, #00a6ff, #0078ff);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,166,255,0.3);
}

.more-bonuses-btn:hover {
    background: linear-gradient(135deg, #0078ff, #0056cc);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,166,255,0.4);
}

/* Right Side Buttons - Updated */
.right-buttons {
    position: absolute;
    right: 160px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.app-buttons, .mirror-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn, .mirror-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 300px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.ios-btn {
    background: linear-gradient(135deg, #007AFF, #0056CC);
    color: #fff;
}

.android-btn {
    background: linear-gradient(135deg, #3DDC84, #2E7D32);
    color: #fff;
}

.login-btn {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: #fff;
}

.register-btn {
    background: linear-gradient(135deg, #00A6FF, #0078FF);
    color: #fff;
}

.app-btn:hover, .mirror-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 2px;
}

/* Mobile App and Mirror Buttons */
.app-buttons-mobile, .mirror-buttons-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.app-btn-mobile, .mirror-btn-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.app-btn-mobile.ios-btn {
    background: linear-gradient(135deg, #007AFF, #0056CC);
    color: #fff;
}

.app-btn-mobile.android-btn {
    background: linear-gradient(135deg, #34A853, #2E7D32);
    color: #fff;
}

.mirror-btn-mobile.login-btn {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: #fff;
}

.mirror-btn-mobile.register-btn {
    background: linear-gradient(135deg, #00A6FF, #0078FF);
    color: #fff;
}

.app-btn-mobile:hover, .mirror-btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Breadcrumbs removed */

/* Bonus Cards Styles */
.bonus-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(31, 41, 55, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bonus-card {
    background: transparent;
    padding: 20px;
    border-bottom: 1px solid #374151;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus-card:last-child {
    border-bottom: none;
}

.bonus-card:hover {
    background: rgba(59, 130, 246, 0.1);
}

.bonus-card.active {
    background: rgba(59, 130, 246, 0.15);
    border-left: 4px solid #3b82f6;
}

.bonus-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.bonus-content {
    flex: 1;
}

.bonus-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.bonus-description {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.4;
}

.bonus-amount {
    color: #10b981;
    font-weight: bold;
}

.registration-btn {
    background: linear-gradient(135deg, #8bc34a, #7cb342);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(139,195,74,0.3);
}

.registration-btn:hover {
    background: linear-gradient(135deg, #7cb342, #6ba03a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139,195,74,0.4);
}

/* Card Content Layout */
.card-content {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.bonus-info {
    flex: 1;
    text-align: left;
}

.bonus-title-large {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.get-bonus-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.get-bonus-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.bonus-cards {
    width: 280px;
    flex-shrink: 0;
}

/* Footer - Fixed */
.footer {
    background: rgba(15, 25, 35, 0.95);
    color: rgba(255,255,255,0.7);
    padding: 40px 30px 20px;
    margin-left: 0;
    width: 100%;
}

/* Футер на всю ширину на всех разрешениях */
@media (min-width: 769px) {
    .footer {
        margin-left: 0;
        width: 100%;
    }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00a6ff;
}

.partners-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.partners-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.partners-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    width: 100px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.2s;
    cursor: pointer;
}

.partner-logo:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideOut {
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.match-card {
    animation: slideIn 0.6s ease-out;
}

.central-logo {
    animation: pulse 3s infinite;
}

/* Responsive */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    
    .main-wrapper {
        margin-left: 0;
    }
    
    .footer {
        margin-left: 0;
        width: 100%;
    }
    
    .horizontal-menu {
        display: block;
    }
    
    .header-right .btn {
        display: inline-block;
        padding: 6px 10px;
        font-size: 10px;
        margin-left: 6px;
    }
    
    .settings-dropdown {
        display: none;
    }
    
    .currency-display,
    .gift-bonus {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-left: 8px;
    }
    
    .main-wrapper {
        margin-left: 0;
    }
    
    .sidebar {
        display: none;
    }
    
    .sports-filter {
        display: none;
    }
    
    .main-wrapper {
        margin-left: 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .bonus-info {
        order: 1;
        text-align: center;
    }
    
    .bonus-title-large {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .bonus-cards {
        order: 2;
        justify-content: center;
    }
    
    .match-card {
        margin-left: 0;
        max-width: 100%;
    }
    
    .right-buttons {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px 0;
        gap: 10px;
    }

    .app-buttons, .mirror-buttons {
        flex-direction: row;
        gap: 8px;
    }

    .app-btn, .mirror-btn {
        min-width: 180px;
        padding: 10px 12px;
    }

    .btn-title {
        font-size: 11px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .partners-grid {
        gap: 15px;
    }
    
    .partner-logo {
        width: 80px;
        height: 50px;
        font-size: 20px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonuses-title {
        font-size: 24px;
    }

    .bonus-visual {
        height: 150px;
    }

    .bonus-number {
        font-size: 80px;
    }

    .bonus-calendar {
        font-size: 40px;
        padding: 15px;
    }

    .bonus-freebet {
        font-size: 30px;
        padding: 10px 20px;
    }

    .side-by-side-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mobile-app-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .app-number {
        margin: 0 0 10px 0;
    }

    .app-image {
        margin: 0 0 10px 0;
    }

    .app-info {
        margin: 0 0 10px 0;
    }

    .app-buttons {
        flex-direction: row;
        gap: 10px;
    }
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
    z-index: 10000;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(15, 25, 35, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 99999;
    top: 100%;
    left: 0;
    margin-top: 0;
}

.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(0, 166, 255, 0.2);
    color: #00a6ff;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown .dropdown-content {
    transition: opacity 0.3s ease-in-out;
}

.nav-dropdown:hover .nav-item {
    background: rgba(0, 166, 255, 0.1);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
}

/* Ensure toggle is visible on mobile (overrides later base rule) */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: block !important; }
    .nav-menu { display: none !important; }
    .header-right .btn { display: inline-block !important; }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: rgba(15, 25, 35, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-section {
    margin-bottom: 30px;
}

.mobile-menu-section h3 {
    color: #00a6ff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0, 166, 255, 0.3);
    padding-bottom: 8px;
}

.mobile-menu-section a {
    display: block;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.mobile-menu-section a:hover {
    color: #00a6ff;
    padding-left: 10px;
}

.mobile-menu-section a:last-child {
    border-bottom: none;
}

/* Settings Dropdown */
.settings-dropdown {
    position: relative;
    display: inline-block;
}

.settings-content {
    display: none;
    position: absolute;
    background: rgba(15, 25, 35, 0.98);
    backdrop-filter: blur(10px);
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 99999;
    top: 100%;
    right: 0;
    margin-top: 5px;
}

.settings-content a {
    color: #ffffff;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    font-size: 12px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.settings-content a:last-child {
    border-bottom: none;
}

.settings-content a:hover {
    background: rgba(0, 166, 255, 0.2);
    color: #00a6ff;
}

.settings-dropdown:hover .settings-content {
    display: block;
}

.settings-dropdown:hover .settings-btn {
    background: rgba(0, 166, 255, 0.1);
}

/* Horizontal Menu for Mobile */
.horizontal-menu {
    display: none;
    background: rgba(15, 25, 35, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    position: sticky;
    top: 60px;
    z-index: 1000;
}

.horizontal-menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    gap: 8px;
}

.menu-row:last-child {
    margin-bottom: 0;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 60px;
    flex: 1;
}

.menu-item:hover {
    background: rgba(0, 166, 255, 0.2);
    color: #00a6ff;
    transform: translateY(-2px);
}

.menu-icon {
    font-size: 16px;
    margin-bottom: 3px;
}

.menu-text {
    font-size: 9px;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
}

/* Registration Page Styles */
.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
}

.main-wrapper {
    min-height: 100vh;
}

.content {
    padding: 20px 0;
}

.page-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.page-description {
    color: #9ca3af;
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-info h2 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

.bonus-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(31, 41, 55, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bonus-card {
    background: transparent;
    padding: 20px;
    border-bottom: 1px solid #374151;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus-card:last-child {
    border-bottom: none;
}

.bonus-card.active {
    background: rgba(59, 130, 246, 0.15);
    border-left: 4px solid #3b82f6;
}

.bonus-card:hover {
    background: rgba(59, 130, 246, 0.1);
}

.bonus-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.bonus-content {
    flex: 1;
}

.bonus-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.bonus-description {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.4;
}

.bonus-amount {
    color: #10b981;
    font-weight: bold;
}

.registration-form {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-header {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: #fff;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

.tabs {
    display: flex;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}

.tab {
    flex: 1;
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 11px;
    color: #6b7280;
    transition: all 0.2s;
    font-weight: 500;
    position: relative;
}

.tab.active {
    background: #fff;
    color: #3b82f6;
}

.form-content {
    padding: 16px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: #374151;
    font-size: 11px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 12px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 6px;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.registration-steps {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.registration-steps h2 {
    color: #1f2937;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto 10px;
}

.step-content h3 {
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 5px;
}

.step-content p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
}

.faq-section {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-section h2 {
    color: #1f2937;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: #1f2937;
    font-size: 14px;
    margin: 0;
}

.faq-toggle {
    color: #3b82f6;
    font-size: 18px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    margin-top: 10px;
}

.faq-answer p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Registration Page Styles */
.hero-section {
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.registration-form {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.registration-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.reg-tab {
    flex: 1;
    padding: 12px 16px;
    background: white;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.reg-tab.active {
    background: #00a6ff;
    color: #fff;
}

.reg-tab:hover {
    background: rgba(255, 255, 255, 0.2);
}

.reg-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: white;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00a6ff;
    background: rgba(255, 255, 255, 0.15);
}

.btn-register-submit {
    padding: 15px 30px;
    background: linear-gradient(135deg, #00a6ff 0%, #0088cc 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-register-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 255, 0.3);
}

.terms {
    margin-top: 15px;
    text-align: center;
}

.terms p {
    color: #ccc;
    font-size: 12px;
    margin-bottom: 10px;
}

.terms a {
    color: #00a6ff;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    color: #ccc;
    font-size: 12px;
    cursor: pointer;
}

.bonus-steps-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    text-align: center;
}

.bonus-steps-section h3 {
    font-size: 24px;
    color: #00a6ff;
    margin-bottom: 10px;
}

.bonus-steps-section p {
    color: #333;
    margin-bottom: 30px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: white;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a6ff 0%, #0088cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0 auto 15px;
}

.step-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.step-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.content-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.content-area {
    max-width: 800px;
    margin: 0 auto;
}

.editable-area {
    color: #fff;
    line-height: 1.6;
}

.editable-area h2 {
    color: #00a6ff;
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.editable-area h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.editable-area h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.editable-area p {
    margin-bottom: 15px;
    color: #191919;
}

.editable-area ul,
.editable-area ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.editable-area li {
    margin-bottom: 8px;
    color: #002a86;
}

.editable-area strong {
    color: #1e1e1e;
}

.editable-area a {
    color: #00a6ff;
    text-decoration: none;
}

.editable-area a:hover {
    text-decoration: underline;
}

.bonus-hero-image {
    text-align: center;
    margin-bottom: 30px;
}

.bonus-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-block {
    background: rgba(0, 166, 255, 0.1);
    border: 2px solid #00a6ff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.cta-block h3 {
    color: #00a6ff;
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-block p {
    color: #ccc;
    margin-bottom: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #00a6ff 0%, #0088cc 100%);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 255, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.faq-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.faq-section h3 {
    color: #333 !important;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    color: #333 !important;
    font-size: 16px;
    margin: 0;
}

.faq-toggle {
    font-size: 20px;
    color: #00a6ff;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #333;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile responsive for registration page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .registration-tabs {
        flex-direction: column;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .bonus-steps-section h3 {
        font-size: 20px;
    }
    
    .editable-area h2 {
        font-size: 22px;
    }
    
    .editable-area h3 {
        font-size: 18px;
    }
    
    .cta-block h3 {
        font-size: 20px;
    }
    
    .faq-section h3 {
        font-size: 20px;
    }
}