/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(13, 131, 57, 0.3);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid #0d8339;
}

.logo span {
    color: #0d8339;
    font-size: 28px;
    margin-bottom: 5px;
}

.slogan {
    font-size: 14px;
    color: #ddd;
}

.auth-buttons button {
   padding: 20px 40px;
   font-size: 20px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-register {
    background-color: #0d8339;
    color: white;
}

.btn-login {
    background-color: transparent;
    color: #0d8339;
    border: 1px solid #0d8339 !important;
}

.auth-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 131, 57, 0.4);
}

.main-nav {
    padding: 10px 5%;
}

.main-nav ul {
    display: flex;
    justify-content: center;
}

.main-nav li {
   margin: 3px 25px;
    font-size: 20px;
}

.main-nav a {
    color: #ddd;
    font-weight: bold;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #0d8339;
}

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

.main-nav a:hover::after {
    width: 100%;
}

/* Главный экран */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('pokerdom.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #ddd;
}

.cta-button {
        padding: 25px 40px;
    background-color: #0d8339;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 131, 57, 0.4);
}

.cta-button:hover {
    background-color: #0a6b2f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 131, 57, 0.6);
}

/* Преимущества */
.advantages {
    padding: 80px 5%;
    text-align: center;
}

.advantages h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
}

.advantages h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #0d8339;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background-color: #111;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #222;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(13, 131, 57, 0.2);
    border-color: #0d8339;
}

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0d8339;
}

.advantage-card p {
    color: #bbb;
}

/* SEO текст */
.seo-section {
    padding: 80px 5%;
    background-color: #111;
}

.seo-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0d8339;
    text-align: center;
}

.seo-section p,ul,li,h2,h3,table {
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ccc;
    line-height: 1.8;
}

/* FAQ */
.faq {
    padding: 80px 5%;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #0d8339;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    background-color: #111;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #0d8339;
}

.faq-item h3 {
    color: #0d8339;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #bbb;
    line-height: 1.7;
}

/* Отзывы */
.reviews {
    padding: 80px 5%;
    background-color: #111;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
    position: relative;
}

.reviews h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #0d8339;
}

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

.review-card {
    background-color: #000;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #0d8339;
}

.reviewer {
    font-weight: bold;
    color: #0d8339;
    margin-bottom: 10px;
}

.win-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 15px;
}

.review-card p {
    color: #bbb;
    font-style: italic;
}

/* Фиксированная плашка */
.fixed-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0d8339;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.5);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.bonus-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.bonus-button {
    font-size: 20px;
    padding: 20px 35px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bonus-button:hover {
    background-color: #222;
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        padding: 10px 5%;
    }
    
    .auth-buttons {
        margin-top: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
    }
    
    .main-nav li {
        margin: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-button {
        margin-top: 10px;
    }
    
    .advantages-grid,
    .reviews-grid {
    grid-template-columns: 1fr;
    }
}


.seo-section ul li::before {
    content: "•";
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

  table {
          
            border-collapse: collapse;
             width: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 10px;
          
        }
        th {
            background: #0d8339;
            color: white;
            padding: 15px;
            text-align: left;
        }
        td {
            padding: 12px 15px;
            border-bottom: 1px solid #eaeaea;
        }
        tr:nth-child(even) {
            background: #0d8339;
        }