@import url('https://fonts.googleapis.com/css2?family=Genos:ital,wght@0,100..900;1,100..900&family=Rubik+Moonrocks&display=swap');

/* CSS Variables for Ocean Theme Colors */
:root {
    --light-cream: rgb(253, 255, 226);
    --ocean-blue: rgb(131, 180, 255);
    --deep-blue: rgb(90, 114, 160);
    --midnight: rgb(26, 33, 48);

    --primary-font: 'Genos', sans-serif;
    --accent-font: 'Rubik Moonrocks', cursive;

    --shadow-light: 0 4px 6px rgba(26, 33, 48, 0.1);
    --shadow-medium: 0 8px 25px rgba(26, 33, 48, 0.15);
    --shadow-heavy: 0 15px 35px rgba(26, 33, 48, 0.2);

    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--primary-font);
    line-height: 1.6;
    color: var(--midnight);
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--ocean-blue) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-family: var(--accent-font);
}

h2 {
    font-size: 1.5rem;
    font-family: var(--accent-font);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 400;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: var(--primary-font);
}

.btn-primary {
    background: linear-gradient(45deg, var(--ocean-blue), var(--deep-blue));
    color: var(--light-cream);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(45deg, var(--deep-blue), var(--midnight));
}

.btn-secondary {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid var(--deep-blue);
}

.btn-secondary:hover {
    background: var(--deep-blue);
    color: var(--light-cream);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 33, 48, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--light-cream);
    margin: 10% auto;
    padding: 3rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    color: var(--midnight);
    margin-bottom: 1.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--midnight);
    color: var(--light-cream);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(26, 33, 48, 0.3);
}

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

.cookie-text p {
    margin-bottom: 0.5rem;
}

.cookie-links a {
    color: var(--ocean-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 255, 226, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.logo h1 {
    color: var(--deep-blue);
    font-size: 2rem;
    margin: 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--midnight);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--ocean-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(131, 180, 255, 0.1), rgba(26, 33, 48, 0.1)),
        url('images/seaLife2.webp') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 255, 226, 0.1), rgba(131, 180, 255, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    color: var(--midnight);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(26, 33, 48, 0.1);
}

.hero-subtitle {
    color: var(--deep-blue);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--midnight);
}

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

.disclaimer {
    font-size: 0.9rem;
    color: var(--deep-blue);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(253, 255, 226, 0.8);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--ocean-blue);
    position: relative;
    z-index: 3;
}

.ocean-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('images/star.png') repeat-x center;
    background-size: auto 105%;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-25px);
    }

    50% {
        transform: translateX(-50px);
    }

    75% {
        transform: translateX(-25px);
    }

    100% {
        transform: translateX(0);
    }
}


.feature-icon-image {
    width: 50px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--border-radius);
    margin-left: auto;
    margin-right: auto;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

section:nth-child(even) {
    background: rgba(253, 255, 226, 0.3);
}

section:nth-child(odd):not(.hero) {
    background: rgba(131, 180, 255, 0.1);
}

.section-title {
    text-align: center;
    color: var(--midnight);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--ocean-blue), var(--deep-blue));
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--deep-blue);
}

/* Features Section */
.features {
    background:
        linear-gradient(rgba(253, 255, 226, 0.8), rgba(131, 180, 255, 0.3)),
        url('images/seaLife1.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 255, 226, 0.7);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: var(--light-cream);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(131, 180, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

/* Game Section */
.game-section {
    background:
        linear-gradient(rgba(26, 33, 48, 0.1), rgba(131, 180, 255, 0.1)),
        url('images/seaLife2.webp') center/cover no-repeat;
    background-attachment: fixed;
}

.game-container {
    background: var(--light-cream);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    margin: 2rem 0;
    overflow: hidden;
}

.game-iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    width: 100%;
    max-width: 100%;
    display: block;
}

.game-info {
    background: rgba(131, 180, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.game-info h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.game-info ul {
    list-style: none;
    padding: 0;
}

.game-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(131, 180, 255, 0.2);
    position: relative;
    padding-left: 2rem;
}

.game-info li::before {
    content: '🌊';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Reviews Section */
.reviews {
    background:
        linear-gradient(rgba(131, 180, 255, 0.2), rgba(90, 114, 160, 0.1)),
        url('images/seaLife2.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 255, 226, 0.8);
    z-index: 1;
}

.reviews .container {
    position: relative;
    z-index: 2;
}

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

.review-card {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border-left: 4px solid var(--ocean-blue);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.reviewer {
    font-weight: 600;
    color: var(--deep-blue);
    margin-top: 1rem;
}

/* Bonus Section */
.bonus-content {
    margin: 3rem 0;
}

.bonus-list {
    list-style: none;
    padding: 0;
}

.bonus-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(131, 180, 255, 0.2);
    position: relative;
    padding-left: 3rem;
}

.bonus-list li::before {
    content: '💎';
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.2rem;
}



@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bonus-cta {
    text-align: center;
    margin-top: 3rem;
}

.bonus-cta p {
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq {
    background:
        linear-gradient(rgba(253, 255, 226, 0.95), rgba(131, 180, 255, 0.1)),
        url('images/seaLife2.webp') right bottom/40% no-repeat;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 255, 226, 0.5);
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

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

.faq-item {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-item h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* About Section */
.about {
    background:
        linear-gradient(rgba(253, 255, 226, 0.9), rgba(131, 180, 255, 0.2)),
        url('images/seaLife1.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Contact Section */
.contact {
    background:
        linear-gradient(rgba(131, 180, 255, 0.3), rgba(90, 114, 160, 0.2)),
        url('images/seaLife2.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 255, 226, 0.6);
    z-index: 1;
}

.about .container,
.contact .container {
    position: relative;
    z-index: 2;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 255, 226, 0.7);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Section Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin: 3rem 0;
}

.contact-info h3 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--midnight);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.contact-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(253, 255, 226, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--ocean-blue);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-feature h4 {
    color: var(--deep-blue);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-feature p {
    color: var(--midnight);
    margin: 0;
    font-size: 0.95rem;
}

.contact-card {
    background: var(--light-cream);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    text-align: center;
    border: 2px solid rgba(131, 180, 255, 0.3);
}

.contact-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: var(--accent-font);
}

.contact-card p {
    color: var(--midnight);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-btn {
    font-size: 1.1rem !important;
    padding: 1.2rem 2.5rem !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.contact-email {
    background: rgba(131, 180, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--ocean-blue);
    font-family: var(--primary-font);
}

.contact-email strong {
    color: var(--deep-blue);
    font-size: 1rem;
}

.contact-note {
    background: rgba(131, 180, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--ocean-blue);
}

.contact-note p {
    margin: 0;
    color: var(--deep-blue);
    font-size: 0.9rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: var(--light-cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ocean-blue);
    font-family: var(--accent-font);
}

.stat-label {
    font-size: 1rem;
    color: var(--deep-blue);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: url(images/seaLife1.webp);
    color: var(--light-cream);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.footer-section h3,
.footer-section h4 {
    color: var(--ocean-blue);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--light-cream);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--ocean-blue);
}

.footer-domain {
    background: rgba(131, 180, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    font-weight: 600;
}

.responsible-gaming {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-icon {
    width: auto;
    height: 30px;
    border-radius: 5px;
    transition: var(--transition);
}

.footer-icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(131, 180, 255, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer-small {
    font-size: 0.9rem;
    color: var(--ocean-blue);
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
        /* Simple mobile - can be enhanced with hamburger menu */
    }

    .ocean-animation {
        height: 150px;
        background-size: auto 80%;
    }



    .hero {
        min-height: 90vh;
        padding: 1.5rem 0;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1.3rem, 4vw, 2rem);
    }

    .hero-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2.5rem;
    }

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

    .disclaimer {
        margin: 0 1.5rem;
    }

    .modal-content {
        margin: 20% auto;
        padding: 2rem;
        width: 95%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .bonus-content {
        text-align: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-features {
        margin-bottom: 2rem;
    }

    .contact-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-btn {
        font-size: 1rem !important;
        padding: 1rem 2rem !important;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }

    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        padding: 0.8rem;
        margin: 0 1rem;
    }

    .ocean-animation {
        height: 120px;
        background-size: auto 70%;
        animation: wave 8s linear infinite;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }


    .about-stats {
        flex-direction: column;
    }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 360px) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 6vw, 1.4rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: clamp(0.85rem, 4.5vw, 1rem);
        margin-bottom: 1.5rem;
        line-height: 1.4;
        max-width: 100%;
    }

    .hero-buttons {
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .disclaimer {
        font-size: 0.75rem;
        padding: 0.6rem;
        margin: 0 0.5rem;
        line-height: 1.3;
    }

    .ocean-animation {
        height: 100px;
        background-size: auto 60%;
    }

    /* Reduce header height on very small screens */
    main {
        margin-top: 60px;
    }

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

    .logo h1 {
        font-size: 1.5rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100vh;
    }

    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 1.5rem;
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-large {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        flex: 0 1 auto;
    }

    .disclaimer {
        font-size: 0.7rem;
        padding: 0.5rem;
        margin: 0 2rem;
    }

    .ocean-animation {
        height: 80px;
        background-size: auto 50%;
    }
}

/* Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.review-card,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations can be added with JavaScript for enhanced UX */



/* Sea Life Bubbles */
.section-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.section-bubbles::before,
.section-bubbles::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(131, 180, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: bubbleFloat 15s linear infinite;
}

.section-bubbles::before {
    left: 20%;
    animation-delay: 0s;
}

.section-bubbles::after {
    right: 25%;
    animation-delay: 7s;
}

@keyframes bubbleFloat {
    0% {
        bottom: -50px;
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* Add bubbles to specific sections */
.features,
.reviews,
.faq,
.about,
.contact {
    position: relative;
}

.features .section-bubbles::before {
    animation-delay: 2s;
}

.features .section-bubbles::after {
    animation-delay: 9s;
}

.reviews .section-bubbles::before {
    animation-delay: 5s;
}

.reviews .section-bubbles::after {
    animation-delay: 12s;
}

.about .section-bubbles::before {
    animation-delay: 8s;
}

.about .section-bubbles::after {
    animation-delay: 15s;
}

.contact .section-bubbles::before {
    animation-delay: 4s;
}

.contact .section-bubbles::after {
    animation-delay: 13s;
}

/* Print Styles */
@media print {

    .header,
    .modal,
    .cookie-banner,
    .footer,
    .section-bubbles {
        display: none;
    }

    main {
        margin-top: 0;
    }

    section {
        break-inside: avoid;
        padding: 2rem 0;
    }

    .game-iframe {
        display: none;
    }
}