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

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #001122 0%, #002244 25%, #003366 50%, #004488 75%, #0055aa 100%);
    background-image: url('sharknado.png'), linear-gradient(135deg, #001122 0%, #002244 25%, #003366 50%, #004488 75%, #0055aa 100%);
    background-size: 300px 300px, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    background-blend-mode: multiply, normal;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Ocean Bubbles */
.bubble {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0.1) 70%, transparent 100%);
    border-radius: 50%;
    animation: bubble-rise 8s linear infinite;
    opacity: 0.6;
}

.bubble:nth-child(1) { left: 10%; width: 20px; height: 20px; animation-delay: 0s; }
.bubble:nth-child(2) { left: 20%; width: 15px; height: 15px; animation-delay: 1s; }
.bubble:nth-child(3) { left: 30%; width: 25px; height: 25px; animation-delay: 2s; }
.bubble:nth-child(4) { left: 40%; width: 18px; height: 18px; animation-delay: 3s; }
.bubble:nth-child(5) { left: 50%; width: 22px; height: 22px; animation-delay: 4s; }
.bubble:nth-child(6) { left: 60%; width: 16px; height: 16px; animation-delay: 5s; }
.bubble:nth-child(7) { left: 70%; width: 24px; height: 24px; animation-delay: 6s; }
.bubble:nth-child(8) { left: 80%; width: 19px; height: 19px; animation-delay: 7s; }
.bubble:nth-child(9) { left: 90%; width: 21px; height: 21px; animation-delay: 8s; }
.bubble:nth-child(10) { left: 15%; width: 17px; height: 17px; animation-delay: 9s; }
.bubble:nth-child(11) { left: 25%; width: 23px; height: 23px; animation-delay: 10s; }
.bubble:nth-child(12) { left: 35%; width: 14px; height: 14px; animation-delay: 11s; }
.bubble:nth-child(13) { left: 45%; width: 26px; height: 26px; animation-delay: 12s; }
.bubble:nth-child(14) { left: 55%; width: 20px; height: 20px; animation-delay: 13s; }
.bubble:nth-child(15) { left: 65%; width: 18px; height: 18px; animation-delay: 14s; }
.bubble:nth-child(16) { left: 75%; width: 22px; height: 22px; animation-delay: 15s; }
.bubble:nth-child(17) { left: 85%; width: 16px; height: 16px; animation-delay: 16s; }
.bubble:nth-child(18) { left: 95%; width: 24px; height: 24px; animation-delay: 17s; }
.bubble:nth-child(19) { left: 5%; width: 19px; height: 19px; animation-delay: 18s; }
.bubble:nth-child(20) { left: 85%; width: 21px; height: 21px; animation-delay: 19s; }

@keyframes bubble-rise {
    0% {
        bottom: -50px;
        transform: translateX(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 100vh;
        transform: translateX(100px) scale(1.2);
        opacity: 0;
    }
}

.tornado {
    position: absolute;
    right: -100px;
    top: 50%;
    width: 200px;
    height: 400px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1), transparent);
    border-radius: 50%;
    animation: tornado-spin 8s linear infinite;
    transform: translateY(-50%);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
}

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

.shark {
    position: absolute;
    font-size: 2rem;
    animation: shark-swim 12s linear infinite;
}

.shark1 {
    top: 20%;
    animation-delay: 0s;
}

.shark2 {
    top: 50%;
    animation-delay: 4s;
}

.shark3 {
    top: 80%;
    animation-delay: 8s;
}

@keyframes shark-swim {
    0% { left: -100px; transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { left: 100vw; transform: translateY(0px); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00d4ff;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: title-glow 2s ease-in-out infinite alternate;
}



/* Main Content */
main {
    margin-top: 80px;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('sharknado.png');
    background-size: 400px 400px;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: multiply;
}

.hero-content {
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.5)); }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: #00d4ff;
    color: white;
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #00d4ff;
}

.feature h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

/* Chart Section */
.chart-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.chart-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

.chart-container {
    max-width: 800px;
    margin: 0 auto;
}

.chart-placeholder {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chart-animation {
    height: 200px;
    position: relative;
    margin-bottom: 2rem;
}

.price-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff6b6b, #ffd700);
    animation: price-move 3s ease-in-out infinite;
}

@keyframes price-move {
    0%, 100% { transform: scaleX(0.8) translateY(0); }
    50% { transform: scaleX(1.2) translateY(-50px); }
}

.price-points {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    animation: point-bounce 2s ease-in-out infinite;
}

.point:nth-child(1) { left: 10%; animation-delay: 0s; }
.point:nth-child(2) { left: 30%; animation-delay: 0.4s; }
.point:nth-child(3) { left: 50%; animation-delay: 0.8s; }
.point:nth-child(4) { left: 70%; animation-delay: 1.2s; }
.point:nth-child(5) { left: 90%; animation-delay: 1.6s; }

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

.chart-text {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.chart-subtext {
    color: #cccccc;
}

/* Battle Section */
.battle-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 34, 68, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.battle-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.battle-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
    display: block;
}

.battle-image:hover {
    transform: scale(1.05);
}

.section-corner-image {
    position: absolute;
    width: 300px;
    height: auto;
    border-radius: 20px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: saturate(1.5) brightness(1.2);
    z-index: 2;
}

.section-corner-image:hover {
    opacity: 1;
    transform: scale(1.15);
    filter: saturate(2) brightness(1.4);
}

.section-corner-top-left {
    top: 20px;
    left: 20px;
    filter: saturate(1.5) brightness(1.2) drop-shadow(0 0 20px #00d4ff) drop-shadow(0 0 40px #00d4ff);
    animation: color-pulse-cyan 3s ease-in-out infinite;
}

.section-corner-top-right {
    top: 20px;
    right: 20px;
    filter: saturate(1.5) brightness(1.2) drop-shadow(0 0 20px #ff6b6b) drop-shadow(0 0 40px #ff6b6b);
    animation: color-pulse-coral 3s ease-in-out infinite 1s;
}

.section-corner-bottom-left {
    bottom: 20px;
    left: 20px;
    filter: saturate(1.5) brightness(1.2) drop-shadow(0 0 20px #ffd700) drop-shadow(0 0 40px #ffd700);
    animation: color-pulse-gold 3s ease-in-out infinite 2s;
}

.section-corner-bottom-right {
    bottom: 20px;
    right: 20px;
    filter: saturate(1.5) brightness(1.2) drop-shadow(0 0 20px #00d4ff) drop-shadow(0 0 40px #00d4ff);
    animation: color-pulse-cyan 3s ease-in-out infinite 0.5s;
}

@keyframes color-pulse-cyan {
    0%, 100% { 
        filter: saturate(1.5) brightness(1.2) drop-shadow(0 0 20px #00d4ff) drop-shadow(0 0 40px #00d4ff);
    }
    50% { 
        filter: saturate(2) brightness(1.4) drop-shadow(0 0 30px #00d4ff) drop-shadow(0 0 60px #00d4ff);
    }
}

@keyframes color-pulse-coral {
    0%, 100% { 
        filter: saturate(1.5) brightness(1.2) drop-shadow(0 0 20px #ff6b6b) drop-shadow(0 0 40px #ff6b6b);
    }
    50% { 
        filter: saturate(2) brightness(1.4) drop-shadow(0 0 30px #ff6b6b) drop-shadow(0 0 60px #ff6b6b);
    }
}

@keyframes color-pulse-gold {
    0%, 100% { 
        filter: saturate(1.5) brightness(1.2) drop-shadow(0 0 20px #ffd700) drop-shadow(0 0 40px #ffd700);
    }
    50% { 
        filter: saturate(2) brightness(1.4) drop-shadow(0 0 30px #ffd700) drop-shadow(0 0 60px #ffd700);
    }
}

.battle-text {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    margin: 0;
}

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

/* Reservation Section */
.reservation {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 102, 204, 0.15) 100%);
    position: relative;
}

.reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.reservation .container {
    position: relative;
    z-index: 1;
}

.reservation h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

.reservation-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
    min-height: 300px;
}

.reservation-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 5rem;
    background: linear-gradient(45deg, #00d4ff, #0088cc);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 900;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 60px rgba(0, 212, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.reservation-link:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 80px rgba(0, 212, 255, 0.8);
    background: linear-gradient(45deg, #00e5ff, #00aaff);
    border-color: rgba(255, 255, 255, 0.6);
}

.reservation-icon {
    font-size: 3rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

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

.reservation-text {
    font-family: 'Orbitron', monospace;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #1da1f2, #00d4ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.social-icon {
    font-size: 1.5rem;
}

.contact-text {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form-section {
    max-width: 600px;
    margin: 3rem auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.contact-form-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.form-message {
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 255, 0, 0.2);
    border: 2px solid #00ff00;
    color: #00ff00;
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    color: #ff0000;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: #cccccc;
}

/* Reservation Captcha Styles */
.reservation-subtitle {
    text-align: center;
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.reservation-captcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    min-height: 300px;
}

.reservation-captcha-container .g-recaptcha {
    transform: scale(1.1);
    transform-origin: center;
    margin-bottom: 1rem;
}

.captcha-error {
    color: #ff6b6b;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
}

.success-message {
    text-align: center;
    color: #00ff00;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: success-pulse 1.5s ease-in-out infinite;
}

@keyframes success-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reservation-captcha-container .g-recaptcha {
        transform: scale(0.9);
    }
    
    .reservation-link {
        font-size: 1.3rem;
        padding: 1.5rem 3rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Captcha Modal Styles */
.captcha-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.captcha-modal-content {
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.95) 0%, rgba(0, 68, 136, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 80px rgba(0, 212, 255, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
    animation: modal-slide-in 0.3s ease;
}

@keyframes modal-slide-in {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.captcha-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.captcha-modal-header h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 900;
}

.captcha-modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.captcha-modal-close:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: rotate(90deg);
}

.captcha-modal-body {
    text-align: center;
}

.captcha-modal-body p {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.captcha-modal-body .g-recaptcha {
    display: inline-block;
    transform: scale(1);
}

/* Button styled as link */
.reservation-link {
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
}

@media (max-width: 480px) {
    .captcha-modal-content {
        padding: 1.5rem;
    }
    
    .captcha-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .captcha-modal-body .g-recaptcha {
        transform: scale(0.85);
    }
}
