/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC2626;
        --primary-white: #fffff;

    --dark-red: #991B1B;
    --light-red: #FCA5A5;
    --black: #0F0F0F;
    --dark-gray: #1A1A1A;
    --medium-gray: #2D2D2D;
    --light-gray: #404040;
    --silver: #C0C0C0;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --text-muted: #A3A3A3;
    --gradient-red: linear-gradient(135deg, #DC2626, #991B1B);
    --gradient-gold: linear-gradient(135deg, #D4AF37, #B8860B);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    min-height: 100vh;
}

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

ul {
    list-style: none;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 1.25rem 3rem;
    border-bottom: 2px solid var(--primary-red);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo h1 {
    font-size: 1.75rem;
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    color: var(--silver);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

/* Hero Section - Different Layout */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23DC262620"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-red);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Arial', sans-serif;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--silver);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    border: 2px solid var(--silver);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Stats Bar */
.stats-bar {
    background: var(--dark-gray);
    padding: 2rem 3rem;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.stats-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section - Horizontal Cards */
.features {
    padding: 5rem 3rem;
    background: var(--black);
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-header h2 span {
    color: var(--primary-red);
}

.section-header p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-red);
    transform: translateX(10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-content p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

/* Why Choose Section - Grid with Border */
.why-choose {
    padding: 5rem 3rem;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
}

.why-container {
    max-width: 1300px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 2px solid var(--primary-red);
    border-radius: 16px;
    overflow: hidden;
}

.why-item {
    padding: 2.5rem;
    border-bottom: 1px solid var(--light-gray);
    border-right: 1px solid var(--light-gray);
    transition: background 0.3s ease;
}

.why-item:hover {
    background: rgba(220, 38, 38, 0.1);
}

.why-item:nth-child(2n) {
    border-right: none;
}

.why-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.why-item h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.why-item h3::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-red);
    border-radius: 50%;
    font-size: 0.9rem;
}

.why-item p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Casino Cards Section - Table Style */
.casinos {
    padding: 5rem 3rem;
    background: var(--black);
}

.casinos-container {
    max-width: 1100px;
    margin: 0 auto;
}

.casino-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.casino-row {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.casino-row:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.15);
}

.casino-rank {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.casino-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.casino-logo {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.casino-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.casino-rating {
    color: var(--gold);
    font-size: 1rem;
}

.casino-bonus {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
    border: 1px solid var(--primary-red);
}

.bonus-label {
    font-size: 0.75rem;
    color: var(--primary-white);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-top: 0.25rem;
}

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

.deposit-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
}

.deposit-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.casino-action .play-btn {
    display: block;
    background: var(--gradient-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.casino-action .play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

.casino-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
    font-family: 'Arial', sans-serif;
}

/* Footer Styles */
footer {
    background: var(--dark-gray);
    padding: 4rem 3rem 2rem;
    border-top: 3px solid var(--primary-red);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--light-gray);
}

.footer-about h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-support h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-support ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a,
.footer-support ul li a {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-support ul li a:hover {
    color: var(--primary-red);
}

.responsible-section {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.responsible-section h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.responsible-section p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 35px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partner-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.age-restriction {
    background: var(--black);
    border-radius: 8px;
    padding: 1rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.age-restriction span {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
}

.disclaimer-box {
    background: var(--black);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.disclaimer-box h4 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.disclaimer-box p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.footer-bottom p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Page Content Styles */
.page-hero {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 4rem 3rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-red);
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero h1 span {
    color: var(--primary-red);
}

.page-hero .last-updated {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
}

.page-content {
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-block h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-gray);
}

.content-block h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}

.content-block p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-block ul li {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    padding: 0.5rem 0;
    list-style: disc;
}

.content-block strong {
    color: var(--white);
}

/* Alert Boxes */
.alert-box {
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.alert-box.warning {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--primary-red);
}

.alert-box.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22C55E;
}

.alert-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.alert-box.warning h3 {
    color: var(--primary-red);
}

.alert-box.success h3 {
    color: #22C55E;
}

.alert-box p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-card {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: var(--primary-red);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .casino-row {
        grid-template-columns: auto 1fr auto auto;
        gap: 1.5rem;
    }
    
 
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        border-right: none !important;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features,
    .why-choose,
    .casinos {
        padding: 3rem 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .casino-rank {
        margin: 0 auto;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .casino-info {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .casino-logo {
        max-width: 100px;
        max-height: 45px;
    }
    
    .casino-info-text {
        align-items: center;
        text-align: center;
    }
    
    .casino-name {
        font-size: 1.25rem;
    }
    
    .casino-rating {
        font-size: 0.9rem;
    }
    
    .casino-bonus {
        padding: 0.75rem 1rem;
        width: 100%;
    }
    
    .bonus-value {
        font-size: 1rem;
    }
    
    .casino-deposit {
        display: block;
        padding: 0.75rem;
        background: rgba(220, 38, 38, 0.05);
        border-radius: 8px;
        width: 100%;
    }
    
    .deposit-value {
        font-size: 1.25rem;
    }
    
    .casino-action {
        width: 100%;
    }
    
    .casino-action .play-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .casino-row {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .casino-logo {
        max-width: 90px;
        max-height: 40px;
    }
    
    .casino-name {
        font-size: 1.1rem;
    }
    
    .casino-bonus {
        padding: 0.625rem 0.875rem;
    }
    
    .bonus-value {
        font-size: 0.95rem;
    }
    
    .casino-deposit {
        padding: 0.625rem;
    }
    
    .deposit-value {
        font-size: 1.1rem;
    }
    
    .casino-action .play-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}
.bonus-value{
    color: white !important;
}