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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    overflow-x: hidden;
}

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

.main-header {
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #ff6b35;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.navigation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand .logo-image {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand .logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-register,
.btn-login {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-register:hover {
    background: linear-gradient(45deg, #e55a2b, #d44920);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-login:hover {
    background: #fff;
    color: #1a237e;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 40px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #ff6b35 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 16px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.stat-item:nth-child(1) .stat-number::before {
    content: '👥';
    margin-right: 8px;
    font-size: 1.2rem;
}

.stat-item:nth-child(2) .stat-number::before {
    content: '💰';
    margin-right: 8px;
    font-size: 1.2rem;
}

.stat-item:nth-child(3) .stat-number::before {
    content: '🚀';
    margin-right: 8px;
    font-size: 1.2rem;
}

.stat-item:nth-child(4) .stat-number::before {
    content: '🛟';
    margin-right: 8px;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #e55a2b, #d44920);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a237e;
    transform: translateY(-3px);
}

.trust-indicators {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-preview {
    position: relative;
    z-index: 2;
}

.preview-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.floating-multipliers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.multiplier-badge {
    position: absolute;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.animate-float {
    top: 15%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
    top: 65%;
    left: 5%;
    animation: float 4s ease-in-out infinite 1.5s;
}

.animate-float-slow {
    bottom: 25%;
    right: 25%;
    animation: float 5s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.recent-wins {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    width: 300px;
}

.win-ticker {
    display: flex;
    gap: 20px;
    animation: scroll 15s linear infinite;
}

.win-item {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.game-mechanics-section {
    padding: 60px 20px 80px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #1a237e;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    border-radius: 2px;
}

.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mechanic-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mechanic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
}

.mechanic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.mechanic-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.mechanic-card h3 {
    font-size: 1.6rem;
    color: #1a237e;
    margin-bottom: 20px;
    font-weight: 600;
}

.mechanic-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.live-demo-section {
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.demo-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.demo-game {
    background: #1a237e;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.3);
    overflow: hidden;
    min-width: 0;
}

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

.demo-status {
    background: #dc3545;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
}

.demo-round {
    color: #ccc;
    font-size: 14px;
}

.demo-multiplier {
    text-align: center;
    margin-bottom: 30px;
}

.current-multiplier {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    word-break: break-all;
    max-width: 100%;
}

.demo-bets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bet-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 0;
}

.player {
    font-weight: 600;
    flex-shrink: 0;
}

.amount {
    color: #ff6b35;
    font-weight: 600;
    flex-shrink: 0;
}

.status {
    font-weight: 600;
    text-align: right;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status.cashed {
    color: #28a745;
}

.status.active {
    color: #ffc107;
}

.demo-info h3 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 20px;
    font-weight: 700;
}

.demo-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.demo-stat {
    text-align: center;
    background: #fff;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.demo-stat .stat-label {
    font-size: 0.9rem;
    color: #666;
}

.ad-banner-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.banner-container {
    text-align: center;
}

.ad-banner {
    width: 400px;
    height: 400px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ad-banner:hover {
    transform: scale(1.02);
}

.features-section,
.bonus-section,
.live-stats-section,
.payment-section,
.testimonials-section,
.strategy-section,
.faq-section {
padding: 60px 20px 80px;
}

.features-section {
    background: #fff;
}

.bonus-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.live-stats-section {
    background: #fff;
}

.payment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.strategy-section {
    background: #fff;
}

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #1a237e;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.bonus-card.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-card h3 {
    font-size: 1.8rem;
    color: #1a237e;
    margin-bottom: 20px;
    font-weight: 700;
}

.bonus-amount {
    font-size: 2.5rem;
    color: #ff6b35;
    font-weight: 800;
    margin-bottom: 30px;
}

.bonus-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.bonus-features li {
    padding: 8px 0;
    color: #666;
    font-size: 1rem;
}

.bonus-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Live Statistics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 40px 30px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ff6b35;
    font-weight: 600;
}

.multiplier-history {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.multiplier {
    padding: 8px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
}

.multiplier.high {
    background: #28a745;
    color: #fff;
}

.multiplier.medium {
    background: #ffc107;
    color: #000;
}

.multiplier.low {
    background: #dc3545;
    color: #fff;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.winner-rank {
    background: #ff6b35;
    color: #fff;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    min-width: 25px;
    text-align: center;
}

.winner-name {
    font-weight: 600;
    flex: 1;
    margin-left: 15px;
}

.winner-amount {
    color: #ff6b35;
    font-weight: 700;
}

.activity-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.activity-label {
    font-weight: 500;
}

.activity-value {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Payment Section */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-category {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-category h3 {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.payment-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.payment-item img {
    width: 40px;
    height: 40px;
}

.payment-item span {
    font-weight: 600;
    color: #1a237e;
    flex: 1;
}

.payment-info {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 5px solid #ff6b35;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info strong {
    color: #1a237e;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}

.author-info span {
    color: #999;
    font-size: 0.9rem;
    display: block;
    margin-top: 2px;
}

/* Strategy Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 30px 25px;
    border-radius: 15px;
    color: #fff;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.tip-card:hover::before {
    animation: shine 0.5s ease-in-out;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ff6b35;
}

.tip-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    background: #1a237e;
    color: #fff;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
    background: #3949ab;
}

.faq-answer {
    padding: 25px;
    display: none;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 20px; /* Уменьшены отступы */
    background: linear-gradient(135deg, #1a237e 0%, #ff6b35 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: #fff;
    color: #1a237e;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #1a237e;
    transform: translateY(-3px);
}

.cta-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.payment-methods {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
    margin-bottom: 30px;
}

.payment-methods h4 {
    color: #ff6b35;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 45px;
    height: 45px;
    filter: brightness(0.8);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.payment-icon:hover {
    filter: brightness(1);
    transform: scale(1.1);
    background: rgba(255, 107, 53, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Loading Animation */
.loaded {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Mobile Menu at 980px */
@media (max-width: 1024px) {
    .demo-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 980px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 35, 126, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
    }
    
    .auth-buttons {
        display: flex;
        gap: 10px;
    }
    
    .btn-register,
    .btn-login {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 8px;
    }
    
    .stat-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .stat-number {
        font-size: 15px;
    }
    
    .stat-label {
        font-size: 13px;
        color: #000;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .demo-stats {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .current-multiplier {
        font-size: 3rem;
    }
    
    .bet-item {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .demo-game {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .auth-buttons {
        gap: 8px;
    }
    
    .btn-register,
    .btn-login {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .current-multiplier {
        font-size: 2.5rem;
    }
    
    .bet-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .status {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 8px 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .ad-banner {
        width: 100%;
        height: auto;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .payment-icon {
        width: 35px;
        height: 35px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .auth-buttons {
        gap: 6px;
    }
    
    .btn-register,
    .btn-login {
        padding: 5px 10px;
        font-size: 10px;
        min-width: 60px;
    }
    
    .current-multiplier {
        font-size: 2rem;
    }
    
    .demo-game {
        padding: 15px;
    }
    
    .demo-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .navigation-container {
        padding: 10px 15px;
    }
    
    .nav-brand .logo-image {
        height: 45px;
    }
    
    .auth-buttons {
        gap: 4px;
    }
    
    .btn-register,
    .btn-login {
        padding: 4px 8px;
        font-size: 9px;
        min-width: 50px;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .current-multiplier {
        font-size: 1.5rem;
    }
    
    .demo-game {
        padding: 10px;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .ad-banner-section,
    .cta-section {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .hero-section {
        background: #fff;
        color: #000;
    }
    
    .hero-title,
    .section-title {
        color: #000;
    }
}
