@font-face {
    font-family: 'Jersey 15';
    src: url("/static/fonts/Jersey_15/Jersey15-Regular.54b331750a1f.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background: #e0e5ec;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    margin: 0;
    color: #222;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    min-height: 600px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(0);
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.slider-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 3rem 2rem;
    z-index: 2;
}

.hero-title {
    font-family: 'Jersey 15', sans-serif;
    font-size: 15rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-style: oblique;
    font-variant: petite-caps;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgb(231 230 230 / 94%);
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.nitro-blue {
    color: #FDFDFD;
}

.xr-yellow {
    color: #c7b0fd;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.hero-btn {
    min-width: 160px;
}

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

/* Static glowing shadow for primary hero button (Ver Precios) */
.hero-btn {
    box-shadow: 
        4px 4px 16px #bebebe, 
        -4px -4px 16px #ffffff,
        0 0 20px rgba(255, 95, 109, 0.3),
        0 0 40px rgba(255, 195, 113, 0.2);
}

/* Flowing RGB Shadow Animation for secondary hero button (Suscribirse) */
.hero-btn.secondary {
    box-shadow: 
        4px 4px 16px #bebebe, 
        -4px -4px 16px #ffffff,
        0 0 20px rgba(0, 123, 255, 0.3),
        0 0 40px rgba(0, 200, 255, 0.2);
    animation: flowingShadow 4s ease-in-out infinite;
}

@keyframes flowingShadow {
    0%, 100% {
        box-shadow: 
            4px 4px 16px #bebebe, 
            -4px -4px 16px #ffffff,
            0 0 20px rgba(0, 123, 255, 0.3),
            0 0 40px rgba(0, 200, 255, 0.2);
    }
    25% {
        box-shadow: 
            4px 4px 16px #bebebe, 
            -4px -4px 16px #ffffff,
            0 0 25px rgba(0, 150, 200, 0.4),
            0 0 50px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            4px 4px 16px #bebebe, 
            -4px -4px 16px #ffffff,
            0 0 30px rgba(0, 200, 255, 0.5),
            0 0 60px rgba(0, 123, 255, 0.4);
    }
    75% {
        box-shadow: 
            4px 4px 16px #bebebe, 
            -4px -4px 16px #ffffff,
            0 0 25px rgba(0, 150, 200, 0.4),
            0 0 50px rgba(0, 255, 255, 0.3);
    }
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 32px;
    border-radius: 32px;
    box-shadow:  20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    background: #e0e5ec;
}
.neumorphism-card {
    background: #e0e5ec;
    border-radius: 24px;
    box-shadow:  8px 8px 24px #bebebe, -8px -8px 24px #ffffff;
    margin-bottom: 32px;
    padding: 24px;
}
.brand-title {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 0.5em;
    color: #2d2d2d;
}
.subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5em;
}
.games-section h2, .subscribe-section h2 {
    font-size: 2rem;
    margin-bottom: 1em;
}
.games-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.game-card {
    width: 160px;
    text-align: center;
    padding: 16px;
    border-radius: 20px;
    background: #e0e5ec;
    box-shadow:  4px 4px 16px #bebebe, -4px -4px 16px #ffffff;
    transition: transform 0.2s;
}
.game-card:hover {
    transform: translateY(-8px) scale(1.04);
}
.game-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow:  2px 2px 8px #bebebe, -2px -2px 8px #ffffff;
}
.game-name {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}
.subscribe-section {
    text-align: center;
}
.btn-rounded {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 36px;
    background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
    color: #fff;
    border: none;
    border-radius: 32px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow:  4px 4px 16px #bebebe, -4px -4px 16px #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-rounded:hover {
    background: linear-gradient(90deg, #ffc371 0%, #ff5f6d 100%);
    transform: scale(1.05);
    box-shadow:  6px 6px 20px #bebebe, -6px -6px 20px #ffffff;
}
footer {
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-top: 32px;
}

/* Form Styles */
.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.form-group input {
    padding: 12px 16px;
    border: none;
    border-radius: 16px;
    background: #e0e5ec;
    box-shadow: inset 4px 4px 12px #bebebe, inset -4px -4px 12px #ffffff;
    font-size: 1rem;
    color: #333;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    box-shadow: inset 6px 6px 16px #bebebe, inset -6px -6px 16px #ffffff;
}

.form-group input::placeholder {
    color: #999;
}

.help-text {
    color: #666;
    font-size: 0.85rem;
    margin-top: 4px;
    font-style: italic;
}

.error {
    color: #ff5f6d;
    font-size: 0.9rem;
    margin-top: 4px;
}

.error-message {
    color: #ff5f6d;
    font-size: 0.9rem;
    margin-top: 4px;
    font-weight: 500;
}

/* Success Page Styles */
.success-container {
    text-align: center;
    padding: 40px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    position: relative;
    min-height: 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), var(--bg-image) !important;
}

.success-container h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 16px;
}

.success-message {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.success-details {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    margin-bottom: 32px;
}

.success-details p {
    margin-bottom: 8px;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-icon {
    margin-bottom: 24px;
}

.success-icon svg {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.9));
}

/* Dark Mode Styles */
body.dark-mode {
    background: #181c22;
    color: #e0e5ec;
    transition: background 0.3s, color 0.3s;
}
.dark-mode .container,
.dark-mode .neumorphism-card {
    background: #181c22;
    box-shadow: 20px 20px 60px #0f1216, -20px -20px 60px #21262e;
}
.dark-mode .brand-title {
    color: #e0e5ec;
}
.dark-mode .subtitle {
    color: #a0a5ac;
}
.dark-mode .game-card {
    background: #181c22;
    box-shadow: 4px 4px 16px #0f1216, -4px -4px 16px #21262e;
}
.dark-mode .game-name {
    color: #e0e5ec;
}
.dark-mode .btn-rounded {
    background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
    box-shadow: 4px 4px 16px #0f1216, -4px -4px 16px #21262e;
}
.dark-mode .btn-rounded:hover {
    background: linear-gradient(90deg, #ffc371 0%, #ff5f6d 100%);
}
.dark-mode .form-group input {
    background: #181c22;
    box-shadow: inset 4px 4px 12px #0f1216, inset -4px -4px 12px #21262e;
    color: #e0e5ec;
}
.dark-mode .form-group input:focus {
    box-shadow: inset 6px 6px 16px #0f1216, inset -6px -6px 16px #21262e;
}
.dark-mode .form-group label {
    color: #e0e5ec;
}
.dark-mode .help-text {
    color: #a0a5ac;
}
.dark-mode .error {
    color: #ff5f6d;
}
.dark-mode .error-message {
    color: #ff5f6d;
}
.dark-mode .benefits-list li:before {
    color: #4CAF50;
}
.dark-mode footer {
    color: #a0a5ac;
}

/* Dark Mode Hero Section */
.dark-mode .hero-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.dark-mode .hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dark-mode .hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Smooth Dark Mode Transitions */
body,
.container,
.neumorphism-card,
.game-card,
.btn-rounded,
.form-group input,
.pricing-card,
.hero-overlay,
.booking-header,
.subscribe-page-header,
.success-container {
    transition: all 0.3s ease;
}

/* Dark Mode Image Enhancements */
.dark-mode .service-image {
    filter: brightness(0.8) contrast(1.1);
}

.dark-mode .subscribe-img {
    filter: brightness(0.8) contrast(1.1);
}

/* Dark Mode Service Images */
.dark-mode .pricing-card-image {
    box-shadow: 4px 4px 16px #0f1216, -4px -4px 16px #21262e;
}

.dark-mode .subscribe-img {
    box-shadow: 8px 8px 24px #0f1216, -8px -8px 24px #21262e;
}

/* Dark Mode Header Backgrounds */
.dark-mode .booking-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), var(--bg-image) !important;
}

.dark-mode .subscribe-page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), var(--bg-image) !important;
}

.dark-mode .success-container {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), var(--bg-image) !important;
}

/* Dark Mode Text Enhancements */
.dark-mode .booking-header h1,
.dark-mode .subscribe-page-header .brand-title,
.dark-mode .success-container h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.dark-mode .booking-header .subtitle,
.dark-mode .subscribe-page-header .subtitle,
.dark-mode .success-message,
.dark-mode .success-details {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

/* Dark Mode Button Enhancements */
.dark-mode .success-actions .btn {
    background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
    box-shadow: 4px 4px 16px #0f1216, -4px -4px 16px #21262e;
}

.dark-mode .success-actions .btn:hover {
    background: linear-gradient(90deg, #ffc371 0%, #ff5f6d 100%);
    transform: translateY(-2px);
}

.dark-mode .success-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.dark-mode .success-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Pricing Section Styles */
.pricing-section {
    margin: 40px 0;
}

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

.pricing-card {
    background: #e0e5ec;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow:  8px 8px 24px #bebebe, -8px -8px 24px #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow:  12px 12px 32px #bebebe, -12px -12px 32px #ffffff;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #ff5f6d;
}

.pricing-card.featured::before {
    content: "Más Popular";
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5f6d;
    margin-bottom: 4px;
}

.pricing-duration {
    font-size: 1rem;
    color: #666;
    margin-bottom: 16px;
}

.pricing-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-discount-note {
    font-size: 0.9rem;
    color: #f4d03f;
    font-style: italic;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #333;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-button {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 4px 4px 12px #bebebe, -4px -4px 12px #ffffff;
}

.pricing-button:hover {
    background: linear-gradient(90deg, #ffc371 0%, #ff5f6d 100%);
    transform: scale(1.02);
    box-shadow: 6px 6px 16px #bebebe, -6px -6px 16px #ffffff;
}

.pricing-button.secondary {
    background: linear-gradient(90deg, #23272f 0%, #3a3f47 100%);
}

.pricing-button.secondary:hover {
    background: linear-gradient(90deg, #3a3f47 0%, #23272f 100%);
}

/* Dark Mode Pricing Styles */
.dark-mode .pricing-card {
    background: #23272f;
    box-shadow:  8px 8px 24px #13151a, -8px -8px 24px #23272f;
    color: #e0e5ec;
}

.dark-mode .pricing-card:hover {
    box-shadow:  12px 12px 32px #13151a, -12px -12px 32px #23272f;
}

.dark-mode .pricing-title {
    color: #fff;
}

.dark-mode .pricing-description {
    color: #b0b3b8;
}

.dark-mode .pricing-discount-note {
    color: #f7dc6f;
}

.dark-mode .pricing-features li {
    color: #e0e5ec;
}

.dark-mode .pricing-button {
    box-shadow:  4px 4px 16px #13151a, -4px -4px 16px #23272f;
}

.dark-mode .pricing-button.secondary {
    background: linear-gradient(90deg, #23272f 0%, #3a3f47 100%);
    color: #fff;
}

.dark-mode .pricing-button.secondary:hover {
    background: linear-gradient(90deg, #3a3f47 0%, #23272f 100%);
}

/* Booking Form Styles */
.booking-header {
    text-align: center;
    padding: 40px;
    margin-bottom: 32px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.booking-header h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 16px;
}

.booking-header .subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    background: #e0e5ec;
    border-radius: 20px;
    padding: 24px;
    box-shadow: inset 4px 4px 8px #bebebe, inset -4px -4px 8px #ffffff;
}

.form-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
}

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

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #f0f2f5;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    box-shadow: inset 2px 2px 4px #bebebe, inset -2px -2px 4px #ffffff;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: inset 2px 2px 4px #bebebe, inset -2px -2px 4px #ffffff, 0 0 0 3px rgba(255, 95, 109, 0.2);
}

.form-group input::placeholder {
    color: #999;
}

.dark-mode .form-group input::placeholder {
    color: #888;
}

.dark-mode .help-text {
    color: #b0b3b8;
}

.dark-mode .error {
    color: #ff5f6d;
}

.price-summary {
    background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
    border-radius: 20px;
    padding: 24px;
    color: white;
    box-shadow: 8px 8px 24px #bebebe, -8px -8px 24px #ffffff;
}

.price-summary h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-name,
.duration,
.total-label {
    font-weight: 500;
}

.service-price,
.duration-value,
.total-price {
    font-weight: bold;
    font-size: 1.1rem;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.form-actions .btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 8px;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 4px 4px 12px #bebebe, -4px -4px 12px #ffffff;
}

.form-actions .btn:hover {
    transform: scale(1.02);
    box-shadow: 6px 6px 16px #bebebe, -6px -6px 16px #ffffff;
}

.form-actions .btn-primary {
    background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
    color: white;
    box-shadow: 4px 4px 16px #bebebe, -4px -4px 16px #ffffff;
}

.form-actions .btn-primary:hover {
    background: linear-gradient(90deg, #ffc371 0%, #ff5f6d 100%);
    transform: scale(1.05);
}

.form-actions .btn-secondary {
    background: linear-gradient(90deg, #23272f 0%, #3a3f47 100%);
    color: white;
    box-shadow: 4px 4px 16px #bebebe, -4px -4px 16px #ffffff;
}

.form-actions .btn-secondary:hover {
    background: linear-gradient(90deg, #3a3f47 0%, #23272f 100%);
    transform: scale(1.05);
}

/* Dark Mode Booking Styles */
.dark-mode .form-section {
    background: #23272f;
    box-shadow: inset 4px 4px 8px #13151a, inset -4px -4px 8px #23272f;
}

.dark-mode .form-section h3 {
    color: #fff;
}

.dark-mode .form-group label {
    color: #e0e5ec;
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: #2a2f38;
    color: #e0e5ec;
    box-shadow: inset 2px 2px 4px #13151a, inset -2px -2px 4px #23272f;
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    box-shadow: inset 2px 2px 4px #13151a, inset -2px -2px 4px #23272f, 0 0 0 3px rgba(255, 95, 109, 0.2);
}

.dark-mode .form-actions .btn-secondary {
    background: linear-gradient(90deg, #23272f 0%, #3a3f47 100%);
    color: #fff;
    box-shadow: 4px 4px 16px #13151a, -4px -4px 16px #23272f;
}

.dark-mode .form-actions .btn-secondary:hover {
    background: linear-gradient(90deg, #3a3f47 0%, #23272f 100%);
}

/* Service Images in Pricing Cards */
.pricing-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin: -24px -24px 20px -24px;
    position: relative;
    aspect-ratio: 16/9;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.pricing-card:hover .service-image {
    transform: scale(1.05);
}

/* Subscribe Section with Image */
.subscribe-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.subscribe-text {
    flex: 1;
    min-width: 300px;
}

.subscribe-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    max-width: 400px;
}

.subscribe-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 8px 8px 24px #bebebe, -8px -8px 24px #ffffff;
    aspect-ratio: 4/3;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Subscribe Page Header */
.subscribe-page-header {
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    min-height: 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), var(--bg-image) !important;
}

.subscribe-page-header .brand-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.subscribe-page-header .subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        min-width: 200px;
    }
    
    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }
    
    .subscribe-text,
    .subscribe-image {
        min-width: 100%;
    }
    
    .subscribe-img {
        height: 250px;
        max-width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card-image {
        height: 220px;
    }
    
    .hero-section {
        height: 70vh;
        background-attachment: scroll;
        min-height: 500px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .booking-header,
    .subscribe-page-header,
    .success-container {
        min-height: 150px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 6.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        margin: 20px auto;
        padding: 20px;
    }
    
    .neumorphism-card {
        padding: 16px;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card-image {
        height: 180px;
    }
    
    .subscribe-img {
        height: 200px;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .hero-slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .booking-header,
    .subscribe-page-header,
    .success-container {
        min-height: 120px;
        padding: 20px 16px;
    }
}

/* Booking Success Page Button Styles */
.booking-success .btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 8px;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 4px 4px 12px #bebebe, -4px -4px 12px #ffffff;
}
.booking-success .btn:hover {
    transform: scale(1.02);
    box-shadow: 6px 6px 16px #bebebe, -6px -6px 16px #ffffff;
}
.booking-success .btn-primary {
    background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
    color: white;
    box-shadow: 4px 4px 16px #bebebe, -4px -4px 16px #ffffff;
}
.booking-success .btn-primary:hover {
    background: linear-gradient(90deg, #ffc371 0%, #ff5f6d 100%);
    transform: scale(1.05);
}
.booking-success .btn-secondary {
    background: linear-gradient(90deg, #23272f 0%, #3a3f47 100%);
    color: white;
    box-shadow: 4px 4px 16px #bebebe, -4px -4px 16px #ffffff;
}
.booking-success .btn-secondary:hover {
    background: linear-gradient(90deg, #3a3f47 0%, #23272f 100%);
    transform: scale(1.05);
}

/* Game Play Button Styles */
.game-play-btn {
    display: block;
    margin: 16px auto 0 auto;
    padding: 10px 28px;
    background: linear-gradient(90deg, #ff5f6d 0%, #ffc371 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 2px 2px 8px #bebebe, -2px -2px 8px #ffffff;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.game-play-btn:hover {
    background: linear-gradient(90deg, #ffc371 0%, #ff5f6d 100%);
    transform: scale(1.05);
    box-shadow: 4px 4px 12px #bebebe, -4px -4px 12px #ffffff;
}

/* Responsive improvements for game cards */
@media (max-width: 600px) {
    .games-list {
        flex-direction: column;
        align-items: center;
    }
    .game-card {
        width: 90vw;
        max-width: 320px;
    }
}

/* Alliance Section */
.alliance-section {
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 24px;
    background: var(--nitroxr-card-bg);
    box-shadow: 8px 8px 16px var(--nitroxr-shadow-dark), -8px -8px 16px var(--nitroxr-shadow-light);
}

.alliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.alliance-text h2 {
    color: var(--nitroxr-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.alliance-text p {
    color: var(--nitroxr-text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.alliance-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.alliance-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--nitroxr-bg);
    border-radius: 12px;
    box-shadow: 4px 4px 8px var(--nitroxr-shadow-dark), -4px -4px 8px var(--nitroxr-shadow-light);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alliance-feature span:last-child {
    color: var(--nitroxr-text);
    font-weight: 500;
}

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

.alliance-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 8px 8px 16px var(--nitroxr-shadow-dark), -8px -8px 16px var(--nitroxr-shadow-light);
}

@media (max-width: 768px) {
    .alliance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .alliance-text h2 {
        font-size: 1.5rem;
    }
    
    .alliance-text p {
        font-size: 1rem;
    }
    
    .alliance-features {
        gap: 0.75rem;
    }
    
    .alliance-feature {
        padding: 0.75rem;
    }
}

.alliance-feature {
    flex-direction: column;
    text-align: center;
}

/* Checkbox and Password Section Styles */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #007bff;
}

.checkbox-label {
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    color: inherit;
}

.password-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.password-section.show {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.dark-mode .password-section {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .password-section.show {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.dark-mode .checkbox-group input[type="checkbox"] {
    accent-color: #4dabf7;
}

/* === DASHBOARD DARK MODE OVERRIDES === */
body.dark-mode {
    background: #181c22 !important;
    color: #e0e5ec !important;
}

.dark-mode .pulse-dashboard-container,
.dark-mode .subscriber-dashboard-container,
.dark-mode .partner-dashboard-container {
    background: #181c22 !important;
    color: #e0e5ec !important;
}

.dark-mode .dashboard-header,
.dark-mode .neumorphism-card,
.dark-mode .summary-card,
.dark-mode .dashboard-section,
.dark-mode .quick-actions,
.dark-mode .account-info,
.dark-mode .store-info,
.dark-mode .category-item,
.dark-mode .benefit-item,
.dark-mode .activity-item,
.dark-mode .stat-card {
    background: #232733 !important;
    color: #e0e5ec !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
}

.dark-mode .btn-secondary,
.dark-mode .back-button {
    background: #232733 !important;
    color: #e0e5ec !important;
    border: 1px solid #444 !important;
}

.dark-mode .btn-secondary:hover,
.dark-mode .back-button:hover {
    background: #181c22 !important;
    color: #fff !important;
}

.dark-mode .stat-icon,
.dark-mode .card-icon,
.dark-mode .action-icon {
    color: #ffc371 !important;
}

.dark-mode .category-count,
.dark-mode .benefit-value {
    background: linear-gradient(90deg, #232733 0%, #181c22 100%) !important;
    color: #ffc371 !important;
}

.dark-mode a,
.dark-mode a:visited {
    color: #ffc371 !important;
}

.dark-mode .status-badge.active {
    background: rgba(39, 174, 96, 0.2) !important;
    color: #27ae60 !important;
    border: 1px solid #27ae60 !important;
}
.dark-mode .status-badge.inactive {
    background: rgba(231, 76, 60, 0.2) !important;
    color: #e74c3c !important;
    border: 1px solid #e74c3c !important;
}

/* Top Navigation Bar Styles */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(224, 229, 236, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(190, 190, 190, 0.2);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    text-decoration: none;
    font-family: 'Jersey 15', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    font-style: oblique;
    font-variant: petite-caps;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 2px 2px 8px rgba(190, 190, 190, 0.3);
}

.dashboard-link {
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: white;
    font-weight: 600;
    box-shadow: 2px 2px 8px rgba(190, 190, 190, 0.3);
}

.dashboard-link:hover {
    background: linear-gradient(135deg, #ff4a5a, #ffb85c);
    transform: translateY(-2px);
    box-shadow: 4px 4px 12px rgba(190, 190, 190, 0.4);
}

.dark-mode-btn {
    min-width: 120px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(190, 190, 190, 0.3);
}

.dark-mode-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Dark mode styles for navbar */
.dark-mode .top-navbar {
    background: rgba(24, 28, 34, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .nav-link {
    color: #fff;
}

.dark-mode .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dark-mode .dashboard-link {
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: white;
}

.dark-mode .dashboard-link:hover {
    background: linear-gradient(135deg, #ff4a5a, #ffb85c);
}

.dark-mode .dark-mode-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.dark-mode .dark-mode-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive navbar */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-section {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .dashboard-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .brand-link {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-section {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .dashboard-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .brand-link {
        font-size: 1.2rem;
    }
}

/* Dashboard Bar Below Hero */
.dashboard-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: rgba(24, 28, 34, 0.7);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    margin: -2.5rem auto 2.5rem auto;
    max-width: 600px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(6px);
}
.dashboard-bar-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #ffd580;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 2rem;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    box-shadow: none;
    transition: color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
    outline: none;
    cursor: pointer;
}
.dashboard-bar-btn:hover, .dashboard-bar-btn:focus {
    color: #333;
    background: rgba(255,255,255,0.7);
    transform: scale(1.04);
    box-shadow: 0 2px 8px rgba(190,190,190,0.18);
}

@media (max-width: 700px) {
    .dashboard-bar {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 0.5rem;
        max-width: 98vw;
        margin: -2.5rem auto 1.5rem auto;
    }
    .dashboard-bar-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.98rem;
        padding: 0.6rem 0.5rem;
    }
} 

/* Dark Mode Toggle Button - Icon Only */
.dark-mode-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: color 0.2s ease;
    padding: 0;
    margin: 0;
    box-shadow: none;
    text-decoration: none;
}

.dark-mode-toggle:hover {
    color: #ff5f6d;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.dark-mode .dark-mode-toggle {
    color: #e0e5ec;
}

.dark-mode .dark-mode-toggle:hover {
    color: #ffc371;
} 

/* Form Section Styles for Partner Registration */
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--nitroxr-card-bg, #f8f9fa);
    border-radius: 16px;
    box-shadow: 4px 4px 8px var(--nitroxr-shadow-dark, #d1d9e6), 
                -4px -4px 8px var(--nitroxr-shadow-light, #ffffff);
    border: 1px solid var(--nitroxr-border, #e9ecef);
}

.form-section h3 {
    color: var(--nitroxr-primary, #ff5f6d);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--nitroxr-primary, #ff5f6d);
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Dark mode styles for form sections */
.dark-mode .form-section {
    background: var(--nitroxr-card-bg-dark, #2d3748);
    border-color: var(--nitroxr-border-dark, #4a5568);
}

.dark-mode .form-section h3 {
    color: var(--nitroxr-primary-light, #ff7a8a);
    border-bottom-color: var(--nitroxr-primary-light, #ff7a8a);
}

/* Auth form specific styles */
.auth-form .form-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.auth-form .form-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Partner registration specific styles */
.partner-registration .form-section {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
}

.dark-mode .partner-registration .form-section {
    background: linear-gradient(145deg, #2d3748, #4a5568);
} 

/* Mobile Touch Improvements for Buttons */
@media (max-width: 768px) {
    /* Increase touch target size for mobile */
    .btn-rounded,
    .pricing-button,
    .hero-btn,
    .form-actions .btn,
    .booking-success .btn,
    .game-play-btn,
    .dashboard-bar-btn,
    .nav-link,
    .dashboard-link {
        min-height: 44px; /* Apple's recommended minimum touch target */
        min-width: 44px;
        padding: 12px 20px;
        font-size: 1.1rem;
        touch-action: manipulation; /* Optimize for touch */
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    /* Improve button spacing on mobile */
    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    /* Improve pricing button layout */
    .pricing-button {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
    
    /* Improve form buttons */
    .form-actions .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    /* Improve dashboard bar buttons */
    .dashboard-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .dashboard-bar-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Improve navigation links */
    .nav-link,
    .dashboard-link {
        padding: 12px 16px;
        margin: 0.25rem 0;
        text-align: center;
    }
    
    /* Improve game play buttons */
    .game-play-btn {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
    
    /* Improve success page buttons */
    .booking-success .btn {
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Even larger touch targets for very small screens */
    .btn-rounded,
    .pricing-button,
    .hero-btn,
    .form-actions .btn,
    .booking-success .btn,
    .game-play-btn,
    .dashboard-bar-btn,
    .nav-link,
    .dashboard-link {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 1.2rem;
    }
    
    /* Improve button spacing */
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .hero-btn {
        max-width: 260px;
    }
    
    /* Improve pricing grid layout */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Improve form layout */
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Improve dashboard bar */
    .dashboard-bar {
        margin: -1.5rem auto 1.5rem auto;
        padding: 0.75rem;
    }
}

/* Fix touch-action conflicts */
.hero-section {
    touch-action: pan-y pinch-zoom;
}

/* Buttons should have proper touch handling */
.btn-rounded,
.pricing-button,
.hero-btn,
.form-actions .btn,
.booking-success .btn,
.game-play-btn,
.dashboard-bar-btn,
.nav-link,
.dashboard-link {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Ensure buttons are clickable on mobile */
.btn-rounded:active,
.pricing-button:active,
.hero-btn:active,
.form-actions .btn:active,
.booking-success .btn:active,
.game-play-btn:active,
.dashboard-bar-btn:active,
.nav-link:active,
.dashboard-link:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Improve focus states for accessibility */
.btn-rounded:focus,
.pricing-button:focus,
.hero-btn:focus,
.form-actions .btn:focus,
.booking-success .btn:focus,
.game-play-btn:focus,
.dashboard-bar-btn:focus,
.nav-link:focus,
.dashboard-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Fix potential z-index issues */
.hero-content {
    z-index: 10;
}

.hero-buttons {
    z-index: 11;
}

.dashboard-bar {
    z-index: 12;
}

/* Ensure proper button hierarchy */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
a.btn-rounded,
a.pricing-button,
a.hero-btn,
a.form-actions .btn,
a.booking-success .btn,
a.game-play-btn,
a.dashboard-bar-btn,
a.nav-link,
a.dashboard-link {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
} 

/* Mobile Touch Improvements for Slider Dots */
@media (max-width: 768px) {
    .slider-dot {
        width: 16px;
        height: 16px;
        min-height: 44px; /* Ensure touch target is large enough */
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
    }
    
    .hero-slider-dots {
        bottom: 20px;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .slider-dot {
        width: 18px;
        height: 18px;
        min-height: 48px;
        min-width: 48px;
    }
    
    .hero-slider-dots {
        bottom: 15px;
        gap: 12px;
    }
}

/* Ensure slider dots are always clickable */
.slider-dot {
    position: relative;
    z-index: 15; /* Higher than other elements */
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider-dot:active {
    transform: scale(1.1);
    transition: transform 0.1s ease;
}

/* Improve slider dot visibility and interaction */
.slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s ease;
}

.slider-dot:hover::before {
    background: rgba(255, 255, 255, 0.2);
}

.slider-dot:active::before {
    background: rgba(255, 255, 255, 0.3);
} 