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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    background-image: url('images/fafabet-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
}

.nav-logo h2 {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #EE3A56;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #EE3A56;
    transition: width 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #EE3A56 0%, #ff6b7a 100%);
    color: #FDFDFD;
    border-color: #EE3A56;
    box-shadow: 0 4px 15px rgba(238, 58, 86, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff6b7a 0%, #EE3A56 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 58, 86, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FDFDFD;
    border-color: #EE3A56;
}

.btn-outline:hover {
    background: #EE3A56;
    color: #FDFDFD;
    transform: translateY(-2px);
}

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

/* Hero Section - Simplified */
.hero {
    background: rgba(0, 0, 0, 0.8);
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    border: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: #fff;
    width: 100%;
}

/* Hero Banner Slider */
.hero-banner-slider {
    width: 100%;
    margin: 2rem 0;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.slider-track {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 20%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
}

.hero-banner-img:hover {
    transform: scale(1.01);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #EE3A56;
    border-color: #EE3A56;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(238, 58, 86, 0.7);
    transform: scale(1.1);
}

/* Slider Navigation Arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(238, 58, 86, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    background: #EE3A56;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}


/* Futuristic H1 Hero Title Design */
h1.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
    margin: 2rem auto;
    padding: 40px 50px;
    max-width: 1200px;
    position: relative;
    background: 
        radial-gradient(circle at 30% 20%, rgba(238, 58, 86, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(253, 253, 253, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
    border-radius: 30px;
    border: 3px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        0 0 50px rgba(238, 58, 86, 0.4);
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(238, 58, 86, 0.5);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: titleFloat 5s ease-in-out infinite;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
}

h1.hero-title::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        #EE3A56, 
        #FF6B8A, 
        #FDFDFD, 
        #FF6B8A, 
        #EE3A56);
    border-radius: 33px;
    z-index: -1;
    animation: borderFlow 4s linear infinite;
    opacity: 0.8;
}

h1.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(238, 58, 86, 0.1) 2px,
            rgba(238, 58, 86, 0.1) 4px
        );
    animation: scanLines 2s linear infinite;
    z-index: 1;
    pointer-events: none;
}

h1.hero-title .highlight {
    color: #EE3A56;
    font-weight: 900;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(238, 58, 86, 0.8),
        0 0 80px rgba(238, 58, 86, 0.6);
    background: linear-gradient(45deg, #EE3A56, #FF6B8A, #EE3A56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: highlightWave 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(238, 58, 86, 0.6));
}

h1.hero-title .highlight::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #EE3A56, #FF6B8A, #EE3A56);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.4;
    animation: highlightAura 2s ease-in-out infinite;
    filter: blur(10px);
}

h1.hero-title .highlight::after {
    content: '★';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1.2rem;
    color: #FFD700;
    animation: starTwinkle 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px #FFD700;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    25% {
        transform: translateY(-8px) rotateX(2deg);
    }
    50% {
        transform: translateY(-5px) rotateX(0deg);
    }
    75% {
        transform: translateY(-12px) rotateX(-2deg);
    }
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes highlightWave {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(1deg);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
    }
    75% {
        transform: scale(1.05) rotate(-1deg);
    }
}

@keyframes highlightAura {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.3) rotate(180deg);
    }
}

.highlight {
    color: #EE3A56;
    font-weight: bold;
    background: rgba(238, 58, 86, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin: 2rem 0;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(238, 58, 86, 0.15) 0%, rgba(253, 253, 253, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: subtitleFloat 4s ease-in-out infinite;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #EE3A56, #FDFDFD, #EE3A56);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
    animation: borderGlow 3s ease-in-out infinite;
}

.hero-subtitle::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

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

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #FDFDFD;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-justify: inter-word;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #FDFDFD;
    background: rgba(238, 58, 86, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(238, 58, 86, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 58, 86, 0.3);
}

.feature i {
    color: #EE3A56;
    font-size: 1.4rem;
}

.feature span {
    font-weight: 600;
    font-size: 1rem;
}

/* Hero Image Styling */
.hero-banner-img {
    border: 3px solid rgba(238, 58, 86, 0.3);
    transition: all 0.3s ease;
}

.hero-banner-img:hover {
    border-color: rgba(238, 58, 86, 0.6);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

/* Live Activity & Community Section */
.live-activity-section {
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.95) 0%, 
        rgba(22, 33, 62, 0.95) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.live-activity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="live-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23EE3A56" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23live-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.live-activity-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.live-stat-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(238, 58, 86, 0.1), 
        transparent);
    animation: cardShimmer 3s ease-in-out infinite;
}

.live-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(238, 58, 86, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(238, 58, 86, 0.4);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #EE3A56;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(238, 58, 86, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: #FDFDFD;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
}

.stat-trend i {
    font-size: 0.8rem;
}

.live-feed-container {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(26, 26, 46, 0.95) 100%);
    border-radius: 25px;
    padding: 2rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.live-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(238, 58, 86, 0.3);
}

.live-feed-header h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    font-weight: 700;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.9rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.live-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.win-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: all 0.3s ease;
}

.win-item:hover {
    background: rgba(238, 58, 86, 0.2);
    transform: translateX(5px);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.player-details {
    display: flex;
    flex-direction: column;
}

.player-name {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
}

.win-time {
    color: #ccc;
    font-size: 0.8rem;
}

.win-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.game-name {
    color: #FDFDFD;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.win-amount {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.live-feed-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(238, 58, 86, 0.3);
}

.live-feed-footer p {
    color: #FDFDFD;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.community-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(238, 58, 86, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(238, 58, 86, 0.4);
}

.highlight-content h4 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@keyframes cardShimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

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

/* Fafabet9 Advantage Section */
.advantage-section {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(26, 26, 46, 0.98) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.advantage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="advantage-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23EE3A56" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23advantage-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.advantage-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.advantage-table-container {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.advantage-table {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(26, 26, 46, 0.95) 100%);
    border-radius: 25px;
    padding: 2rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(238, 58, 86, 0.2);
}

.feature-column,
.benefit-column {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(238, 58, 86, 0.1);
}

.table-row:hover {
    background: rgba(238, 58, 86, 0.1);
    border-color: rgba(238, 58, 86, 0.3);
    transform: translateX(5px);
}

.feature-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #FDFDFD;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(238, 58, 86, 0.4);
    flex-shrink: 0;
}

.benefit-cell {
    color: #ccc;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.transparency-section {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(26, 26, 46, 0.95) 100%);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.transparency-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(238, 58, 86, 0.3);
}

.security-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 25px rgba(238, 58, 86, 0.4);
}

.transparency-header h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    font-weight: 700;
    margin: 0;
}

.transparency-content {
    margin-bottom: 2.5rem;
}

.transparency-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.certification-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(238, 58, 86, 0.2);
    transform: translateY(-2px);
}

.cert-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(238, 58, 86, 0.4);
    flex-shrink: 0;
}

.cert-badge span {
    color: #FDFDFD;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Game Guide Section - New Design */
.game-guide-section {
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.95) 0%, 
        rgba(25, 25, 55, 0.95) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.game-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(238, 58, 86, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(253, 253, 253, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="guide-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23EE3A56" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23guide-dots)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.game-guide-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(238, 58, 86, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.guide-badge i {
    font-size: 1rem;
}

.guide-content {
    position: relative;
    z-index: 2;
}

.guide-intro-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.guide-intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(238, 58, 86, 0.1), transparent);
    animation: introRotate 10s linear infinite;
    z-index: 1;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(238, 58, 86, 0.4);
    flex-shrink: 0;
}

.intro-text h3 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.intro-text p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.7;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(238, 58, 86, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #EE3A56;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(238, 58, 86, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #FDFDFD;
    font-weight: 600;
}

.guide-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.guide-topic-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.guide-topic-card.featured {
    border-color: rgba(238, 58, 86, 0.6);
    box-shadow: 0 25px 60px rgba(238, 58, 86, 0.3);
    transform: scale(1.02);
}

.guide-topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(238, 58, 86, 0.1), 
        transparent);
    animation: cardShimmer 6s ease-in-out infinite;
}

.guide-topic-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(238, 58, 86, 0.8);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.topic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(238, 58, 86, 0.4);
}

.topic-badge {
    background: rgba(238, 58, 86, 0.2);
    color: #EE3A56;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(238, 58, 86, 0.3);
}

.topic-content {
    position: relative;
    z-index: 2;
}

.topic-content h4 {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.topic-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.topic-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.read-time,
.difficulty {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #aaa;
}

.read-time i,
.difficulty i {
    color: #EE3A56;
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(238, 58, 86, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.guide-cta-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cta-main {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.cta-content h4 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 200px;
}

.preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: all 0.3s ease;
}

.preview-item:hover {
    background: rgba(238, 58, 86, 0.2);
    transform: scale(1.05);
}

.preview-item i {
    font-size: 1.5rem;
    color: #EE3A56;
}

.preview-item span {
    font-size: 0.8rem;
    color: #FDFDFD;
    text-align: center;
    font-weight: 500;
}

.responsible-gaming-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(76, 175, 80, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.rg-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rg-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.rg-header h5 {
    font-size: 1.4rem;
    color: #FFFFFF;
    font-weight: 700;
}

.rg-content p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.rg-tools {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.rg-tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    text-decoration: none;
    color: #4CAF50;
    transition: all 0.3s ease;
    min-width: 80px;
}

.rg-tool:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-3px);
    color: #66BB6A;
}

.rg-tool i {
    font-size: 1.2rem;
}

.rg-tool span {
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(238, 58, 86, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(238, 58, 86, 0.5);
    }
}

@keyframes introRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes cardShimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Section Separator */
.section-separator {
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(238, 58, 86, 0.1) 50%, transparent 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #EE3A56 50%, transparent 100%);
    border-radius: 2px;
    animation: separatorGlow 3s ease-in-out infinite;
}

@keyframes separatorGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(238, 58, 86, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(238, 58, 86, 0.6);
    }
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    backdrop-filter: blur(10px);
    margin-top: 0;
    position: relative;
    z-index: 2;
    clear: both;
    display: block;
    width: 100%;
}

.games-description {
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 800px;
}

.games-description p {
    font-size: 1.1rem;
    color: #FDFDFD;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    background: rgba(238, 58, 86, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(238, 58, 86, 0.2);
}

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

.game-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e32 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(238, 58, 86, 0.2);
}

.game-icon {
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-icon-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    max-height: 200px;
}

.game-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Promotions Section - New Design */
.promotions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 46, 0.9) 100%);
    backdrop-filter: blur(10px);
    margin-top: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="promo-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23EE3A56" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23promo-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.promotions-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.promotions-banner-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    margin: 1.5rem auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotions-banner-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.promotions-content {
    position: relative;
    z-index: 2;
}

.promotions-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.2rem;
    color: #FDFDFD;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(238, 58, 86, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(238, 58, 86, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EE3A56 0%, #ff6b7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #FDFDFD;
    font-size: 1.2rem;
}

.benefit-item span {
    color: #FDFDFD;
    font-size: 1.1rem;
    font-weight: 500;
}

.transparency-note {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border-left: 4px solid #EE3A56;
}

.transparency-note p {
    color: #FDFDFD;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.promotions-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.main-promo {
    background: linear-gradient(135deg, #EE3A56 0%, #ff6b7a 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(238, 58, 86, 0.3);
}

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

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #EE3A56;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-content h3 {
    color: #FDFDFD;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.promo-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.promo-value .amount {
    font-size: 3rem;
    font-weight: 900;
    color: #FDFDFD;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-value .plus {
    font-size: 2rem;
    color: #FDFDFD;
    font-weight: bold;
}

.promo-value .spins {
    font-size: 1.5rem;
    color: #FDFDFD;
    font-weight: 600;
}

.promo-content p {
    color: #FDFDFD;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.secondary-promos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(238, 58, 86, 0.2);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #EE3A56 0%, #ff6b7a 100%);
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EE3A56 0%, #ff6b7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.promo-icon i {
    color: #FDFDFD;
    font-size: 1.5rem;
}

.promo-card h4 {
    color: #FDFDFD;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.promo-amount {
    color: #EE3A56;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-card p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.promo-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e32 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-card.featured {
    border: 2px solid #EE3A56;
    background: linear-gradient(135deg, #2a2a3e 0%, #1e1e32 100%);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.promo-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.promo-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #EE3A56;
    margin-bottom: 1rem;
}

.promo-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    backdrop-filter: blur(10px);
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.features-banner-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    margin: 2rem auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-banner-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.features-payment-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 3rem auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-payment-img:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.features-content {
    margin-top: 3rem;
}

.features-description {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.features-description p {
    font-size: 1.2rem;
    color: #FDFDFD;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EE3A56 0%, #ff6b7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #FDFDFD;
}

.feature-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #ccc;
    line-height: 1.6;
}

/* CTA Section - New Design */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    text-align: center;
    margin-top: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(238, 58, 86, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(253, 253, 253, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23EE3A56" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.cta-hero {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(238, 58, 86, 0.4);
    animation: ctaBadgePulse 3s ease-in-out infinite;
}

.cta-badge i {
    font-size: 1.1rem;
}

.cta-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(238, 58, 86, 0.5);
    position: relative;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #EE3A56, #FF6B8A, #EE3A56);
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

.cta-subtitle {
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 0;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.cta-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cta-steps-container {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-steps-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(238, 58, 86, 0.1), transparent);
    animation: stepsRotate 15s linear infinite;
    z-index: 1;
}

.steps-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.steps-header h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.steps-header p {
    color: #ccc;
    font-size: 1.1rem;
}

.cta-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    background: rgba(238, 58, 86, 0.2);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(238, 58, 86, 0.3);
}

.step-item.final {
    background: linear-gradient(135deg, rgba(238, 58, 86, 0.2), rgba(255, 107, 138, 0.2));
    border-color: rgba(238, 58, 86, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 25px rgba(238, 58, 86, 0.4);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(238, 58, 86, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #EE3A56;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.step-content p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-time {
    background: rgba(238, 58, 86, 0.2);
    color: #EE3A56;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(238, 58, 86, 0.3);
}

.step-arrow {
    font-size: 1.5rem;
    color: #EE3A56;
    opacity: 0.7;
    animation: arrowPulse 2s ease-in-out infinite;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(238, 58, 86, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.benefit-text h5 {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.benefit-text p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.cta-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.card-header h4 {
    font-size: 1.4rem;
    color: #FFFFFF;
    font-weight: 700;
}

.card-content p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-mini {
    text-align: center;
    padding: 1rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(238, 58, 86, 0.2);
}

.stat-mini .stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #EE3A56;
    margin-bottom: 0.3rem;
}

.stat-mini .stat-label {
    font-size: 0.8rem;
    color: #FDFDFD;
    font-weight: 600;
}

.testimonial {
    background: rgba(238, 58, 86, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(238, 58, 86, 0.2);
}

.testimonial-text {
    margin-bottom: 1rem;
}

.testimonial-text i {
    color: #EE3A56;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.testimonial-text p {
    color: #ccc;
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-name {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-rating {
    color: #FFD700;
    font-size: 0.8rem;
}

.urgency-banner {
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.2) 0%, 
        rgba(255, 152, 0, 0.2) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 193, 7, 0.3);
    text-align: center;
    animation: urgencyPulse 3s ease-in-out infinite;
}

.urgency-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFC107, #FF9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: white;
}

.urgency-content h5 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.urgency-content p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #FFC107;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.countdown-label {
    font-size: 0.8rem;
    color: #FDFDFD;
    font-weight: 600;
}

.cta-footer {
    position: relative;
    z-index: 2;
}

.cta-description {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-description p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-tagline {
    font-size: 1.5rem !important;
    color: #EE3A56 !important;
    font-weight: 700 !important;
    font-style: italic;
    margin-bottom: 0 !important;
    text-shadow: 0 0 20px rgba(238, 58, 86, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-pulse {
    animation: buttonPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-pulse::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: buttonShimmer 3s ease-in-out infinite;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #EE3A56;
    font-size: 1rem;
}

@keyframes ctaBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(238, 58, 86, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(238, 58, 86, 0.6);
    }
}

@keyframes titleUnderline {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}

@keyframes stepsRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

@keyframes urgencyPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 193, 7, 0.6);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(238, 58, 86, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(238, 58, 86, 0.7);
    }
}

@keyframes buttonShimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Value Proposition Section */
.value-proposition-section {
    background: linear-gradient(135deg, 
        rgba(20, 20, 40, 0.95) 0%, 
        rgba(30, 30, 60, 0.95) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.value-proposition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(238, 58, 86, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(253, 253, 253, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="value-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23EE3A56" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23value-pattern)"/></svg>');
    opacity: 0.7;
    z-index: 1;
}

.value-proposition-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(238, 58, 86, 0.4);
    animation: valueBadgePulse 3s ease-in-out infinite;
}

.value-badge i {
    font-size: 1.1rem;
}

.value-proposition-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.value-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-intro {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.value-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(238, 58, 86, 0.1), transparent);
    animation: valueIntroRotate 12s linear infinite;
    z-index: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(238, 58, 86, 0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.value-text {
    position: relative;
    z-index: 2;
}

.value-text h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.value-text p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.7;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-feature {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(238, 58, 86, 0.1), 
        transparent);
    animation: valueFeatureShimmer 5s ease-in-out infinite;
}

.value-feature:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(238, 58, 86, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(238, 58, 86, 0.4);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-content h4 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.vip-benefits {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(238, 58, 86, 0.3);
}

.vip-benefits h5 {
    color: #EE3A56;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: #FDFDFD;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    color: #EE3A56;
    transform: translateX(5px);
}

.benefits-list li i {
    color: #4CAF50;
    font-size: 0.8rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.vip-note {
    background: rgba(238, 58, 86, 0.1);
    border: 1px solid rgba(238, 58, 86, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

.value-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EE3A56, #FF6B8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.card-header h4 {
    font-size: 1.4rem;
    color: #FFFFFF;
    font-weight: 700;
}

.card-content p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(238, 58, 86, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(238, 58, 86, 0.2);
    transition: all 0.3s ease;
}

.trust-point:hover {
    background: rgba(238, 58, 86, 0.2);
    transform: translateX(5px);
}

.trust-point i {
    color: #4CAF50;
    font-size: 1rem;
}

.trust-point span {
    color: #FDFDFD;
    font-size: 0.9rem;
    font-weight: 500;
}

.australian-focus-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    border: 2px solid rgba(76, 175, 80, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.focus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.focus-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.focus-header h5 {
    font-size: 1.4rem;
    color: #FFFFFF;
    font-weight: 700;
}

.focus-content p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.australian-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 1.2rem;
    color: #4CAF50;
}

.benefit-item span {
    font-size: 0.8rem;
    color: #FDFDFD;
    font-weight: 500;
    text-align: center;
}

.value-cta {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(26, 26, 46, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(238, 58, 86, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h4 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes valueBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(238, 58, 86, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(238, 58, 86, 0.6);
    }
}

@keyframes valueIntroRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes valueFeatureShimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* VIP Benefits Responsive Styles */
@media (max-width: 768px) {
    .vip-benefits h5 {
        font-size: 1rem;
    }
    
    .benefits-list li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .vip-note {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .vip-benefits h5 {
        font-size: 0.9rem;
    }
    
    .benefits-list li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        gap: 0.6rem;
    }
    
    .benefits-list li i {
        font-size: 0.7rem;
        width: 14px;
    }
    
    .vip-note {
        font-size: 0.75rem;
        padding: 0.7rem;
    }
}

@media (max-width: 320px) {
    .vip-benefits h5 {
        font-size: 0.85rem;
    }
    
    .benefits-list li {
        font-size: 0.75rem;
        padding: 0.3rem 0;
        gap: 0.5rem;
    }
    
    .benefits-list li i {
        font-size: 0.65rem;
        width: 12px;
    }
    
    .vip-note {
        font-size: 0.7rem;
        padding: 0.6rem;
    }
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 0 20px;
    border-top: 1px solid #333;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

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

.footer-section h3,
.footer-section h4 {
    color: #EE3A56;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #EE3A56;
    color: #FDFDFD;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Hide mobile buttons on desktop */
.mobile-nav-buttons {
    display: none;
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(26, 26, 46, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    color: #ccc;
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

.breadcrumb-link {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.breadcrumb-link:hover {
    color: #ffd700;
    text-decoration: none;
}

.breadcrumb-item.active span {
    color: #ffd700;
    font-weight: 500;
    font-size: 0.9rem;
}

.breadcrumb-link i {
    font-size: 0.8rem;
}

/* Trust & Authority Section */
.trust-authority-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.trust-authority-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.trust-card {
    background: linear-gradient(135deg, rgba(42, 42, 62, 0.9) 0%, rgba(30, 30, 50, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-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.6s ease;
}

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

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

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.trust-icon i {
    font-size: 2rem;
    color: #000;
}

.trust-content h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-detail {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trust-description {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.authority-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 46, 0.3) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.stat-number {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(135deg, rgba(42, 42, 62, 0.8) 0%, rgba(30, 30, 50, 0.8) 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: #ffd700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: #ccc;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
}

/* Button Images */
.btn-image {
    max-width: 150px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.btn-image-inline {
    max-width: 100px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border-radius: 6px;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        z-index: 1000;
        border-top: 1px solid rgba(238, 58, 86, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(238, 58, 86, 0.2);
        color: #EE3A56;
    }

    .nav-buttons {
        display: none;
    }

    .nav-container {
        padding: 0 1rem;
    }

    /* Mobile navigation buttons */
    .mobile-nav-buttons {
        margin-top: 2rem;
        padding: 0 2rem;
    }

    .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-buttons .btn-image {
        max-width: 100px;
        height: auto;
    }

    /* Show mobile buttons on mobile */
    .mobile-nav-buttons {
        display: block;
    }

    .btn-image {
        max-width: 120px;
    }
    
    .btn-image-inline {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .btn-image {
        max-width: 100px;
    }
    
    .btn-image-inline {
        max-width: 70px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-card {
        padding: 2rem;
    }
    
    .authority-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    /* Mobile touch optimizations */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mobile form optimizations */
    input, select, textarea {
        font-size: 16px;
        padding: 12px;
    }
    
    /* Mobile card optimizations */
    .bonus-card, .promo-card, .step-item {
        margin-bottom: 1rem;
    }
    
    /* Mobile text optimizations */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

    .hero-title {
        font-size: 3.2rem;
        padding: 30px 35px;
        margin: 1.5rem auto;
        max-width: 95%;
        letter-spacing: 1.5px;
    }
    
    .hero-title .highlight {
        font-size: inherit;
    }
    
    .hero-title .highlight::after {
        font-size: 1rem;
        top: -12px;
        right: -12px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        padding: 15px 25px;
        margin: 1.5rem 0;
        max-width: 90%;
    }
    
    .hero-subtitle::after {
        font-size: 1.2rem;
        top: -8px;
        right: -8px;
    }

    .hero-description {
        font-size: 1.1rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .hero-banner-slider {
        margin: 1.5rem 0;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .slider-btn {
        display: none;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .feature {
        padding: 0.8rem 1.2rem;
    }

    .section-separator {
        height: 40px;
    }

    .section-separator::before {
        width: 150px;
    }

    .games-section,
    .promotions-section,
    .features-section,
    .cta-section {
        margin-top: 0;
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-banner-img {
        max-width: 100%;
        margin: 1.5rem auto;
        border-radius: 15px;
    }

    .features-payment-img {
        max-width: 100%;
        margin: 2rem auto;
        border-radius: 12px;
    }

    .features-description p {
        font-size: 1.1rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .game-icon-img {
        max-height: 150px;
    }

    .promotions-banner-img {
        max-width: 100%;
        margin: 1rem auto;
        border-radius: 15px;
    }

    .promotions-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .intro-text p {
        font-size: 1.1rem;
    }

    .games-description p {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .games-grid,
    .promotions-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Game Guide Section Mobile */
    .game-guide-section {
        padding: 4rem 0;
    }

    .guide-intro-card {
        padding: 2rem;
    }

    .intro-text h3 {
        font-size: 1.8rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .guide-topics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-topic-card {
        padding: 1.5rem;
    }

    .topic-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .topic-badge {
        align-self: flex-end;
    }

    .guide-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-highlight {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cta-main {
        padding: 2rem;
    }

    .cta-content h4 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .guide-preview {
        grid-template-columns: 1fr 1fr;
        max-width: 200px;
    }

    .responsible-gaming-card {
        padding: 2rem;
    }

    .rg-tools {
        flex-direction: column;
        align-items: center;
    }

    .rg-tool {
        min-width: 120px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 4rem 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-steps-container {
        padding: 2rem;
    }

    .steps-header h3 {
        font-size: 1.5rem;
    }

    .cta-steps-timeline {
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .step-content {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-arrow {
        display: none;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1.2rem;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .stats-mini {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .urgency-banner {
        padding: 1.5rem;
    }

    .countdown {
        gap: 0.8rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-description p {
        font-size: 1rem;
    }

    .cta-tagline {
        font-size: 1.2rem !important;
    }

    .trust-indicators {
        gap: 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 20px 15px;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 10px 15px;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo-img {
        height: 30px;
        max-width: 100px;
    }
    
    .slider-container {
        height: 180px;
    }
    
    .game-card,
    .feature-item {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Live Activity Section Small Mobile */
    .live-stats-grid {
        gap: 1rem;
    }

    .live-stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .live-feed-container {
        padding: 1rem;
    }

    .live-feed-header h3 {
        font-size: 1.3rem;
    }

    .win-item {
        padding: 0.8rem;
    }

    .player-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .win-amount {
        font-size: 1rem;
    }

    .community-highlights {
        gap: 1rem;
    }

    .highlight-card {
        padding: 1rem;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .highlight-content h4 {
        font-size: 1.2rem;
    }

    /* Advantage Section Small Mobile */
    .advantage-table {
        padding: 1rem;
    }

    .table-header {
        padding: 1rem;
    }

    .table-row {
        padding: 1rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .transparency-section {
        padding: 1.5rem;
    }

    .transparency-header h3 {
        font-size: 1.3rem;
    }

    .security-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .cert-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .cert-badge span {
        font-size: 0.9rem;
    }

    /* CTA Section Tablet */
    .cta-title {
        font-size: 2.8rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .cta-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-steps-container {
        padding: 2.5rem;
    }

    .steps-header h3 {
        font-size: 1.7rem;
    }

    .step-item {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content h4 {
        font-size: 1.2rem;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .urgency-banner {
        padding: 1.5rem;
    }

    .cta-description p {
        font-size: 1.1rem;
    }

    .cta-tagline {
        font-size: 1.3rem !important;
    }

    /* Game Guide Section Tablet */
    .guide-intro-card {
        padding: 2.5rem;
    }

    .intro-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .guide-topic-card {
        padding: 2rem;
    }

    .guide-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-cta-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .guide-preview {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        padding: 25px 30px;
        margin: 1rem auto;
        max-width: 98%;
        letter-spacing: 1px;
    }
    
    .hero-title .highlight {
        font-size: inherit;
    }
    
    .hero-title .highlight::after {
        font-size: 0.8rem;
        top: -10px;
        right: -10px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        padding: 12px 20px;
        margin: 1rem 0;
        max-width: 95%;
    }
    
    .hero-subtitle::after {
        font-size: 1rem;
        top: -6px;
        right: -6px;
    }

    .hero-description {
        font-size: 1rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .features-banner-img {
        margin: 1rem auto;
        border-radius: 12px;
    }

    .features-payment-img {
        margin: 1.5rem auto;
        border-radius: 10px;
    }

    .features-description p {
        font-size: 1rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .game-icon-img {
        max-height: 120px;
    }

    .promotions-description p {
        font-size: 0.9rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .promotions-list {
        max-width: 300px;
    }

    .promotions-list li {
        font-size: 0.9rem;
    }

    .games-description p {
        font-size: 0.9rem;
        padding: 1rem 1.2rem;
        text-align: justify;
        text-justify: inter-word;
    }

    .hero-banner-slider {
        margin: 1rem 0;
    }
    
    .slider-container {
        height: 250px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    /* Mobile touch optimizations */
    .btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .dot {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .slider-btn {
        min-width: 50px;
        min-height: 50px;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-link {
        -webkit-tap-highlight-color: transparent;
    }

    /* Mobile performance optimizations */
    .hero-banner-img {
        will-change: transform;
    }

    .slide {
        will-change: transform;
    }

    /* Mobile container padding */
    .container {
        padding: 0 1rem;
    }

    /* Mobile section spacing */
    .games-section,
    .features-section,
    .promotions-section,
    .cta-section {
        padding: 3rem 0;
    }

    /* Mobile grid adjustments */
    .games-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-card,
    .feature-item {
        padding: 1.5rem;
    }

    /* Live Activity Section Mobile */
    .live-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .live-stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .live-feed-container {
        padding: 1.5rem;
    }

    .live-feed-header h3 {
        font-size: 1.5rem;
    }

    .win-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .win-details {
        align-items: center;
        text-align: center;
    }

    .community-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .highlight-content h4 {
        font-size: 1.3rem;
    }

    /* Advantage Section Mobile */
    .advantage-table {
        padding: 1.5rem;
    }

    .table-header {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .feature-cell {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .transparency-section {
        padding: 2rem;
    }

    .transparency-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .transparency-header h3 {
        font-size: 1.5rem;
    }

    .certification-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature {
        padding: 0.6rem 1rem;
    }

    .section-separator {
        height: 30px;
    }

    .section-separator::before {
        width: 120px;
    }

    .games-section,
    .promotions-section,
    .features-section,
    .cta-section {
        margin-top: 0;
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* CTA Section Small Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .cta-description p {
        font-size: 1rem;
    }

    .cta-tagline {
        font-size: 1.2rem !important;
    }

    /* CTA Section Small Mobile */
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-steps-container {
        padding: 1.5rem;
    }

    .steps-header h3 {
        font-size: 1.3rem;
    }

    .step-item {
        padding: 1.2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .benefit-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .benefit-text h5 {
        font-size: 1rem;
    }

    .benefit-text p {
        font-size: 0.8rem;
    }

    .cta-card {
        padding: 1.2rem;
    }

    .card-header h4 {
        font-size: 1.2rem;
    }

    .stat-mini .stat-number {
        font-size: 1.5rem;
    }

    .urgency-banner {
        padding: 1.2rem;
    }

    .urgency-content h5 {
        font-size: 1.1rem;
    }

    .countdown-number {
        font-size: 1.3rem;
    }

    .cta-description p {
        font-size: 0.9rem;
    }

    .cta-tagline {
        font-size: 1.1rem !important;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    /* Game Guide Section Small Mobile */
    .guide-intro-card {
        padding: 1.5rem;
    }

    .intro-text h3 {
        font-size: 1.5rem;
    }

    .intro-text p {
        font-size: 0.9rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .guide-topic-card {
        padding: 1.2rem;
    }

    .topic-content h4 {
        font-size: 1.2rem;
    }

    .topic-content p {
        font-size: 0.9rem;
    }

    .feature-highlight {
        padding: 1rem;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .cta-main {
        padding: 1.5rem;
    }

    .cta-content h4 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .guide-preview {
        max-width: 150px;
    }

    .preview-item {
        padding: 0.8rem;
    }

    .preview-item i {
        font-size: 1.2rem;
    }

    .preview-item span {
        font-size: 0.7rem;
    }

    .responsible-gaming-card {
        padding: 1.5rem;
    }

    .rg-header h5 {
        font-size: 1.2rem;
    }

    .rg-content p {
        font-size: 0.9rem;
    }

    .rg-tool {
        min-width: 100px;
        padding: 0.8rem;
    }

    .rg-tool i {
        font-size: 1rem;
    }

    .rg-tool span {
        font-size: 0.7rem;
    }
}
