@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #1c003b;
    color: #fec677;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
header {
    background-color: #1c003b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1c003b;
}
.logo {
    flex-shrink: 0;
}
.logo img {
    height: 40px;
    width: auto;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
}
.main-nav a {
    color: #fec677;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-family: 'Open Sans', Arial, sans-serif;
}
.main-nav a:hover {
    color: #ffd700;
}
.hero {
    position: relative;
    min-height: 263px;
    overflow: hidden;
    background-color: #1c003b;
}
.header-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 1900px;
    height: 263px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 1rem;
}
.hero h1 {
    font-size: 2.2rem;
    color: #fec677;
    margin-bottom: 1rem;
}
.hero-title {
    font-size: 30px;
    font-weight: 700;
    color: #fec677;
    margin-bottom: 1rem;
    display: block;
    font-family: 'Open Sans', Arial, sans-serif;
}
.btn-primary, .btn-play, .btn-secondary {
    background-color: #c30054;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Open Sans', Arial, sans-serif;
}
.btn-primary:hover, .btn-play:hover, .btn-secondary:hover {
    background-color: #e60063;
    transform: translateY(-2px);
    color: #ffffff;
}
.bonus-banner {
    background-color: #151538;
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.banner-text {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-text h2 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    display: block;
    color: #fec677;
}
.banner-title {
    font-size: 24px;
    font-weight: 700;
    color: #fec677;
    margin-bottom: 1rem;
    display: block;
    font-family: 'Open Sans', Arial, sans-serif;
}
.banner-text .btn-secondary {
    background-color: #c30054;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.banner-text .btn-secondary:hover {
    background-color: #e60063;
    transform: translateY(-2px);
    color: #ffffff;
}
.btn-secondary {
    background-color: transparent;
    color: #c30054;
    border: 2px solid #c30054;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #c30054;
    color: #ffffff;
}
.casino-description {
    max-width: 900px;
    margin: 2rem auto;
    background: #2a2b52;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.casino-description h1 {
    color: #fec677;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #23244a;
}
.casino-description h2 {
    margin-top: 0;
    color: #fec677;
}
.characteristics {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1.5rem;
    background-color: #151538;
    color: #fec677;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none;
}
.characteristics th {
    background-color: #1a1a42;
    color: #fec677;
    font-weight: 700;
    text-align: center !important;
    padding: 1.1rem 1rem;
    border: none;
}
.characteristics td {
    background-color: #2a2a5a;
    color: #fec677;
    padding: 1.1rem 1rem;
    border: none;
    text-align: center !important;
    border-color: #2a2a5a;
}
.characteristics tr:nth-child(even) td {
    background: #1e1f35;
}
.games-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: #23244a;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.games-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.game-card {
    background-color: #151538;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    width: 320px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
    border: 1px solid #2a2a5a;
}
.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: #1a1a42;
    border-color: #ffd700;
}
.game-card h3 {
    margin-top: 0;
    color: #fec677;
    font-size: 1.3rem;
}
.game-card p {
    color: #fec677;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.btn-play {
    margin-top: auto;
    background: #ffd700;
    color: #0e0e2a;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-play:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}
.faq-section {
    max-width: 900px;
    margin: 3rem auto 2rem auto;
    background-color: #151538;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.faq-section h2 {
    color: #fec677;
    margin-top: 0;
}
.faq-item {
    margin-bottom: 1.5rem;
    background: #1e1f35;
    border-radius: 0.7rem;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.faq-question {
    position: relative;
    padding: 15px 50px 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}
.faq-icon {
    background: #2fff9c;
    color: #18192b;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}
.faq-answer {
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 5px 5px;
    margin-top: -10px;
    margin-bottom: 20px;
    display: none;
}
footer {
    background-color: #1c003b;
    color: #fec677;
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    font-size: 0.95rem;
    margin-top: 2rem;
    font-family: 'Open Sans', Arial, sans-serif;
}
.footer-nav {
    margin-bottom: 1rem;
}
.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}
.footer-nav a {
    color: #fec677;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
    font-family: 'Open Sans', Arial, sans-serif;
}
.footer-nav a:hover {
    color: #ffd700;
}
.footer-privacy {
    margin: 0.5rem 0 1rem 0;
    font-size: 0.98rem;
    color: #fec677;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.footer-privacy a {
    color: #ffd700;
    text-decoration: underline;
}
.footer-privacy a:hover {
    color: #ffed4a;
}
.footer-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin: 1rem 0 0.5rem 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.payment-icon {
    width: 44px;
    height: 28px;
    object-fit: contain;
    margin: 0 0.2rem;
    background: none;
    border-radius: 0.3rem;
    box-shadow: none;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}
@media (max-width: 900px) {
    .games-cards {
        flex-direction: column;
        align-items: center;
    }
    .game-card {
        width: 95%;
    }
    .casino-description, .faq-section {
        padding: 1rem;
    }
}
@media (max-width: 600px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .bonus-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .games-section {
        padding: 0;
    }
    .casino-description,
    .main-content-block,
    .faq-section,
    .footer-content {
        padding: 1rem !important;
        margin: 1rem 0 !important;
        max-width: 100vw;
        box-sizing: border-box;
        text-align: center;
    }
    .casino-description h2,
    .main-content-block h2,
    .faq-section h2 {
        text-align: center;
    }
    .characteristics {
        font-size: 0.95rem;
        width: auto;
        display: table;
        overflow-x: auto;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .characteristics th, .characteristics td {
        text-align: center !important;
    }
    .games-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .game-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        align-items: center;
        text-align: center;
    }
    .btn-primary,
    .btn-secondary,
    .btn-play {
        width: 100%;
        box-sizing: border-box;
        font-size: 1.1rem;
        text-align: center;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-privacy {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        max-width: 95vw;
    }
    .footer-payments {
        gap: 0.5rem;
    }
    .payment-icon {
        width: 36px;
        height: 24px;
        min-width: 0;
        padding: 0;
    }
}
.main-content-block {
    max-width: 900px;
    margin: 2rem auto;
    background: #23244a;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.main-content-block h2 {
    color: #fec677;
    margin-top: 0;
}
html, body {
    width: 100vw;
    overflow-x: hidden;
}

.casino-description,
.main-content-block,
.games-section,
.faq-section,
.footer-content {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .casino-description,
    .main-content-block,
    .games-section,
    .faq-section,
    .footer-content {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100vw;
        box-sizing: border-box;
        text-align: center;
    }
}

.lang-switcher {
    margin-left: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.lang-dropdown {
    position: relative;
    display: inline-block;
}
.lang-btn {
    background-color: #c30054;
    color: #ffffff;
    border: none;
    border-radius: 1.2rem;
    padding: 0.5rem 1.3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Open Sans', Arial, sans-serif;
}
.lang-btn:hover, .lang-btn:focus {
    background-color: #e60063;
    transform: translateY(-2px);
}
.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #151538;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-radius: 0.7rem;
    z-index: 10;
    border: 1px solid #2a2a5a;
}
.lang-dropdown-content a {
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    border-radius: 0.7rem;
}
.lang-dropdown-content a.active {
    background: #ffd700;
    color: #0e0e2a;
    font-weight: 700;
}
.lang-dropdown:hover .lang-dropdown-content,
.lang-dropdown:focus-within .lang-dropdown-content {
    display: block;
}
@media (max-width: 900px) {
    .lang-switcher {
        margin-left: 0.5rem;
    }
}

/* Content Block Styles */
.content-block {
    background-color: #151538;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.content-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: #1a1a42;
}

.content-block h2 {
    color: #fec677;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.3;
}

.content-block h1 {
    color: #fec677;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.3;
    text-align: left;
    padding-bottom: 0;
    border-bottom: none;
}

.content-block h3 {
    color: #fec677;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
}

.content-block h4 {
    color: #fec677;
    font-size: 1.2rem;
    margin: 1.2rem 0 0.8rem;
    font-family: 'Open Sans', Arial, sans-serif;
}

.content-block p {
    color: #fec677;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-block ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.content-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: #fec677;
}

.content-block ul li::before {
    content: "•";
    color: #fec677;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.content-block ul li strong {
    color: #fec677;
}

/* Table Styles within Content Blocks */
.content-block .payment-methods {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
    background-color: #151538;
    color: #fec677;
    border-radius: 0.5rem;
    overflow: hidden;
}

.content-block .payment-methods th,
.content-block .payment-methods td {
    padding: 1.1rem 1rem;
    text-align: left;
    border: none;
    color: #fec677;
}

.content-block .payment-methods th {
    background-color: #1a1a42;
    color: #fec677;
    font-weight: 700;
    text-align: center !important;
}

.content-block .payment-methods td {
    background-color: #2a2a5a;
    text-align: center !important;
    color: #fec677;
}

.content-block .payment-methods tr:nth-child(even) td {
    background: #1e1f35;
}

.content-block .payment-methods tr:hover td {
    background: #2a2b4d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .content-block h2 {
        font-size: 1.6rem;
    }

    .content-block h3 {
        font-size: 1.3rem;
    }

    .content-block h4 {
        font-size: 1.1rem;
    }

    .content-block .payment-methods {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.game-card .game-title {
    margin-top: 0;
    color: #fec677;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 1199px) {
    .header-banner {
        height: 220px;
    }
    .hero {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .header-banner {
        height: 180px;
        background-image: url('../images/nvcasino_pic_mob.webp') !important;
    }
    .hero {
        min-height: 180px;
    }
    .logo img {
        height: 32px;
    }
}

.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Mobile styles for privacy policy page */
@media screen and (max-width: 768px) {
    .main-content-block {
        padding: 0 15px;
    }
    
    .content-block {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .terms-content {
        padding: 20px;
    }
    
    .privacy-table {
        width: 100%;
        display: block;
        overflow-x: auto;
    }
    
    .privacy-table td, 
    .privacy-table th {
        min-width: 200px;
    }
    
    .footer-content {
        padding: 20px 15px;
    }
    
    .footer-payments {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .payment-icon {
        width: 40px;
        height: auto;
    }
}

.content-block .btn-play {
    background-color: #c30054;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Open Sans', Arial, sans-serif;
}

.content-block .btn-play:hover {
    background-color: #e60063;
    transform: translateY(-2px);
    color: #ffffff;
}

.button-wrapper .btn-play {
    background-color: #c30054;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Open Sans', Arial, sans-serif;
}

.button-wrapper .btn-play:hover {
    background-color: #e60063;
    transform: translateY(-2px);
    color: #ffffff;
}

.faq-question::before {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #c30054;
    transition: transform 0.3s ease;
}

.faq-question.active::before {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
    color: #c30054;
} 