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

:root {
    --gold: #FFD700;
    --gold-alt: #FFA500;
    --purple: #1a0033;
    --purple-deep: #0d0015;
    --purple-mid: #2d0052;
    --red: #ff3366;
    --white: #ffffff;
    --gray: #cccccc;
    --dark-gray: #666666;
}

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    background: linear-gradient(to bottom, var(--purple-deep), var(--purple));
    color: var(--white);
    line-height: 1.6;
}

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

/* Header */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(13, 0, 21, 0.97);
    backdrop-filter: blur(14px);
    z-index: 1000;
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.14);
    border-bottom: 2px solid var(--gold);
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.toggle-menu span {
    width: 27px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

.toggle-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.site-brand img {
    height: 46px;
    width: auto;
}

.primary-nav {
    display: flex;
    gap: 30px;
}

.primary-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.primary-nav a:hover {
    color: var(--gold);
}

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

.user-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    padding: 10px 26px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.login-action {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.login-action:hover {
    background: var(--gold);
    color: var(--purple);
}

.register-action {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-alt) 100%);
    color: var(--purple);
    border: 2px solid transparent;
}

.register-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.45);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 74px;
    left: -300px;
    width: 280px;
    height: calc(100vh - 74px);
    background: rgba(13, 0, 21, 0.98);
    backdrop-filter: blur(14px);
    z-index: 999;
    transition: left 0.3s;
    overflow-y: auto;
    border-right: 2px solid var(--gold);
}

.mobile-drawer.active {
    left: 0;
}

.drawer-nav {
    padding: 20px 0;
}

.drawer-item {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    position: relative;
}

.drawer-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--gold);
    padding-left: 35px;
}

.drawer-item::after {
    content: "\203A";
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-item:hover::after {
    opacity: 1;
}

/* Hero Banner */
.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.75) 0%, rgba(13, 0, 21, 0.75) 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.09) 0%, transparent 65%);
    animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.85; }
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.promo-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.main-title {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.offer-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-alt) 100%);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 38px rgba(255, 215, 0, 0.32);
}

.offer-label {
    font-size: 16px;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-value {
    font-size: 72px;
    font-weight: 900;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 10px;
}

.offer-detail {
    font-size: 16px;
    color: var(--purple);
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.main-cta {
    padding: 15px 38px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-alt) 100%);
    color: var(--purple);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(255, 215, 0, 0.5);
}

.secondary-cta {
    padding: 15px 38px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.secondary-cta:hover {
    background: var(--gold);
    color: var(--purple);
}

.banner-right {
    position: relative;
    height: 400px;
}

.animation-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.anim-item {
    position: absolute;
    font-size: 74px;
    animation: float-up 3s ease-in-out infinite;
}

.pos-1 {
    top: 8%;
    left: 18%;
    animation-delay: 0s;
}

.pos-2 {
    top: 18%;
    right: 18%;
    animation-delay: 0.8s;
}

.pos-3 {
    bottom: 18%;
    left: 28%;
    animation-delay: 1.6s;
}

.pos-4 {
    bottom: 8%;
    right: 28%;
    animation-delay: 2.4s;
}

@keyframes float-up {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-22px) rotate(6deg); }
}

/* Quick Features */
.quick-features {
    padding: 60px 0;
    background: rgba(26, 0, 51, 0.45);
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-feature {
    background: rgba(255, 215, 0, 0.05);
    padding: 38px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.quick-feature:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
}

.feature-symbol {
    font-size: 54px;
    margin-bottom: 18px;
}

.quick-feature h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
}

.quick-feature h3::after {
    content: "\2605";
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-feature:hover h3::after {
    opacity: 1;
}

.quick-feature p {
    color: var(--gray);
    font-size: 14px;
}

/* Details Section */
.details-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    font-size: 44px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.details-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 18px;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.details-grid {
    width: 100%;
    border-collapse: collapse;
}

.details-grid tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.details-grid tr:last-child {
    border-bottom: none;
}

.detail-key {
    padding: 20px;
    color: var(--gold);
    font-weight: 700;
    width: 40%;
    position: relative;
    padding-left: 30px;
}

.detail-key::before {
    content: "\2022";
    position: absolute;
    left: 20px;
    font-size: 20px;
}

.detail-val {
    padding: 20px;
    color: var(--white);
}

/* Games Gallery */
.games-gallery {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.45);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-info h3 {
    color: var(--gold);
    font-size: 18px;
}

.item-btn {
    padding: 8px 22px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-alt) 100%);
    color: var(--purple);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.item-btn::before {
    content: "\25B6";
    margin-right: 6px;
    font-size: 10px;
}

.item-btn:hover {
    transform: scale(1.1);
}

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

.browse-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.browse-btn:hover {
    background: var(--gold);
    color: var(--purple);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

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

.faq-entry {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-entry:hover {
    border-color: var(--gold);
}

.faq-toggle {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 17px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.toggle-icon {
    color: var(--gold);
    font-size: 30px;
    transition: transform 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-icon::before {
    content: "\002B";
    font-weight: 300;
}

.faq-entry.active .toggle-icon::before {
    content: "\2212";
}

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

.faq-entry.active .faq-content {
    max-height: 400px;
}

.faq-content p {
    padding: 0 20px 20px;
    color: var(--gray);
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.45);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 24px;
}

/* Casino Comparison Section */
.casino-comparison {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.casino-comparison .section-header {
    text-align: center;
    margin-bottom: 15px;
}

.casino-comparison .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.casino-comparison .comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.casino-comparison .comparison-table thead {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
    color: #fff;
}

.casino-comparison .comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
}

.casino-comparison .comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.casino-comparison .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.casino-comparison .comparison-table .highlight-col {
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    font-weight: bold;
    color: var(--purple-deep);
}

.casino-comparison .comparison-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* Progress Indicators Section */
.progress-indicators {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
    position: relative;
    overflow: hidden;
}

.progress-indicators::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.progress-indicators .section-header {
    text-align: center;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.progress-indicators .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.circular-progress {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 10;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--gold);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 2s ease-in-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
}

.progress-percent {
    font-size: 1.5rem;
}

.indicator-item h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.indicator-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .casino-comparison .comparison-table {
        font-size: 0.85rem;
    }
    
    .casino-comparison .comparison-table th,
    .casino-comparison .comparison-table td {
        padding: 12px 8px;
    }
    
    .indicators-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }
    
    .circular-progress {
        width: 140px;
        height: 140px;
    }
    
    .progress-text {
        font-size: 2rem;
    }
    
    .indicator-item h3 {
        font-size: 1.3rem;
    }
}

/* Footer */
.main-footer {
    background: var(--purple-deep);
    padding: 60px 0 30px;
    border-top: 3px solid var(--gold);
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-block ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: var(--gold);
}

.payment-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.payment-row img {
    height: 40px;
    width: auto;
}

.legal-row {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.legal-row p {
    color: var(--gray);
    margin-bottom: 10px;
}

.warning-text {
    color: var(--red);
    font-weight: 700;
}

/* Sticky Actions */
.sticky-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.sticky-action {
    padding: 12px 28px;
    border-radius: 26px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}

.login-sticky {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.register-sticky {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-alt) 100%);
    color: var(--purple);
}

.sticky-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }

    .banner-right {
        display: none;
    }

    .feature-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .toggle-menu {
        display: flex;
    }

    .primary-nav {
        display: none;
    }

    .user-actions {
        display: none;
    }

    .sticky-actions {
        display: flex;
    }

    .main-title {
        font-size: 38px;
    }

    .offer-value {
        font-size: 60px;
    }

    .section-header {
        font-size: 34px;
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .detail-key,
    .detail-val {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 30px;
    }

    .offer-value {
        font-size: 52px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .main-cta,
    .secondary-cta {
        width: 100%;
        text-align: center;
    }
}
/* Enhanced Content Sections from text5.txt */
.enhanced-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(26, 0, 51, 0.8) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.enhanced-content-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9) 0%, rgba(45, 0, 82, 0.8) 100%);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.enhanced-content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.enhanced-content-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-alt));
    margin: 15px auto;
    border-radius: 2px;
}

.enhanced-content-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 4px solid var(--gold);
    position: relative;
}

.enhanced-content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--white);
    opacity: 0.95;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: var(--gold);
}

.provider-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.provider-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.provider-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: scale(1.05);
}

.provider-item img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.vip-tier {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.vip-tier.bronze {
    border-color: #CD7F32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
}

.vip-tier.silver {
    border-color: #C0C0C0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

.vip-tier.gold {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
}

.vip-tier.platinum {
    border-color: #E5E4E2;
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.1), rgba(229, 228, 226, 0.05));
}

.vip-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.vip-tier h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
}

.cashback-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-alt));
    color: var(--purple);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.bonus-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.responsible-gaming {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.9), rgba(13, 0, 21, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.support-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.support-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.support-badge:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: scale(1.05);
}

.support-badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cta-section {
    background: linear-gradient(135deg, var(--gold), var(--gold-alt));
    color: var(--purple);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-section h2 {
    color: var(--purple);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--purple);
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--purple);
    color: var(--gold);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
}

.cta-button:hover {
    background: var(--purple-deep);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .enhanced-content-section {
        padding: 60px 0;
    }
    
    .enhanced-content-section h2 {
        font-size: 2rem;
    }
    
    .enhanced-content-section h3 {
        font-size: 1.5rem;
    }
    
    .feature-grid,
    .provider-showcase,
    .vip-tiers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .support-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .enhanced-content-section p {
        font-size: 1rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
}
