/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #262626;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #151515;
    border-bottom: 1px solid #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #63cd42;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.primary-btn {
    background-color: #63cd42;
    color: #0e0d0e;
    border: none;
    text-decoration: none;
}

.primary-btn:hover {
    background-color: #52b838;
    color: #0e0d0e;
    box-shadow: 0 4px 8px rgba(99, 205, 66, 0.3);
    text-decoration: none;
}

.secondary-btn {
    background-color: transparent;
    color: #63cd42;
    border: 1px solid #63cd42;
    text-decoration: none;
}

.secondary-btn:hover {
    background-color: #63cd42;
    color: #0e0d0e;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Main Content */
.main {
    min-height: calc(100vh - 140px);
}

.hero {
    background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-size: 1.2rem;
    margin-top: 20px;
    text-align: center;
}

.cta-text a {
    color: #63cd42;
    text-decoration: none;
    font-weight: 600;
}

.cta-text a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: #1f1f1f;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #63cd42;
}

/* Tables */
.comparison-table,
.steps-table,
.games-table,
.bonus-table,
.blog-table {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #404040;
}

th {
    background-color: #63cd42;
    color: #0e0d0e;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

td {
    color: #ffffff;
}

tr:hover {
    background-color: #333333;
}

/* Lists */
.benefits-list,
.features-list,
.bonus-list,
.games-list,
.themes-list,
.articles-list,
.slots-list,
.steps-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li,
.features-list li,
.bonus-list li,
.games-list li,
.themes-list li,
.articles-list li,
.slots-list li,
.steps-list li {
    padding: 10px 0;
    color: #cccccc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.benefits-list li i,
.features-list li i,
.bonus-list li i,
.games-list li i,
.themes-list li i,
.articles-list li i,
.slots-list li i,
.steps-list li i {
    color: #63cd42;
    margin-top: 3px;
    flex-shrink: 0;
}

.hero-image, .no-deposit-image, .loyalty-image, .top-slots-image, .rtp-image, .roulette-image, .live-casino-image, .features-image, .download-image {
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img, .no-deposit-image img, .loyalty-image img, .top-slots-image img, .rtp-image img, .roulette-image img, .live-casino-image img, .features-image img, .download-image img {
    width: 100%;
}

.no-deposit-image, .top-slots-image, .rtp-image, .roulette-image, .live-casino-image, .features-image, .download-image {
    margin-top: 20px;
}

.no-deposit-bonus p {
    text-align: center;
}

/* Images Grid */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.image-item {
    text-align: center;
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.banner {
    width: 100%;
}

.banner img {
    width: 100%;
    height: auto;
}


.image-item:hover {
    transform: translateY(-5px);
}

.image-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.image-item h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.image-item .cta-text {
    margin-top: 15px;
}

.image-item .cta-text a {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin: 0;
}

/* Mini Navigation */
.mini-nav-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.mini-nav-list li {
    padding: 15px 0;
    border-bottom: 1px solid #404040;
    color: #cccccc;
}

.mini-nav-list li:last-child {
    border-bottom: none;
}

.mini-nav-list a {
    color: #63cd42;
    text-decoration: none;
}

.mini-nav-list a:hover {
    text-decoration: underline;
}

/* FAQ */
.faq {
    background-color: #1f1f1f;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 8px;
    border-left: 4px solid #63cd42;
}

.faq-item h3 {
    color: #63cd42;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Disclaimer */
.disclaimer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 30px 0;
}

.disclaimer p {
    color: #999999;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #151515;
    border-top: 1px solid #000;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

header .container {
    max-width: unset;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #63cd42;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Links */
a {
    color: #63cd42;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #52b838;
    text-decoration: underline;
}

/* Font Awesome Icons in Links */
a i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

a:hover i {
    transform: scale(1.1);
}

/* CTA Text Icons */
.cta-text i {
    color: #63cd42;
    margin-right: 8px;
    font-size: 1.1em;
}

.cta-text a i {
    margin-right: 8px;
    color: #0e0d0e;
    transition: transform 0.3s ease;
}

.cta-text a:hover i {
    transform: scale(1.1);
}

/* CTA Links as Buttons */
.cta-text a {
    display: inline-block;
    background-color: #63cd42;
    color: #0e0d0e;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(99, 205, 66, 0.2);
    border: 2px solid #63cd42;
}

.cta-text a:hover {
    background-color: #52b838;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(99, 205, 66, 0.3);
    text-decoration: none;
    color: #0e0d0e;
}

.cta-text a:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(99, 205, 66, 0.2);
}

@media (max-width: 1520px) {
    
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #151515;
        z-index: 1000;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        border-top: 1px solid #333;
        margin-top: 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-buttons {
        gap: 10px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .cta-text a {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 8px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    /* Table responsive */
    .comparison-table,
    .steps-table,
    .games-table,
    .bonus-table,
    .blog-table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 10px 8px;
    }
    
    /* Ensure tables are scrollable on mobile */
    table {
        min-width: 600px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .btn {
        padding: 11px 20px;
    }
    
    .cta-text a {
        padding: 13px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-wrap: wrap;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        order: 3;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .benefits-list li, .features-list li, .bonus-list li, .games-list li, .themes-list li, .articles-list li, .slots-list li, .steps-list li {
        flex-direction: column;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid #63cd42;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main {
        margin-top: 0;
    }
}
