
:root {
    --ocean-teal: #00CED1;
    --sea-blue: #1E90FF;
    --marine-green: #2E8B57;
    --deep-sea: #006994;
    --coral-coral: #FF6B6B;
    --sunset-orange: #FF8C42;
    --treasure-gold: #FFD700;
    --pearl-white: #F8F8FF;
    --sand-beige: #F5DEB3;
    --mystic-purple: #9370DB;
    --wave-dark: #0A3D62;
    --foam-light: #E8F8F5;
}


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

body {
    font-family: 'Marvel', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, var(--foam-light) 0%, var(--pearl-white) 100%);
    color: var(--wave-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Charis SIL', Georgia, serif;
}


.coconut-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--sea-blue) 100%);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 206, 209, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.coconut-banner.show {
    transform: translateY(0);
}

.coconut-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.coconut-text {
    color: var(--pearl-white);
    font-size: 14px;
    flex: 1;
    min-width: 250px;
}

.coconut-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.coconut-link {
    color: var(--treasure-gold);
    text-decoration: none;
    font-weight: 600;
}

.coconut-link:hover {
    text-decoration: underline;
}

.coconut-accept {
    background: linear-gradient(135deg, var(--treasure-gold) 0%, var(--sunset-orange) 100%);
    color: var(--wave-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coconut-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* ===== NEWSLETTER POPUP ===== */
.coral-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 61, 98, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.coral-popup.show {
    opacity: 1;
    visibility: visible;
}

.treasure-box {
    background: var(--pearl-white);
    border-radius: 25px;
    padding: 45px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.4);
    border: 3px solid var(--ocean-teal);
    position: relative;
    animation: waveFloat 0.5s ease;
}

@keyframes waveFloat {
    from {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.shell-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: var(--wave-dark);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.shell-close:hover {
    color: var(--coral-coral);
    transform: rotate(90deg);
}

.pearl-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.treasure-box .wave-title {
    font-size: 28px;
    color: var(--deep-sea);
    margin-bottom: 15px;
}

.treasure-box .seafoam-text {
    font-size: 16px;
    color: var(--wave-dark);
    line-height: 1.6;
}

/* ===== HEADER ===== */
.shoreline-header {
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--sea-blue) 50%, var(--ocean-teal) 100%);
    padding: 20px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wave-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* ===== BURGER MENU ===== */
.seashell-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.crab-line {
    width: 100%;
    height: 3px;
    background: var(--treasure-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.seashell-burger.active .crab-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.seashell-burger.active .crab-line:nth-child(2) {
    opacity: 0;
}

.seashell-burger.active .crab-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE OVERLAY ===== */
.wave-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 61, 98, 0.8);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wave-overlay.active {
    display: block;
    opacity: 1;
}

.pearl-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pearl-logo:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.pearl-logo:active {
    transform: scale(0.98);
}

.shell-icon {
    width: 60px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.brand-title {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--treasure-gold) 0%, var(--sunset-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tide-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-ripple {
    color: var(--pearl-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-ripple::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--treasure-gold);
    transition: width 0.3s ease;
}

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

.nav-ripple:hover {
    color: var(--treasure-gold);
}

.golden-pearl {
    background: linear-gradient(135deg, var(--treasure-gold) 0%, var(--sunset-orange) 100%);
    color: var(--wave-dark);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.golden-pearl:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* ===== HERO SECTION ===== */
.horizon-hero {
    position: relative;
    height: 550px;
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sunset-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.7) 0%, rgba(30, 144, 255, 0.5) 50%, rgba(0, 206, 209, 0.6) 100%);
}

.treasure-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.wave-heading {
    font-size: 56px;
    font-weight: 900;
    color: var(--pearl-white);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.coral-subtitle {
    font-size: 24px;
    color: var(--treasure-gold);
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT SECTION ===== */
.lagoon-about {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--pearl-white) 0%, var(--foam-light) 100%);
}

.reef-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tide-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--deep-sea);
    text-align: center;
    margin-bottom: 30px;
}

.seafoam-text {
    font-size: 18px;
    color: var(--wave-dark);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* ===== BENEFITS SECTION ===== */
.treasure-benefits {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--sea-blue) 0%, var(--ocean-teal) 100%);
}

.chest-container {
    max-width: 1200px;
    margin: 0 auto;
}

.golden-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--pearl-white);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.coral-garden {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.wave-benefit {
    background: var(--pearl-white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wave-benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.3);
}

.tropical-icon {
    width: 150px;
    height: 100px;
    display: block;
    margin: 0 auto 15px auto;
    object-fit: contain;
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-blue) 50%, var(--mystic-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.sea-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-sea);
    margin-bottom: 15px;
}

.ocean-desc {
    font-size: 16px;
    color: var(--wave-dark);
    line-height: 1.6;
}

/* ===== GAMES SECTION ===== */
.pearl-games {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--foam-light) 0%, var(--pearl-white) 100%);
}

.shell-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.treasure-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--deep-sea);
    text-align: center;
    margin-bottom: 50px;
}

.crab-cove {
    display: flex;
    justify-content: center;
}

.golden-game {
    background: linear-gradient(135deg, var(--pearl-white) 0%, var(--foam-light) 100%);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 206, 209, 0.2);
    max-width: 900px;
    border: 3px solid var(--ocean-teal);
    display: flex;
    gap: 30px;
    align-items: center;
}

.game-snapshot {
    flex: 0 0 440px;
    border-radius: 15px;
    overflow: hidden;
}

.game-details {
    flex: 1;
    text-align: left;
}

.slot-visual {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.crabby-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--coral-coral);
    margin-bottom: 15px;
}

.tropical-description {
    font-size: 16px;
    color: var(--wave-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.pearl-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral-coral) 0%, var(--sunset-orange) 100%);
    color: var(--pearl-white);
    text-decoration: none;
    padding: 15px 50px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.pearl-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.6);
}

/* ===== TESTIMONIALS ===== */
.echo-cove {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--marine-green) 0%, var(--ocean-teal) 100%);
}

.wave-wall {
    max-width: 1200px;
    margin: 0 auto;
}

.shell-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--pearl-white);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.coral-cluster {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.bubble-review {
    background: var(--pearl-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.foam-quote {
    font-size: 16px;
    color: var(--wave-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.sand-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--coral-coral);
}

/* ===== NEWSLETTER ===== */
.tide-pool {
    padding: 70px 40px;
    background: linear-gradient(135deg, var(--mystic-purple) 0%, var(--deep-sea) 100%);
}

.current-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.wave-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--pearl-white);
    margin-bottom: 15px;
}

.sea-subtitle {
    font-size: 18px;
    color: var(--sand-beige);
    margin-bottom: 30px;
}

.shoreline-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.pearl-input {
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    width: 300px;
    outline: none;
}

.coral-action {
    background: linear-gradient(135deg, var(--treasure-gold) 0%, var(--sunset-orange) 100%);
    color: var(--wave-dark);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.coral-action:hover {
    transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.anchor-cove {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--pearl-white) 0%, var(--foam-light) 100%);
}

.anchor-cove-full {
    padding: 80px 40px;
    background: linear-gradient(180deg, var(--pearl-white) 0%, var(--foam-light) 100%);
    min-height: 60vh;
}

.dock-container {
    max-width: 1100px;
    margin: 0 auto;
}

.marine-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--deep-sea);
    text-align: center;
    margin-bottom: 50px;
}

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

.lighthouse-info {
    background: var(--pearl-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.15);
}

.beacon-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--ocean-teal);
    margin-bottom: 25px;
}

.compass-contact {
    margin-bottom: 30px;
}

.north-detail {
    font-size: 16px;
    color: var(--wave-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.east-icon {
    font-size: 22px;
}

.message-bottle {
    background: var(--pearl-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.15);
}

.bottle-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--ocean-teal);
    margin-bottom: 25px;
}

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

.pearl-field {
    padding: 15px 20px;
    border: 2px solid var(--ocean-teal);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.pearl-field:focus {
    border-color: var(--coral-coral);
}

.pearl-area {
    padding: 15px 20px;
    border: 2px solid var(--ocean-teal);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.pearl-area:focus {
    border-color: var(--coral-coral);
}

.tide-send {
    background: linear-gradient(135deg, var(--coral-coral) 0%, var(--sunset-orange) 100%);
    color: var(--pearl-white);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tide-send:hover {
    transform: scale(1.03);
}

/* ===== FOOTER ===== */
.seabed-footer {
    background: linear-gradient(135deg, var(--wave-dark) 0%, var(--deep-sea) 100%);
    padding: 30px 40px;
}

.ocean-floor {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.treasure-warning {
    margin-bottom: 30px;
}

.reef-disclaimer {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--coral-coral) 100%);
    color: var(--pearl-white);
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.4);
}

.pearl-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.pearl-gallery a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.pearl-gallery a:hover {
    transform: scale(1.1);
}

.footprint-image {
    width: 100px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}

.current-copyright {
    color: var(--sand-beige);
    font-size: 14px;
}

.tide-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-wave {
    color: var(--pearl-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-wave:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--treasure-gold);
}

/* ===== GAME PAGE ===== */
.tidepool-arena {
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--foam-light) 0%, var(--pearl-white) 100%);
    min-height: 80vh;
}

.coral-cave {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.treasure-game-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--coral-coral);
    margin-bottom: 15px;
}

.pearl-frame {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 206, 209, 0.3);
    border: 4px solid var(--ocean-teal);
}

.crabby-viewport {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.wave-back {
    margin-top: 30px;
}

.wave-back-center {
    text-align: center;
    margin-top: 40px;
}

.coral-return {
    display: inline-block;
    background: linear-gradient(135deg, var(--ocean-teal) 0%, var(--sea-blue) 100%);
    color: var(--pearl-white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.coral-return:hover {
    transform: scale(1.05);
}

/* ===== PAGE BANNER ===== */
.wave-banner {
    position: relative;
    height: 300px;
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.8) 0%, rgba(0, 206, 209, 0.7) 100%);
}

.pearl-center {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.ocean-page-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--pearl-white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
}

.foam-page-subtitle {
    font-size: 18px;
    color: var(--treasure-gold);
    font-weight: 600;
}

/* ===== POLICY PAGES ===== */
.coral-scroll {
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--pearl-white) 0%, var(--foam-light) 100%);
}

.pearl-parchment {
    max-width: 900px;
    margin: 0 auto;
}

.shell-article {
    background: var(--pearl-white);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.15);
    border-left: 5px solid var(--ocean-teal);
}

.tide-section {
    font-size: 26px;
    font-weight: 800;
    color: var(--deep-sea);
    margin-bottom: 20px;
}

.seafoam-para {
    font-size: 16px;
    color: var(--wave-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.sand-bullets {
    list-style: none;
    margin: 15px 0;
}

.pebble-item {
    font-size: 16px;
    color: var(--wave-dark);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.bubble-subsection {
    font-size: 20px;
    font-weight: 700;
    color: var(--ocean-teal);
    margin: 25px 0 15px 0;
}

.current-link {
    color: var(--coral-coral);
    font-weight: 600;
}

.current-link:hover {
    text-decoration: underline;
}

.wave-contact {
    color: var(--coral-coral);
    font-weight: 600;
    font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .harbor-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shoreline-header {
        padding: 15px 20px;
    }

    .wave-container {
        justify-content: space-between;
    }

    .pearl-logo {
        flex: 0 0 auto;
    }

    /* Burger Menu Styles */
    .seashell-burger {
        display: flex;
    }

    .slot-visual {
        height: 160px;
    }

    .tide-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--deep-sea) 0%, var(--sea-blue) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 80px 20px 40px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .tide-nav.active {
        right: 0;
    }

    .nav-ripple,
    .golden-pearl {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 12px;
        background: transparent;
    }

    .golden-pearl {
        background: linear-gradient(135deg, var(--treasure-gold) 0%, var(--sunset-orange) 100%);
        color: var(--wave-dark);
        margin-top: 10px;
    }

    .nav-ripple:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-ripple::after {
        display: none;
    }

    .wave-heading {
        font-size: 36px;
    }

    .coral-subtitle {
        font-size: 18px;
    }

    .horizon-hero {
        height: 400px;
    }

    .ocean-page-title {
        font-size: 32px;
    }

    .golden-game {
        padding: 20px;
        flex-direction: column;
    }

    .game-snapshot {
        flex: 0 0 184px;
    }

    .tide-title,
    .golden-title,
    .treasure-heading,
    .shell-heading,
    .marine-title {
        font-size: 28px;
    }

    .coral-garden,
    .coral-cluster {
        grid-template-columns: 1fr;
    }

    .shoreline-form {
        flex-direction: column;
        align-items: center;
    }

    .pearl-input {
        width: 100%;
        max-width: 350px;
    }

    .crabby-viewport {
        height: 400px;
    }

    .coconut-content {
        flex-direction: column;
        text-align: center;
    }

    .coconut-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 18px;
    }

    .shell-icon {
        width: 42px;
        height: 32px;
    }

    .wave-heading {
        font-size: 28px;
    }

    .tide-nav {
        width: 240px;
    }

    .nav-ripple,
    .golden-pearl {
        font-size: 14px;
        padding: 12px 15px;
    }

    .golden-game {
        padding: 20px;
        flex-direction: column;
    }

    .game-snapshot {
        flex: 0 0 auto;
        width: 100%;
    }

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

    .shell-article {
        padding: 25px;
    }
}
