/* Luxury Casino Theme - Premium Design */
:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --accent-blue: #0066ff;
    --accent-green: #00cc66;
    --border-color: #333333;
    --shadow-gold: rgba(255, 215, 0, 0.3);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header Styles */
.site-header {
    background: var(--gradient-dark);
    border-bottom: 2px solid var(--primary-gold);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-image {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px var(--shadow-gold));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--shadow-gold)); }
    50% { filter: drop-shadow(0 0 20px var(--shadow-gold)); }
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--shadow-gold);
}

/* Main Content */
.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-block {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.2);
}

.content-block:hover::before {
    transform: scaleX(1);
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.subsection-heading {
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.text-content {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.casino-cards-mobile {
    display: none;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--darker-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 800px;
}

.data-table thead {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.data-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.data-table td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    vertical-align: middle;
}

.data-table tbody tr {
    transition: background 0.3s ease;
}

.data-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Casino Logos */
.casino-logo {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.payment-logo {
    width: 40px;
    height: 25px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.payment-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Casino Button */
.casino-button,
.top-card__btn.referral-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px var(--shadow-gold);
    cursor: pointer;
    font-family: inherit;
    line-height: 1.5;
}

.casino-button:hover,
.top-card__btn.referral-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.casino-button:active,
.top-card__btn.referral-btn:active {
    transform: translateY(0);
}

.casino-button:focus,
.top-card__btn.referral-btn:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

.checkmark {
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-item {
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: var(--darker-bg);
    border-left: 4px solid var(--primary-gold);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 215, 0, 0.05);
}

.feature-item strong {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.step-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 2rem 0;
}

.step-item {
    counter-increment: step-counter;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--darker-bg);
    border-radius: 10px;
    position: relative;
    padding-left: 4rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.step-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.step-item strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-container {
    margin: 2rem 0;
}

.faq-item {
    background: var(--darker-bg);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.faq-question {
    font-size: 1.3rem;
    color: var(--primary-gold);
    padding: 1.5rem;
    margin: 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question::before {
    content: '❓';
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--primary-gold);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '🎰';
    margin-right: 0.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: rotate(15deg);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom strong {
    color: var(--primary-gold);
}

.footer-warning {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--primary-gold);
    padding: 1.2rem;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.footer-warning strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

/* Responsive Design - Mobile First */
/* Base styles are for mobile, then we add desktop styles */

@media (min-width: 769px) {
    .casino-cards-mobile {
        display: none;
    }

    .data-table {
        display: table;
    }
}

/* Mobile devices (up to 480px) */
@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .content-wrapper {
        padding: 1.5rem 1rem;
    }

    .content-block {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .subsection-heading {
        font-size: 1.3rem;
    }

    .text-content {
        font-size: 1rem;
    }

    .casino-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Tablets and small screens (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .site-title {
        font-size: 1.4rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }
}

/* Mobile and tablets (up to 768px) */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .site-title {
        font-size: 1.4rem;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .table-wrapper {
        overflow-x: visible;
        margin: 2rem 0;
    }

    .data-table {
        display: none;
    }

    /* Mobile Cards */
    .casino-cards-mobile {
        display: block;
    }

    .casino-card {
        display: block;
        background: var(--card-bg);
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .casino-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .casino-card-logo {
        max-width: 100px;
        max-height: 45px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .casino-card-info {
        margin-bottom: 1rem;
    }

    .casino-card-info-item {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .casino-card-info-item:last-child {
        border-bottom: none;
    }

    .casino-card-label {
        color: var(--text-secondary);
        font-size: 0.9rem;
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
    }

    .casino-card-value {
        color: var(--text-primary);
        font-size: 0.95rem;
        display: block;
    }

    .casino-card-payments {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

    .casino-card-button {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }

    .step-item {
        padding-left: 3.5rem;
    }

    .step-item::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        left: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .site-footer {
        padding: 2rem 0 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-block {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}
