@font-face {
    font-family: 'Jersey 15';
    src: url('/static/fonts/Jersey_15/Jersey15-Regular.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;
    padding: 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;
    }
} 