/* General Styles */
:root {
    --primary-color: #dc2626;
    --secondary-color: #ef4444;
    --dark-color: #0a0a0a;
    --darker-color: #1a1a1a;
    --light-color: #ffffff;
    --success-color: #10b981;
    --gold-color: #fbbf24;
}

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

/* Performance: Prevent font flashing */
body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    color: #e5e7eb;
    line-height: 1.6;
    background-color: var(--dark-color);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Prevent layout shifts */
    min-height: 100vh;
    overflow-x: hidden;
    width: 100% !important;
    max-width: 100vw !important;
}

html {
    overflow-x: hidden;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Critical: Base font size for mobile (prevents iOS zoom) */
html {
    font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--light-color);
}

.highlight {
    color: var(--primary-color);
    font-weight: 900;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

/* Gradient Text - Slower Animation */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b6b 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

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

/* Highlight Box - Slower Animation */
.highlight-box {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
    animation: pulse 4s ease-in-out infinite;
}

/* Badge Gradient - Slower Animation */
.bg-gradient-red {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    animation: badgePulse 4s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.7);
    }
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

/* Logo Styles */
.header-logo, .form-logo, .footer-logo {
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-logo:hover, .form-logo:hover, .footer-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

@media (max-width: 767px) {
    .header-logo {
        height: 40px !important;
    }
    .form-logo {
        height: 50px !important;
    }
    .footer-logo {
        height: 35px !important;
    }
}

header h1 {
    color: var(--light-color);
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
    font-size: 2.5rem;
    letter-spacing: 2px;
}

header .lead {
    color: #d1d5db;
    font-size: 1rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 8px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.trust-badge i {
    margin-left: 8px;
    color: var(--light-color);
}

.trust-badge span {
    color: var(--light-color);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: 
        radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 !important;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 5s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-image-wrapper img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}

/* Carousel Images */
.carousel-images {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.carousel-img {
    max-width: 400px;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .carousel-img {
        max-width: 300px;
        max-height: 200px;
    }
}

/* Floating Badge on Image */
.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    animation: float 5s ease-in-out infinite;
    z-index: 2;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-color);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-value {
    font-size: 1rem;
    color: var(--light-color);
    font-weight: 700;
}

.hero-section::before {
    content: '♠♥♦♣';
    position: absolute;
    font-size: 15rem;
    opacity: 0.03;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.hero-section h2 {
    color: var(--light-color);
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    margin-bottom: 30px;
}

.hero-section .lead {
    color: #d1d5db;
    font-size: 1.5rem;
}

/* Premium Image Quality & Effects */
.premium-image,
.premium-game-image,
.premium-logo-image {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.premium-image {
    max-width: 500px;
    max-height: 350px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .premium-image {
        max-width: 100%;
        max-height: 250px;
    }
}

.premium-game-image {
    max-width: 100%;
    max-height: 350px;
}

@media (max-width: 768px) {
    .premium-game-image {
        max-height: 250px;
    }
}

.premium-logo-image {
    max-width: 300px;
    max-height: 200px;
}

.premium-image img,
.premium-game-image img,
.premium-logo-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.premium-image:hover img,
.premium-game-image:hover img {
    transform: scale(1.05);
}

/* Premium Overlay - Shiny Glossy Effect */
.image-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
    border-radius: 15px;
    opacity: 0.6;
    animation: premiumShine 5s ease-in-out infinite;
}

@keyframes premiumShine {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.8;
        transform: translateX(100%);
    }
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    max-width: 100%;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #dc2626, #ef4444, #fbbf24, #dc2626);
    background-size: 300% 300%;
    border-radius: 15px;
    z-index: 0;
    animation: borderGlow 5s ease infinite;
    opacity: 0.7;
}

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

.hero-image img {
    border: 3px solid var(--primary-color);
    box-shadow: 
        0 15px 40px rgba(220, 38, 38, 0.4),
        0 0 60px rgba(220, 38, 38, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

/* Premium Game Image Cards */
.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(220, 38, 38, 0.05) 0%,
        rgba(251, 191, 36, 0.1) 50%,
        rgba(220, 38, 38, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

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

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.3),
        0 0 80px rgba(251, 191, 36, 0.15);
}

.game-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-image::after {
    content: '♠ ♥ ♦ ♣';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
    font-weight: 900;
    letter-spacing: 20px;
    transition: opacity 0.3s;
}

.game-card:hover .game-image::after {
    opacity: 0.15;
}

.premium-game-image {
    filter: brightness(1) contrast(1.05) saturate(1.1);
    transition: filter 0.4s ease;
}

.game-card:hover .premium-game-image {
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
}

.features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(220, 38, 38, 0.2);
    transform: translateX(-5px);
}

.feature-item i {
    margin-left: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item span {
    color: var(--light-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Features Grid - Premium Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-color);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.feature-content {
    flex: 1;
}

.feature-content h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-color);
}

.feature-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* CTA Buttons */
.btn-xl {
    padding: 20px 50px !important;
    font-size: 1.4rem !important;
    border-radius: 60px !important;
    font-weight: 800 !important;
}

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

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow: 0 15px 60px rgba(220, 38, 38, 0.8);
    }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 5s infinite;
    pointer-events: none;
    z-index: 0;
}

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

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

.cta-note small {
    color: #d1d5db;
    font-size: 1rem;
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-color);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    max-width: 800px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-top: 15px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.benefits-section h2 {
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.benefits-section .card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefits-section .card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.benefits-section .card-title {
    color: var(--light-color);
    font-size: 1.5rem;
}

.benefits-section .card-text {
    color: #d1d5db;
}

.icon-wrapper {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.icon-wrapper i {
    color: var(--light-color) !important;
}

/* Games Section */
.games-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.games-section h2 {
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.game-card {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.game-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), transparent);
    z-index: 1;
}

.game-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-info h3 {
    color: var(--light-color);
    margin-bottom: 15px;
}

.game-info p {
    color: #d1d5db;
}

/* Payment Methods */
.payment-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.payment-section h2 {
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.payment-method {
    padding: 25px 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.payment-method i {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.payment-method p {
    color: var(--light-color);
    font-weight: 600;
    margin: 0;
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.contact-section::before {
    content: '♠♥♦♣';
    position: absolute;
    font-size: 20rem;
    opacity: 0.02;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.contact-section .card {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid rgba(220, 38, 38, 0.5);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.contact-section h2 {
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.contact-section p {
    color: #d1d5db;
}

.form-label {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--light-color);
    padding: 12px 15px;
    border-radius: 8px;
    direction: rtl;
    text-align: right;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.form-control::placeholder {
    color: #6b7280;
}

.input-group-text {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--light-color);
}

.form-text {
    color: #9ca3af;
}

.form-check-label {
    color: #d1d5db;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.testimonials-section h2 {
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.testimonial-content p {
    color: #d1d5db;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--light-color);
}

.stars {
    color: var(--gold-color);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.faq-section h2 {
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.accordion-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(26, 26, 26, 0.8);
    color: var(--light-color);
    font-weight: 600;
    border: none;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.1));
    color: var(--light-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc2626'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(0, 0, 0, 0.3);
    color: #d1d5db;
    padding: 20px;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.trust-section h2 {
    color: var(--light-color);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.trust-card {
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.trust-card h3 {
    color: var(--light-color);
    margin-bottom: 15px;
}

.trust-card p {
    color: #d1d5db;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-top: 2px solid var(--primary-color);
}

footer h3, footer h4 {
    color: var(--light-color);
}

footer p {
    color: #d1d5db;
}

footer ul li {
    margin-bottom: 10px;
    color: #d1d5db;
}

footer ul li i {
    margin-left: 10px;
    color: var(--primary-color);
}

footer hr {
    border-color: rgba(220, 38, 38, 0.3);
}

/* Poker Elements */
.poker-chip {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-color) 0%, #7f1d1d 100%);
    border-radius: 50%;
    border: 3px dashed var(--light-color);
    margin: 0 5px;
    animation: spin 6s linear infinite;
}

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

.poker-suits {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 10px;
}

/* Glow Effects */
.glow {
    animation: glow 4s ease-in-out infinite alternate;
}

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

/* Card Effect */
.card-effect {
    position: relative;
    overflow: hidden;
}

.card-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, transparent, rgba(220, 38, 38, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 5s infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ============================================
   MOBILE & DESKTOP PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Touch-friendly tap targets (minimum 44x44px) */
.btn, button, a[role="button"], 
input[type="submit"], input[type="button"],
.floating-cta, .btn-xl {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
    touch-action: manipulation; /* Removes 300ms tap delay */
    -webkit-tap-highlight-color: rgba(220, 38, 38, 0.3);
}

/* Prevent text size adjustment on iOS */
input, textarea, select {
    font-size: 16px !important; /* Prevents iOS auto-zoom */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
}

/* Optimize images for performance */
img {
    max-width: 100%;
    height: auto;
    display: block;
    loading: lazy; /* Lazy load by default */
    decoding: async;
}

img[loading="eager"] {
    loading: eager;
    fetchpriority: high;
}

/* GPU acceleration for smooth animations */
.hero-section, .premium-image, .premium-game-image,
.floating-cta, .btn, .feature-card, .game-card {
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 767px) {
    /* Performance: SLOWER animations on mobile to prevent flashing */
    .gradient-text {
        animation-duration: 8s !important;
    }
    
    .highlight-box {
        animation-duration: 6s !important;
    }
    
    .bg-gradient-red {
        animation-duration: 6s !important;
    }
    
    .image-glow {
        animation-duration: 7s !important;
    }
    
    .floating-badge {
        animation-duration: 7s !important;
    }
    
    .premium-image::after,
    .image-premium-overlay {
        animation-duration: 7s !important;
    }
    
    .btn-shine {
        animation-duration: 7s !important;
    }
    
    .pulse-btn {
        animation-duration: 6s !important;
    }
    
    .contact-section .card {
        animation-duration: 8s !important;
    }
    
    /* Keep transitions smooth but not too fast */
    * {
        transition-duration: 0.3s !important;
    }
    
    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .feature-card:hover,
        .game-card:hover,
        .card:hover {
            transform: none !important;
        }
    }
    
    /* Optimize scroll performance */
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
    }
    
    /* Prevent horizontal scroll on mobile */
    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        padding: 18px !important;
        font-size: 1.2rem !important;
    }
    
    .trust-badge {
        margin-bottom: 10px;
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    header {
        padding: 15px 0 !important;
    }
    
    header h1 {
        font-size: 1.5rem;
        margin-bottom: 5px !important;
    }
    
    header .lead {
        font-size: 0.85rem;
    }
    
    .hero-section {
        padding: 40px 0 !important;
    }
    
    .hero-section h2 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-section::before {
        font-size: 6rem;
        opacity: 0.02;
    }
    
    .feature-item {
        padding: 8px 12px;
        margin-bottom: 10px;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
    
    /* Section padding optimization */
    section {
        padding: 40px 0 !important;
    }
    
    /* Card optimization */
    .card {
        margin-bottom: 20px;
    }
    
    .card-body {
        padding: 20px !important;
    }
    
    /* Benefits section mobile */
    .benefits-section h2,
    .games-section h2,
    .payment-section h2,
    .contact-section h2,
    .testimonials-section h2,
    .faq-section h2,
    .trust-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px !important;
    }
    
    .icon-wrapper {
        height: 70px;
        width: 70px;
    }
    
    .icon-wrapper i {
        font-size: 2rem !important;
    }
    
    /* Game cards mobile */
    .game-card {
        padding: 15px;
    }
    
    .game-image img {
        height: 200px;
    }
    
    /* Payment methods mobile */
    .payment-method {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .payment-method i {
        font-size: 1.5rem;
    }
    
    /* Contact form mobile */
    .contact-section .card-body {
        padding: 25px 20px !important;
    }
    
    .contact-section h2 {
        font-size: 1.4rem;
    }
    
    .contact-section::before {
        display: none; /* Hide decorative elements on mobile */
    }
    
    /* Testimonial mobile */
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* FAQ mobile */
    .accordion-button {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 15px;
    }
    
    /* Footer mobile */
    footer {
        padding: 30px 0 !important;
    }
    
    footer h3, footer h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    footer ul li {
        font-size: 0.9rem;
    }
    
    /* Touch targets - minimum 44x44px */
    .btn,
    .form-control,
    .form-check-input {
        min-height: 44px;
    }
    
    /* Disable hover effects on mobile */
    .card-effect::after,
    .testimonial-card::after {
        display: none;
    }
    
    /* Professional elements mobile */
    .gradient-text {
        font-size: 1.5rem;
    }
    
    .highlight-box {
        font-size: 1.5rem;
        padding: 6px 15px;
    }
    
    .floating-badge {
        top: 10px;
        right: 10px;
        transform: scale(0.9);
    }
}

/* Desktop-specific optimizations */
@media (min-width: 768px) {
    /* Larger tap targets for desktop hover */
    .btn:hover, button:hover, .feature-card:hover {
        transform: translateY(-2px);
        transition: transform 0.2s ease;
    }
    
    /* Desktop spacing */
    section {
        padding: 80px 0;
    }
    
    /* Desktop typography scaling */
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    
    /* Desktop grid layouts */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Desktop image sizes */
    .premium-image {
        max-width: 600px;
    }
    
    .premium-game-image {
        max-height: 450px;
    }
}

/* Large desktop optimizations */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    /* Enhanced desktop experience */
    .hero-section {
        padding: 120px 0;
    }
    
    /* Desktop layout improvements */
    .game-card {
        padding: 30px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .premium-image,
    .premium-game-image {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Additional Mobile Styles */
@media (max-width: 767px) {
    /* Section headers mobile */
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
        letter-spacing: 1px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Form header mobile */
    .form-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-icon i {
        font-size: 2rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
    }
    
    .benefit-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Floating CTA Button (Mobile Only) */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.floating-btn {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    padding: 16px 30px !important;
    border-radius: 50px !important;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.6) !important;
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Hide floating CTA when form is in view */
@media (max-width: 768px) {
    .contact-section {
        margin-bottom: 80px; /* Space for floating button */
    }
}

/* Performance: Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-cta {
        animation: none;
    }
}

/* Performance: Will-change for animations */
.btn-primary,
.card,
.game-card,
.testimonial-card,
.payment-method {
    will-change: transform;
}

/* Performance: GPU acceleration */
.hero-section::before,
.contact-section::before {
    will-change: opacity;
    backface-visibility: hidden;
}

/* Success Message Styles */
.success-message {
    padding: 40px 20px;
}

.success-message .success-icon i {
    color: var(--success-color);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.club-code-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: inline-block;
    min-width: 250px;
}

.club-code-box h2 {
    font-size: 3rem;
    color: var(--light-color);
}

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

/* Loading state */
.form-control:disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--light-color);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--light-color);
}

/* Additional Premium Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Floating Animation for Hero Icons */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-section .feature-item:nth-child(odd) {
    animation: float 5s ease-in-out infinite;
}

.hero-section .feature-item:nth-child(even) {
    animation: float 5s ease-in-out infinite 1.5s;
}

/* Pulse Effect for Trust Badges */
@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(220, 38, 38, 0.8); }
    100% { box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4); }
}

.trust-badge {
    animation: pulse 2s ease-in-out infinite;
}

/* Card Flip Effect on Benefits */
.benefits-section .card {
    perspective: 1000px;
}

/* Neon Glow for Headings */
@keyframes neonGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(220, 38, 38, 0.5),
                     0 0 20px rgba(220, 38, 38, 0.5),
                     0 0 30px rgba(220, 38, 38, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.8),
                     0 0 30px rgba(220, 38, 38, 0.8),
                     0 0 40px rgba(220, 38, 38, 0.5);
    }
}

.hero-section h2,
.benefits-section h2,
.games-section h2,
.payment-section h2,
.contact-section h2,
.testimonials-section h2,
.faq-section h2,
.trust-section h2 {
    animation: neonGlow 3s ease-in-out infinite;
}

/* Poker Table Effect */
.game-image {
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4),
                inset 0 0 50px rgba(220, 38, 38, 0.1);
}

/* Form Header Professional */
.form-header {
    position: relative;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(220, 38, 38, 0.2);
}

.form-icon-wrapper {
    position: relative;
    display: inline-block;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.form-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
    animation: iconGlow 2s ease-in-out infinite;
}

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

.form-icon i {
    font-size: 2.5rem;
    color: var(--light-color);
    z-index: 1;
}

.form-title {
    font-size: 2rem;
    font-weight: 900;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
}

.form-subtitle strong {
    color: var(--primary-color);
}

/* Form Benefits Badges */
.form-benefits {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.benefit-badge:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--primary-color);
}

.benefit-badge i {
    color: var(--success-color);
}

/* Quick Form Styles Enhanced */
.quick-form .form-control-lg {
    padding: 18px 24px;
    font-size: 1.1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.quick-form .form-control-lg:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.3rem rgba(220, 38, 38, 0.25), 0 0 30px rgba(220, 38, 38, 0.3);
    transform: scale(1.01);
}

.quick-form .form-control:valid {
    border-color: var(--success-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    padding-left: calc(1.5em + .75rem);
}

.quick-form .form-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--light-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-form .form-label i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Optional Fields Toggle */
.optional-fields-toggle .btn-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 0;
}

.optional-fields-toggle .btn-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.optional-fields {
    animation: slideDown 0.3s ease-out;
    padding: 20px;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 10px;
    margin-bottom: 20px;
}

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

/* Submit Button Enhanced */
.btn-submit {
    padding: 18px 40px !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    min-height: 65px;
    position: relative;
}

.btn-submit:disabled {
    opacity: 0.8;
}

.btn-loader i {
    animation: spin 1s linear infinite;
}

/* Form Footer */
.form-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

/* Form Focus Glow */
.form-control:focus {
    animation: inputGlow 1.5s ease-in-out;
    transform: scale(1.02);
}

@keyframes inputGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .quick-form .form-control-lg {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-submit {
        padding: 16px 30px !important;
        font-size: 1.1rem !important;
        min-height: 60px;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
}

/* Payment Method Hover Effect */
.payment-method {
    position: relative;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(220, 38, 38, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.payment-method:hover::before {
    opacity: 1;
}

/* Testimonial Hover Effect */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '⭐';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 5rem;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.testimonial-card:hover::after {
    top: -20px;
    right: -20px;
    opacity: 0.2;
}

/* ============================================
   PERFECT ALIGNMENT & SYMMETRY ENHANCEMENTS
   ============================================ */

/* Container Perfect Centering */
.container {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Section Headers - Perfect Center */
.section-header,
.section-header h2,
.section-header h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Form Section - Perfect Centering & Conversion Focus */
.contact-section {
    position: relative;
    z-index: 10;
}

.contact-section .row {
    justify-content: center;
    align-items: center;
}

.contact-section .card {
    margin: 0 auto;
    max-width: 100%;
}

/* Form Inputs - Perfect RTL Alignment */
.form-control,
.form-control-lg {
    direction: rtl !important;
    text-align: right !important;
}

.form-control::placeholder,
.form-control-lg::placeholder {
    direction: rtl !important;
    text-align: right !important;
}

/* Form Labels - Perfect RTL */
.form-label {
    direction: rtl;
    text-align: right;
    width: 100%;
}

/* Form Header - Perfect Center */
.form-header {
    text-align: center;
    margin: 0 auto;
}

.form-icon-wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Form Benefits - Perfect Center */
.form-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
}

/* Submit Button - Perfect Center */
.d-grid {
    display: flex;
    justify-content: center;
}

.d-grid .btn {
    width: 100%;
    max-width: 100%;
}

/* Optional Fields Toggle - Perfect Center */
.optional-fields-toggle {
    text-align: center;
    margin: 0 auto;
}

.optional-fields {
    direction: rtl;
    text-align: right;
    width: 100%;
}

/* Features Grid - Perfect Alignment */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.feature-card {
    width: 100%;
}

/* Stats Bar - Perfect Centering */
.stats-bar .row {
    justify-content: center;
}

.stat-item {
    text-align: center;
    margin: 0 auto;
}

/* Benefits - Perfect Alignment */
.benefits-section .card-body {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-wrapper {
    margin: 0 auto;
}

/* Games - Perfect Alignment */
.games-section .row {
    justify-content: center;
}

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

/* Payment Methods - Perfect Center */
.payment-section .row {
    justify-content: center;
}

.payment-method {
    text-align: center;
    margin: 0 auto;
}

/* Testimonials - Perfect Alignment */
.testimonials-section .row {
    justify-content: center;
}

/* FAQ - Perfect Centering */
.faq-section .row {
    justify-content: center;
}

.faq-section .accordion {
    margin: 0 auto;
}

/* Trust Section - Perfect Alignment */
.trust-section .row {
    justify-content: center;
}

.trust-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section - Perfect Alignment */
.hero-section .row {
    align-items: center;
}

.hero-image-wrapper {
    margin: 0 auto;
    display: block;
}

/* CTA Buttons - Perfect Center */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.cta-buttons .btn {
    margin: 0 auto;
}

/* Enhanced Form Visual Pull for Conversion */
.contact-section .card {
    animation: subtlePulse 4s ease-in-out infinite;
    box-shadow: 
        0 20px 60px rgba(220, 38, 38, 0.4),
        0 0 100px rgba(220, 38, 38, 0.2) !important;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(220, 38, 38, 0.4),
            0 0 100px rgba(220, 38, 38, 0.2);
    }
    50% {
        box-shadow: 
            0 25px 70px rgba(220, 38, 38, 0.5),
            0 0 120px rgba(220, 38, 38, 0.3);
    }
}

/* Slower form pulse */
.contact-section .card {
    animation: subtlePulse 6s ease-in-out infinite;
}

/* Sharp & Smooth Rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Floating WhatsApp Button - Shiny & Appealing */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 50%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 40px rgba(37, 211, 102, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s ease-in-out infinite;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #25d366, #20ba5a, #128c7e, #25d366);
    background-size: 300% 300%;
    border-radius: 50%;
    z-index: -1;
    animation: whatsappShine 3s ease infinite;
    opacity: 0.7;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: whatsappGlow 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 40px rgba(37, 211, 102, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 6px 30px rgba(37, 211, 102, 0.6),
            0 0 60px rgba(37, 211, 102, 0.5),
            inset 0 0 25px rgba(255, 255, 255, 0.3);
    }
}

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

@keyframes whatsappGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 
        0 8px 40px rgba(37, 211, 102, 0.7),
        0 0 80px rgba(37, 211, 102, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.4);
}

.whatsapp-float:hover::after {
    opacity: 0.8;
}

.whatsapp-float i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.whatsapp-float:hover i {
    animation: whatsappIconBounce 0.6s ease;
}

@keyframes whatsappIconBounce {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Home Button in Header */
.btn-header-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.2);
}

.btn-header-cta-secondary:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    text-decoration: none;
}

/* WhatsApp Button in Header */
.whatsapp-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

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

.whatsapp-header-btn:hover::before {
    left: 100%;
}

.whatsapp-header-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #128c7e 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-header-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.whatsapp-header-btn:hover i {
    transform: scale(1.1);
}

/* WhatsApp CTA Buttons */
.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 50%, #128c7e 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 25px rgba(37, 211, 102, 0.4),
        0 0 40px rgba(37, 211, 102, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

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

.whatsapp-cta-btn:hover::before {
    left: 100%;
}

.whatsapp-cta-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #128c7e 50%, #20ba5a 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 35px rgba(37, 211, 102, 0.6),
        0 0 60px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-cta-btn i {
    font-size: 1.3rem;
}

/* WhatsApp Link Styling */
a[href*="wa.me"] {
    transition: all 0.3s ease;
}

a[href*="wa.me"]:hover {
    color: #25d366 !important;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

/* Mobile WhatsApp Float */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float i {
        font-size: 1.8rem;
    }
    
    .whatsapp-header-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .whatsapp-header-btn i {
        font-size: 1rem;
    }
    
    .btn-header-cta-secondary {
        padding: 8px 14px;
        font-size: 0.85rem;
        gap: 6px;
    }
}

/* Hide floating button when form is visible (optional) */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px; /* Above floating CTA */
    }
}

/* Mobile Perfect Alignment */
@media (max-width: 767.98px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .contact-section .card,
    .form-header,
    .d-grid .btn {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    /* Fix form mobile layout */
    .contact-section {
        padding: 20px 0 !important;
        margin: 0 !important;
    }
    
    .contact-section .card {
        padding: 20px 15px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix logo mobile sizing */
    .form-logo {
        height: 40px !important;
        max-width: 100% !important;
    }
    
    .header-logo {
        height: 35px !important;
        max-width: 100% !important;
    }
    
    /* Fix form inputs mobile */
    .form-control {
        font-size: 16px !important;
        padding: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .btn {
        width: 100% !important;
        padding: 15px !important;
        font-size: 1rem !important;
        margin: 10px 0 !important;
    }
    
    /* Fix hero section mobile */
    .hero-section {
        padding: 30px 0 !important;
    }
    
    .hero-image-wrapper {
        margin-bottom: 20px !important;
    }
    
    /* Fix sections mobile */
    section {
        padding: 40px 0 !important;
    }
}
