* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    border-radius: 8px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ff7d00;
    color: white;
}

.btn-primary:hover {
    background-color: #e66d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 125, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #ff7d00;
    border: 2px solid #ff7d00;
}

.btn-outline:hover {
    background-color: #ff7d00;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem 0;
}

.hero-content {
    text-align: center;
}

.hero-image-link {
    display: block;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-cta {
    margin-top: 2rem;
}

.btn-bonus {
    background: linear-gradient(45deg, #ff7d00, #ff9f40);
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 125, 0, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 125, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 125, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 125, 0, 0.4);
    }
}

/* Content Sections */
.content-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.content-section:nth-child(even) {
    background-color: white;
}

.welcome {
    padding: 2rem 0;
    background-color: white;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.welcome-text {
    font-size: 1.1rem;
    text-align: center;
    /*max-width: 800px;*/
    margin: 0 auto 3rem;
    color: #555;
}

/* General paragraph formatting */
p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Tables */
.features-table, .table-wrapper {
    margin: 2rem 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #ff7d00;
    color: white;
    font-weight: 600;
}

tr:hover {
    background-color: #f8f9fa;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Images */
.image-center {
    text-align: center;
    margin: 2rem 0;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Slots Section */
.slots-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.slot-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.slot-image {
    width: 100%;
    /*height: 300px;*/
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slot-card:hover .slot-image {
    transform: scale(1.05);
}

.slot-card h3 {
    padding: 1rem;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0;
}

.slot-card h3 a {
    text-decoration: none;
    color: #1a1a1a;
}

.slot-card h3 a:hover {
    color: #ff7d00;
}

.slot-card .btn {
    margin: 0 1rem 1rem;
    display: block;
    width: calc(100% - 2rem);
}

/* VIP Section */
.vip-section {
    padding: 2rem 0;
    background-color: white;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vip-text p {
    /* Inherits from general p styles */
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff7d00;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #555;
}

/* Styled Lists - applies to all ul in content sections */
.content-section ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.content-section ul li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    padding-left: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.content-section ul li:hover {
    background-color: #fff3e6;
    transform: translateX(5px);
}

.content-section ul li::before {
    content: "✓";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ff7d00;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 125, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    /*width: 100%;
    height: auto;*/
    object-fit: contain;
    /*background: white;*/
    padding: 5px;
    /*border-radius: 5px;*/
}

.footer-text {
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.footer-text p {
    margin-bottom: 1rem;
    color: #ccc;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.copyright p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-buttons {
        gap: 10px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .slots-grid {
        grid-template-columns: 1fr;
    }

    .vip-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logos {
        gap: 1rem;
    }

    /*.footer-logo {
        width: 60px;
        height: 45px;
    }*/

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-bonus {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        max-height: 250px;
    }
}