@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-red: #DC143C;
    --primary-purple: #8B00FF;
    --secondary-purple: #6B00CC;
    --dark-purple: #4B0082;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --gradient-main: linear-gradient(135deg, #DC143C 0%, #8B00FF 100%);
    --gradient-reverse: linear-gradient(135deg, #8B00FF 0%, #DC143C 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

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

.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    gap: 10px;
}

.header-gift,
.header-search {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-red);
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-gift svg,
.header-search svg {
    stroke: var(--primary-red);
    transition: all 0.3s ease;
}

.header-gift:hover,
.header-search:hover {
    background: var(--gradient-main);
    border-color: var(--primary-purple);
    transform: scale(1.05);
}

.header-gift:hover svg,
.header-search:hover svg {
    stroke: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 998;
}

.mobile-overlay.active {
    display: block;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    right: -300px;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-menu a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.mobile-nav-menu a:hover {
    background: var(--gradient-main);
    color: var(--white);
}

.hero {
    background: var(--gradient-main);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.casino-table {
    padding: 60px 0;
}

.table-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 2fr 1fr;
    gap: 20px;
    padding: 20px 30px;
    background: var(--gradient-main);
    color: var(--white);
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.table-header span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.casino-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 2fr 1fr;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.casino-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.casino-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-main);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.casino-logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    max-width: 190px;
    max-height: 180px;
    object-fit: contain;
}

.casino-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.casino-bonus {
    text-align: center;
}

.bonus-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.bonus-amount {
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.casino-features ul {
    list-style: none;
    font-size: 14px;
    color: var(--text-light);
}

.casino-features li {
    margin-bottom: 8px;
}

.casino-button {
    display: flex;
    justify-content: center;
}

.casino-button a {
    display: inline-block;
    padding: 14px 25px;
    background: var(--gradient-main);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.casino-button a:hover {
    background: var(--gradient-reverse);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.content-section {
    padding: 60px 0;
    background: var(--white);
}

.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 30px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px;
    color: var(--primary-purple);
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.content-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.payment-methods {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.payment-methods h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

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

.payment-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.payment-logos img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

.faq-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    fill: var(--primary-purple);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.footer {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-site-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.footer-col h2.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.footer-logo {
    width: 60px;
    height: auto;
    border-radius: 20px;
}

.footer-payment-methods {
    margin-top: 30px;
}

.footer-payment-methods h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-payment-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-payment-logos img {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-payment-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-disclaimer {
    text-align: center;
}

.footer-disclaimer p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .table-header {
        display: none;
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .casino-badge {
        left: 17%;
        transform: translateX(-50%);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .content-section h2,
    .faq-section h2 {
        font-size: 28px;
    }
    
    .header-actions {
        gap: 5px;
    }
    
    .header-gift,
    .header-search {
        width: 36px;
        height: 36px;
    }
    
    .header-gift svg,
    .header-search svg {
        width: 18px;
        height: 18px;
    }
    
    .payment-logos {
        gap: 20px;
    }
    
    .payment-logos img {
        height: 30px;
    }
    
    .footer-payment-logos img {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .casino-table,
    .content-section,
    .faq-section {
        padding: 40px 0;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}
.hero-content .hero-h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

table tbody tr:first-child td {
    background: var(--secondary-purple);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 20px;
    text-align: center;
}

table tbody tr:first-child td p strong {
    color: var(--white);
}

table tbody tr:first-child td p {
    margin: 0;
}

table tbody tr {
    transition: background 0.2s ease;
}

table tbody tr:not(:first-child):nth-child(even) {
    background: var(--bg-light);
}

table tbody tr:not(:first-child):nth-child(odd) {
    background: var(--white);
}

table tbody tr:not(:first-child):hover {
    background: rgba(139, 0, 255, 0.05);
}

table tbody tr:not(:first-child) td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

table tbody tr:not(:first-child) td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

table tbody tr:not(:first-child) td p {
    margin: 0;
}

@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
