/* Reset и общие стили */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #090f1e;
    color: #ffffff;
}

/* Навигация */
.main-nav {
    background: #0a1929;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: #4299e1;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.login-btn, .register-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.login-btn {
    color: #ffffff;
    border: 2px solid #4299e1;
}

.register-btn {
    background: #4299e1;
    color: #ffffff;
}

/* Hero секция */
.hero-section {
    padding-top: 80px;
}

.vodka-cta-container {
    width: 100%;
    background: linear-gradient(135deg, #0a1929 0%, #1a365d 100%);
    position: relative;
    padding: 60px 20px;
    margin: 0;
}

.vodka-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.vodka-cta-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vodka-cta-subtitle {
    color: #90cdf4;
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vodka-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.vodka-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-text {
    color: #cbd5e0;
    font-size: 14px;
}

.vodka-register-button {
    display: inline-block;
    background: #4299e1;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 40px;
    position: relative;
}

.bonus-tag {
    background: #ff3366;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: -15px;
    right: -15px;
    transform: rotate(15deg);
}

/* Блок джекпота */
.jackpot-section {
    padding: 40px 20px;
}

.vodka-jackpot-container {
    background: linear-gradient(135deg, #0a1929 0%, #1a365d 100%);
    border-radius: 15px;
    padding: 25px;
    max-width: 500px;
    margin: 20px auto;
    border: 2px solid #4299e1;
    text-align: center;
}

.casino-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.jackpot-title {
    color: #ffffff;
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jackpot-amount {
    color: #4299e1;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}

.jackpot-currency {
    color: #90cdf4;
    font-size: 24px;
    vertical-align: super;
}

.play-button {
    display: inline-block;
    background: #4299e1;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
}

/* Секция с играми */
.popular-games {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a1929 0%, #1a365d 100%);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.popular-games h2 {
    color: #ffffff;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.game-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
}

.game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-buttons {
    padding: 0 20px 20px;
}

.game-button {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.play-button {
    background: #4299e1;
    color: #ffffff;
    border: none;
}

.game-flags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.game-flag {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.game-flag.new {
    background: #ff3366;
    color: white;
}

.game-flag.hot {
    background: #f6ad55;
    color: white;
}

/* Нижний CTA блок */
.bottom-cta-section {
    margin-top: 60px;
}

.vodka-bottom-cta {
    width: 100%;
    background: linear-gradient(135deg, #0a1929 0%, #1a365d 100%);
    position: relative;
    padding: 40px 20px;
    margin: 0;
}

.vodka-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.vodka-bottom-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.vodka-bottom-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vodka-bottom-subtitle {
    color: #90cdf4;
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

.vodka-bottom-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vodka-bottom-jackpot {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
}

.jackpot-label {
    color: #90cdf4;
    font-size: 14px;
    margin-bottom: 5px;
}

.vodka-bottom-button {
    display: inline-block;
    background: #4299e1;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.bottom-bonus-tag {
    background: #ff3366;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: -12px;
    right: -12px;
    transform: rotate(15deg);
}

/* Footer */
footer {
    background: #0a1929;
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #4299e1;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #90cdf4;
    font-size: 14px;
    line-height: 1.6;
}

.copyright-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(66, 153, 225, 0.2);
    color: #90cdf4;
    font-size: 14px;
}

/* Медиа запросы */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .login-btn, .register-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .vodka-cta-title {
        font-size: 32px;
    }
    
    .vodka-cta-subtitle {
        font-size: 18px;
    }
    
    .vodka-features {
        gap: 20px;
    }
    
    .vodka-feature {
        width: calc(50% - 20px);
    }
    
    .vodka-register-button {
        padding: 15px 40px;
        font-size: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .vodka-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .vodka-bottom-text {
        padding-right: 0;
    }
    
    .vodka-bottom-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .vodka-bottom-jackpot {
        width: 100%;
    }
    
    .vodka-bottom-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vodka-feature {
        width: 100%;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
} 

/* SEO блок */
.seo-section {
    padding: 60px 0;
    background: #0a1929;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: #cbd5e0;
}

.seo-content h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: left;
}

.seo-content h3 {
    color: #4299e1;
    font-size: 24px;
    margin: 30px 0 20px;
    text-align: left;
}

.seo-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.seo-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.seo-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.seo-content li:before {
    content: "•";
    color: #4299e1;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .seo-content h2 {
        font-size: 28px;
    }

    .seo-content h3 {
        font-size: 22px;
    }

    .seo-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .seo-content h2 {
        font-size: 24px;
    }

    .seo-content h3 {
        font-size: 20px;
    }

    .seo-content p {
        font-size: 14px;
    }
} 

/* Общие стили для страниц */
.page-header {
    background: linear-gradient(135deg, #0a1929 0%, #1a365d 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 20px;
}

.page-header .subtitle {
    color: #90cdf4;
    font-size: 24px;
}

/* Стили для страницы "О нас" */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.about-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.about-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-item h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-section {
    margin: 60px 0;
}

.about-section h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-section p {
    color: #cbd5e0;
    line-height: 1.8;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.partner-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item h3 {
    color: #4299e1;
    font-size: 20px;
    margin-bottom: 10px;
}

.partner-item p {
    color: #cbd5e0;
    font-size: 16px;
    line-height: 1.4;
}

/* Удаляем старые стили для partner-logo */
.partner-logo {
    display: none;
}

/* Медиа запросы для партнеров */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .partner-item {
        padding: 20px;
    }

    .partner-item h3 {
        font-size: 18px;
    }

    .partner-item p {
        font-size: 14px;
    }
}

/* Остальные стили */

/* Стили для страницы "Поддержка" */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.support-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.support-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.support-item h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 15px;
}

.support-button {
    display: inline-block;
    background: #4299e1;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.faq-section {
    margin: 60px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #cbd5e0;
    line-height: 1.6;
}

.contact-form-section {
    margin: 60px 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(66, 153, 225, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background: #4299e1;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

/* Стили для страницы "Турниры" */
.tournament-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
}

.tournament-card.featured {
    border: 2px solid #4299e1;
}

.tournament-header {
    background: rgba(66, 153, 225, 0.1);
    padding: 20px;
    position: relative;
}

.tournament-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.tournament-status.hot {
    background: #ff3366;
    color: white;
}

.tournament-status.new {
    background: #48bb78;
    color: white;
}

.tournament-header h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
}

.prize-pool {
    color: #4299e1;
    font-size: 20px;
    font-weight: bold;
}

.tournament-info {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tournament-details p,
.tournament-prizes p {
    color: #cbd5e0;
    margin-bottom: 10px;
}

.tournament-button {
    display: block;
    background: #4299e1;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
}

.tournament-list {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.tournament-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 20px;
    padding: 20px;
    align-items: center;
    border-bottom: 1px solid rgba(66, 153, 225, 0.2);
}

.tournament-item:last-child {
    border-bottom: none;
}

.tournament-date {
    color: #4299e1;
    font-weight: bold;
}

.tournament-name {
    color: #ffffff;
}

.tournament-prize {
    color: #48bb78;
    font-weight: bold;
}

.tournament-remind {
    color: #4299e1;
    text-decoration: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.info-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.info-item h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.info-item p {
    color: #cbd5e0;
}

.tournaments-rules {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 60px 0;
}

.tournaments-rules h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.rules-content ul {
    color: #cbd5e0;
    list-style-type: none;
    padding: 0;
}

.rules-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.rules-content li:before {
    content: "•";
    color: #4299e1;
    position: absolute;
    left: 0;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #0a1929 0%, #1a365d 100%);
}

.cta-section h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    color: #90cdf4;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #4299e1;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

/* Медиа запросы для новых страниц */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header .subtitle {
        font-size: 18px;
    }

    .tournament-info {
        grid-template-columns: 1fr;
    }

    .tournament-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }
} 

.logo {
    display: block;
    padding: 10px 0;
}

.header-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .header-logo {
        max-height: 40px;
    }
} 