/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ffd700;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffd700" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23ffd700" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="1" fill="%23ffd700" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
    background-size: cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 0, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #ffd700, #ff6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.4);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.6);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ===== SECTIONS ===== */
.section {
    margin: 80px 0;
    padding: 60px 0;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== STATS TABLE ===== */
.stats-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 50px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stats-table table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th,
.stats-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-table th {
    background: linear-gradient(45deg, #ffd700, #ff6347);
    color: #000;
    font-weight: bold;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* ===== DIFFICULTY LEVELS ===== */
.difficulty-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.difficulty-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    border-left: 5px solid;
    transition: all 0.3s;
}

.difficulty-card.easy { border-left-color: #4caf50; }
.difficulty-card.medium { border-left-color: #ff9800; }
.difficulty-card.hard { border-left-color: #f44336; }
.difficulty-card.hardcore { border-left-color: #9c27b0; }

.difficulty-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* ===== PROBABILITY TABLE ===== */
.probability-table {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
}

.probability-table table {
    width: 100%;
    border-collapse: collapse;
}

.probability-table th {
    background: linear-gradient(45deg, #ffd700, #ff6347);
    color: #000;
    padding: 15px;
    font-weight: bold;
}

.probability-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== STEPS ===== */
.steps {
    counter-reset: step-counter;
}

.step {
    display: flex;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    counter-increment: step-counter;
}

.step::before {
    content: counter(step-counter);
    background: linear-gradient(45deg, #ffd700, #ff6347);
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

/* ===== WARNING ===== */
.warning {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.warning strong {
    color: #ffc107;
}

/* ===== ANIMATIONS ===== */
.chicken-emoji {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== UTILITIES ===== */
.kg-flag {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.5rem;
}

.currency {
    font-weight: bold;
    color: #ffd700;
}
/* ===== FAQ STYLES ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.faq-question h3 {
    flex: 1;
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    line-height: 1.6;
}

/* ===== REVIEWS STYLES ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ff6347);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.review-rating {
    color: #ffd700;
    font-size: 1.1rem;
}

.review-date {
    color: #ccc;
    font-size: 0.9rem;
}

.review-helpful {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

.overall-rating {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    align-items: center;
}

.rating-score {
    text-align: center;
}

.score-number {
    font-size: 4rem;
    font-weight: bold;
    color: #ffd700;
}

.score-stars {
    font-size: 1.5rem;
    margin: 10px 0;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ff6347);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* ===== BONUSES STYLES ===== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card.featured {
    border: 2px solid #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
}

.bonus-description ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.bonus-description li {
    margin: 8px 0;
    padding-left: 20px;
}

.bonus-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.bonus-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 99, 71, 0.4);
}

.bonus-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.promo-codes {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.promo-list {
    display: grid;
    gap: 15px;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
}

.promo-code {
    background: linear-gradient(45deg, #ffd700, #ff6347);
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-family: monospace;
    cursor: pointer;
}

.promo-desc {
    flex: 1;
    font-weight: 500;
}

.promo-valid {
    color: #ccc;
    font-size: 0.9rem;
}

/* ===== TOURNAMENTS STYLES ===== */
.tournament-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.tournament-badge {
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.tournament-prize {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.prize-pool {
    font-size: 1.3rem;
    font-weight: bold;
}

.prize-pool span {
    color: #ffd700;
}

.countdown {
    color: #ff6347;
    font-weight: bold;
}

.tournament-btn {
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.tournament-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 99, 71, 0.4);
}

.tournament-leaderboard {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
}

.leader-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.position {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ff6347);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.name {
    flex: 1;
}

.score {
    font-weight: bold;
    color: #ffd700;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tournament-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.tournament-date {
    background: #ff6347;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.remind-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remind-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* ===== SECURITY STYLES ===== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.security-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.licenses {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.ssl-badge {
    background: #28a745;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    margin-top: 15px;
    display: inline-block;
}

.verify-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
}

.responsible-gaming ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.responsible-gaming li {
    margin: 10px 0;
    padding-left: 20px;
}

.security-certifications {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.cert-badge {
    font-size: 2rem;
}

/* ===== STATS STYLES ===== */
.live-stats {
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-label {
    color: #ccc;
    margin-bottom: 10px;
}

.stat-trend {
    font-size: 0.9rem;
    color: #28a745;
}

.recent-wins {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
}

.wins-ticker {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.win-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.winner {
    font-weight: bold;
}

.amount {
    color: #ffd700;
    font-weight: bold;
}

.time {
    color: #ccc;
    font-size: 0.9rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.achievement-card.unlocked {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.achievement-card.locked {
    opacity: 0.6;
    filter: grayscale(50%);
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.achievement-reward {
    background: linear-gradient(45deg, #ffd700, #ff6347);
    color: #000;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

/* ===== PAYMENT STYLES ===== */
.payment-methods {
    margin-bottom: 50px;
}

.payment-category {
    margin-bottom: 40px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.payment-item.popular::before {
    content: "Популярдуу";
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.payment-logo {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-limits {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 5px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* ===== SUPPORT STYLES ===== */
.support-hero {
    text-align: center;
    margin-bottom: 50px;
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.support-stat {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #fff;
    padding: 12px 25px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.contact-status {
    margin-top: 10px;
    font-size: 0.9rem;
}

.contact-details {
    margin-top: 15px;
    color: #ccc;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.topic-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.topic-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.topic-card ul {
    list-style: none;
    padding: 0;
}

.topic-card li {
    margin: 8px 0;
    padding-left: 15px;
    position: relative;
}

.topic-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* ===== MOBILE APP STYLES ===== */
.app-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
}

.feature-emoji {
    font-size: 1.5rem;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.download-icon {
    font-size: 2rem;
}

.download-text {
    font-weight: bold;
}

.download-store {
    font-size: 0.9rem;
    color: #ccc;
}

.app-screenshots {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: #000;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    overflow: hidden;
}

.demo-game {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-header {
    text-align: center;
    color: #ffd700;
    font-weight: bold;
    font-size: 0.9rem;
}

.game-field {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.chicken {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.multiplier {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: bold;
}

.cashout-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    font-size: 0.8rem;
}

.app-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

/* ===== NEWS STYLES ===== */
.news-featured {
    margin-bottom: 50px;
}

.featured-news {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.news-badge {
    position: absolute;
    top: -10px;
    left: 30px;
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.news-image {
    font-size: 4rem;
    align-self: center;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: #ccc;
    font-size: 0.9rem;
}

.read-more {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff6347;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.news-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-tag {
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.newsletter-signup {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 20px auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter-form button {
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    text-align: center;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #ffd700;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        /*gap: 20px;*/
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        backdrop-filter: blur(10px);
        gap: 15px;
    }
    
    .nav.mobile-open {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .overall-rating {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tournament-hero {
        grid-template-columns: 1fr;
    }
    
    .app-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-news {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .news-image {
        order: -1;
    }
    
    .support-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 10px;
    }
    .app-stats {
        display: block;
    }
.header {
padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .difficulty-levels {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .tournaments-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .app-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .section {
    margin: 5px 0;
    padding: 20px 0;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffd700, #ff6347);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff6347, #ffd700);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .footer, .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(45deg, #ff6347, #ffd700);
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 99, 71, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 99, 71, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.back-to-top:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/*  */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 99, 71, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(255, 99, 71, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
    }
}

.back-to-top.pulse {
    animation: pulse-glow 2s infinite;
}

/*  */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 70px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 60px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}