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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Running Line Styles */
.running-line {
    background: linear-gradient(45deg, #ffd700, #ff6b35, #28a745, #17a2b8, #6f42c1, #dc3545);
    background-size: 600% 100%;
    animation: gradient-shift 5s ease infinite;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.running-content {
    display: flex;
    gap: 50px;
    animation: scroll-right-to-left 60s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-right-to-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.running-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.running-item.currency {
    background: rgba(255, 215, 0, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.running-item.winner {
    background: rgba(40, 167, 69, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(40, 167, 69, 0.4);
}

.running-item.jackpot {
    background: rgba(220, 53, 69, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(220, 53, 69, 0.4);
    animation: pulse-jackpot 2s ease-in-out infinite;
}

@keyframes pulse-jackpot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.running-item i {
    font-size: 12px;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* Header Styles */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #ffd700;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 15px;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

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

.mobile-menu-toggle {
    display: none;
    color: #ffd700;
    font-size: 24px;
    cursor: pointer;
}
/* Mobile Menu Active States */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
		gap: 50px;
    height: calc(100vh - 80px);
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
}

.mobile-menu-toggle.active {
    color: #ff6b35;
    transform: rotate(90deg);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile menu item styling when active */
.nav-menu.active .nav-link {
    font-size: 18px;
    padding: 15px 30px;
    width: 200px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-menu.active .nav-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}


/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
}

.btn-login {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-login:hover {
    background: #ffd700;
    color: #0f0f23;
}

.btn-register {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0f0f23;
    font-weight: 700;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-play {
    background: linear-gradient(45deg, #dc3545, #e83e8c);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-tournament {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: #ffffff;
    width: 100%;
    margin-top: 15px;
}

.btn-promo {
    background: linear-gradient(45deg, #17a2b8, #6f42c1);
    color: #ffffff;
    width: 100%;
    margin-top: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffd700, transparent),
        radial-gradient(2px 2px at 40px 70px, #ff6b35, transparent),
        radial-gradient(1px 1px at 90px 40px, #28a745, transparent),
        radial-gradient(1px 1px at 130px 80px, #dc3545, transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

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

.hero-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-top: 10px;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #28a745;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.feature i {
    color: #ffd700;
    font-size: 20px;
    margin-top: 2px;
    min-width: 20px;
}

.feature span {
    font-size: 16px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
		justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-casino-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.casino-cards {
    position: relative;
    height: 400px;
}

.card {
    position: absolute;
    width: 180px;
    height: 250px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    border: 3px solid #ffd700;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
    z-index: 3;
}

.card-2 {
    top: 50px;
    left: 80px;
    animation-delay: 1s;
    z-index: 2;
}

.card-3 {
    top: 100px;
    left: 160px;
    animation-delay: 2s;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.bonus-display {
    position: absolute;
    top: 50%;
    right: -50px;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.bonus-text {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-coins {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.bonus-coins i {
    font-size: 2rem;
    color: #ffd700;
    animation: bounce 1s ease-in-out infinite;
}

.bonus-coins i:nth-child(2) {
    animation-delay: 0.2s;
}

.bonus-coins i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title i {
    color: #ffd700;
    margin-right: 15px;
}

/* Featured Games Section */
.featured-games {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(26, 26, 46, 0.8));
}

.games-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.game-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-card.featured {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #3a2a1a, #2a1a1a);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.exclusive-badge,
.live-badge,
.vip-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.exclusive-badge {
    background: linear-gradient(45deg, #ff6b35, #dc3545);
}

.live-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.vip-badge {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
}

.game-info {
    padding: 20px;
}

.game-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffd700;
}

.game-info p {
    color: #a0a0a0;
    font-size: 14px;
}

/* Tournaments Section */
.tournaments {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 15, 35, 0.8));
}

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

.tournament-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.tournament-image {
    height: 150px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.tournament-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tournament-card:hover .tournament-image {
    border-color: #ffd700;
    transform: scale(1.05);
}

.tournament-card:hover .tournament-image img {
    transform: scale(1.1);
}

.tournament-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.tournament-card p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.tournament-prize {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 20px;
}

/* Getting Started Section */
.getting-started {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(26, 26, 46, 0.9));
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f0f23;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffd700;
}

.step-content p {
    color: #e0e0e0;
    font-size: 14px;
}

/* Promotions Section */
.promotions {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(15, 15, 35, 0.9));
}

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

.promo-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #6c757d;
    transition: all 0.3s ease;
}

.promo-card.highlight {
    border-color: #ffd700;
    background: linear-gradient(135deg, #3a2a1a, #2a1a1a);
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.promo-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.promo-offer {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
}

.promo-card p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
}

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

.testimonial {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.testimonial-content i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #ffd700;
}

.security-badge {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    color: #28a745;
    font-weight: 600;
}

.security-badge i {
    font-size: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    padding: 60px 0 30px;
    border-top: 3px solid #ffd700;
}

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

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.footer-section p {
    color: #a0a0a0;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #a0a0a0;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icons i {
    font-size: 2rem;
    color: #ffd700;
}

.payment-text {
    color: #a0a0a0;
    font-weight: 600;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-fab 2s ease-in-out infinite;
}

.fab-register {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
}

.fab-bonus {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #0f0f23;
}

.fab-play {
    background: linear-gradient(45deg, #dc3545, #e83e8c);
    color: #ffffff;
}

.fab-btn:hover {
    transform: translateX(-5px) scale(1.05);
}

@keyframes pulse-fab {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .casino-cards {
        height: 300px;
    }
    
    .card {
        width: 140px;
        height: 200px;
    }
    
    .card-2 {
        left: 60px;
    }
    
    .card-3 {
        left: 120px;
    }
    
    .bonus-display {
        right: 0px;
    }
    
    .bonus-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .tournaments-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-buttons {
        right: 10px;
        bottom: 10px;
    }
    
    .fab-btn {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .fab-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .casino-cards {
        height: 250px;
    }
    
    .card {
        width: 100px;
        height: 140px;
    }
    
    .card-2 {
        left: 40px;
    }
    
    .card-3 {
        left: 80px;
    }
    
    .bonus-text {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Additional Page Styles */

.games-section, .player-highlights, .comparison-table, .bonus-activation, .extras, .security, .payment-methods, .vip-rewards, .payment-faqs {
    padding: 80px 0;
}

.security {
	padding-top: 0;
}

.hero-stats {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* Games Page Specific Styles */
.games-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 0;
		padding-bottom: 80px;
    overflow: hidden;
}

.games-hero-content {
    text-align: center;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

.stat-label {
    color: #a0a0a0;
    font-size: 14px;
    text-transform: uppercase;
}

.game-filters {
    background: rgba(15, 15, 35, 0.95);
    padding: 30px 0;
    border-bottom: 2px solid #ffd700;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 2px solid #6c757d;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover,
.filter-tab.active {
    border-color: #ffd700;
    background: #ffd700;
    color: #0f0f23;
}

.btn-tertiary {
    background: linear-gradient(45deg, #17a2b8, #20c997);
    color: #ffffff;
}

.btn-quaternary {
    background: linear-gradient(45deg, #6f42c1, #dc3545);
    color: #ffffff;
}

.btn-special {
    background: linear-gradient(45deg, #fd7e14, #e83e8c);
    color: #ffffff;
}

.btn-demo {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 12px;
}

.rtp-badge,
.jackpot-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.jackpot-badge {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: #ffffff;
}

.players-count {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(40, 167, 69, 0.9);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.bangla-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-right: 5px;
}

.quick-stats {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

/* Blog Page Specific Styles */
.blog-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    overflow: hidden;
}

.blog-hero-content {
    text-align: center;
}

.testimonial-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.testimonial-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #3a2a1a, #2a1a1a);
}

.testimonial-card.mega-win {
    border-color: #dc3545;
    background: linear-gradient(135deg, #3a1a1a, #2a1a1a);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.player-avatar {
    font-size: 3rem;
    color: #ffd700;
}

.player-info h3 {
    color: #ffffff;
    margin-bottom: 5px;
}

.location {
    color: #a0a0a0;
    font-size: 14px;
}

.win-amount {
    color: #28a745;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 5px;
}

.game-badge {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.game-badge.jackpot {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
}

.quote-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.win-details {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.multiplier {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.game-name {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.payout-method {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

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

.pick-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.pick-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
}

.pick-rank {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #0f0f23;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.pick-image {
    height: 150px;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 10px;
}

.pick-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pick-stats {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 14px;
    color: #a0a0a0;
}

.btn-pick {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
    width: 100%;
    margin-top: 15px;
}

.share-story {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(15, 15, 35, 0.9));
    padding: 100px 0;
}

.share-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.share-benefits {
    margin: 30px 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit i {
    color: #ffd700;
    font-size: 18px;
    min-width: 18px;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-examples {
    background: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.example-story ul {
    list-style: none;
    margin-top: 15px;
}

.example-story li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.example-story li i {
    color: #28a745;
}

.recent-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.wins-ticker {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    padding: 40px 0;
    border-top: 2px solid #ffd700;
}

.ticker-container {
    overflow: hidden;
    margin-top: 20px;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
}

.win-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    white-space: nowrap;
    width: auto;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Forum Page Specific Styles */
.forum-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    overflow: hidden;
}

.forum-hero-content {
    text-align: center;
}

.comparison-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.preview-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #6c757d;
    position: relative;
}

.preview-item.winner {
    border-color: #ffd700;
    background: linear-gradient(135deg, #3a2a1a, #2a1a1a);
}

.crown {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd700;
    font-size: 2rem;
}

.casino-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.score {
    font-size: 2rem;
    color: #28a745;
    font-weight: 700;
}

.vs {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.comparison-table-grid {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table-grid th,
.comparison-table-grid td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison-table-grid th {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 700;
}

.winner-column {
    background: rgba(255, 215, 0, 0.2) !important;
}

.winner-cell {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 700;
}

.text-green {
    color: #28a745;
}

.text-red {
    color: #dc3545;
}

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

.win-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.win-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.win-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.win-stats {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-highlight {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
}

.vs-stat {
    color: #a0a0a0;
    font-size: 14px;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.extra-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.extra-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.extra-card ul {
    list-style: none;
    margin-top: 20px;
}

.extra-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.extra-card li i {
    color: #28a745;
}

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

.security-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #28a745;
}

.security-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.license-badge,
.cert-badges,
.encryption-badge {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    padding: 8px 15px;
    border-radius: 15px;
    margin-top: 15px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

.cert-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-badges span {
    background: rgba(40, 167, 69, 0.2);
    padding: 5px 10px;
    border-radius: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating {
    color: #ffd700;
    margin-top: 5px;
}

.comparison-tag {
    background: linear-gradient(45deg, #17a2b8, #6f42c1);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.action-section {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
    padding: 80px 0;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.action-btn {
    text-align: center;
    justify-content: center;
}

/* Payments Page Specific Styles */
.payments-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    overflow: hidden;
}

.payments-hero-content {
    text-align: center;
}

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

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

.payment-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #6c757d;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #3a2a1a, #2a1a1a);
}

.payment-card.crypto {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #3a2a1a, #2a1a1a);
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.payment-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.payment-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.payment-limits {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-size: 14px;
    color: #a0a0a0;
}

.btn-payment {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
    width: 100%;
    margin-top: 15px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.tip-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.tip-highlight {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    display: inline-block;
}

.payment-process {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(15, 15, 35, 0.9));
    padding: 100px 0;
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.process-tab {
    background: transparent;
    border: 2px solid #6c757d;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.process-tab:hover,
.process-tab.active {
    border-color: #ffd700;
    background: #ffd700;
    color: #0f0f23;
}

.process-steps {
    display: none;
}

.process-steps.active {
    display: block;
}

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

.faq-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    color: #ffd700;
    font-size: 1.5rem;
}

.faq-question h3 {
    color: #ffffff;
}

.payment-security {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
    padding: 100px 0;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.payment-actions {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(15, 15, 35, 0.9));
    padding: 80px 0;
}

/* Bonuses Page Specific Styles */
.bonuses-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    overflow: hidden;
}

.bonuses-hero-content {
    text-align: center;
}

.bonus-showcase {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.showcase-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    min-width: 150px;
}

.showcase-item.main-bonus {
    border-color: #ffd700;
    background: linear-gradient(135deg, #3a2a1a, #2a1a1a);
    transform: scale(1.1);
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
}

.bonus-label {
    color: #a0a0a0;
    font-size: 14px;
    text-transform: uppercase;
}

.bonus-code {
    color: #28a745;
    font-weight: 600;
    margin-top: 10px;
}

.btn-mega {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

.new-member-offer {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
    padding: 80px 0;
}

.offer-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 25px;
    padding: 40px;
    border: 3px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.mega-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

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

.offer-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.bonus-details {
    margin-bottom: 30px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.bonus-item i {
    color: #ffd700;
    font-size: 18px;
    min-width: 18px;
}

.terms-preview h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

.terms-preview ul {
    list-style: none;
}

.terms-preview li {
    color: #a0a0a0;
    margin-bottom: 8px;
    font-size: 14px;
}

.promo-code-section {
    margin-bottom: 30px;
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 10px;
}

.code {
    color: #ffd700;
    font-weight: 700;
    font-size: 18px;
    flex-grow: 1;
}

.copy-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
}

.offer-visual {
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.offer-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-action {
    text-align: center;
    margin-top: 30px;
}

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

.deal-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #6c757d;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.deal-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #3a2a1a, #2a1a1a);
}

.deal-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.deal-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.deal-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.deal-offer {
    font-size: 1.5rem;
    color: #28a745;
    font-weight: 700;
    margin: 15px 0;
}

.deal-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.btn-deal {
    background: linear-gradient(45deg, #17a2b8, #6f42c1);
    color: #ffffff;
    width: 100%;
    margin-top: 15px;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vip-levels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vip-level {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.vip-level:hover {
    transform: translateX(10px);
    border-color: #ffd700;
}

.level-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.level-icon.bronze {
    background: linear-gradient(45deg, #cd7f32, #b8860b);
}

.level-icon.silver {
    background: linear-gradient(45deg, #c0c0c0, #a8a8a8);
}

.level-icon.gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0f0f23;
}

.level-icon.diamond {
    background: linear-gradient(45deg, #b9f2ff, #89cff0);
    color: #0f0f23;
}

.benefit-list {
    margin-top: 20px;
}

.btn-vip {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: #ffffff;
    margin-top: 30px;
}

.holiday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.holiday-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.holiday-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.holiday-icon {
    font-size: 2.5rem;
    color: #ffd700;
}

.holiday-details {
    margin-top: 15px;
}

.holiday-details span {
    display: block;
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 5px;
}

.holiday-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.holiday-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-time {
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

.bonus-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bonus-game-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.bonus-game-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.bonus-contribution {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    display: inline-block;
}

.bonus-cta {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(15, 15, 35, 0.9));
    padding: 100px 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cta-btn {
    text-align: center;
    justify-content: center;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .offer-content,
    .vip-content,
    .share-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-preview {
        flex-direction: column;
        gap: 20px;
    }
    
    .vs {
        transform: rotate(90deg);
    }
    
    .table-container {
        font-size: 14px;
    }

		.logo-text {
			display: none;
		}
    
    .comparison-table-grid th,
    .comparison-table-grid td {
        padding: 10px;
    }
    
    .holiday-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bonus-showcase {
        grid-template-columns: 1fr;
    }

		.games-section, .player-highlights, .comparison-table, .bonus-activation, .extras, .security, .payment-methods, .vip-rewards, .payment-faqs {
			padding: 20px 0;
	}
    
    .showcase-item.main-bonus {
        transform: none;
    }
}