/* Ocean Wave Theme - Unique Design System */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --oceantide-primary: #006994;
    --seafoam-secondary: #00b4d8;
    --coral-accent: #ff6b6b;
    --pearl-white: #ffffff;
    --deepblue-dark: #003d5b;
    --seashell-light: #e8f4f8;
    --waveblue-gradient: linear-gradient(135deg, #006994 0%, #00b4d8 50%, #48cae4 100%);
    --tidalwave-shadow: 0 8px 32px rgba(0, 105, 148, 0.3);
}

body.oceantide-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--deepblue-dark);
    background: var(--seashell-light);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.waveback-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #001f3f 0%, #003d5b 25%, #006994 50%, #00b4d8 75%, #48cae4 100%);
    background-size: 400% 400%;
    animation: waveflow-move 15s ease infinite;
    opacity: 0.9;
}

.waveback-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 180, 216, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(72, 202, 228, 0.15) 0%, transparent 50%);
    animation: waveflow-pulse 8s ease-in-out infinite;
}

@keyframes waveflow-move {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes waveflow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Header */
.marinestream-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--tidalwave-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.coralreef-nav {
    width: 100%;
}

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

.coralreef-nav .seashell-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pearlbrand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.tidalogo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.tidalogo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.nautilus-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nautilus-menu li a {
    text-decoration: none;
    color: var(--deepblue-dark);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nautilus-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--waveblue-gradient);
    transition: width 0.3s ease;
}

.nautilus-menu li a:hover::after,
.nautilus-menu li a.current-tide::after {
    width: 100%;
}

.nautilus-menu li a:hover,
.nautilus-menu li a.current-tide {
    color: var(--oceantide-primary);
}

/* Burger Menu */
.seahorse-burger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.wavebar-line {
    width: 30px;
    height: 3px;
    background: var(--oceantide-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

.seahorse-burger.active .wavebar-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.herocurrent-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../../main/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
}

.wavepattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 105, 148, 0.85) 0%, rgba(0, 180, 216, 0.75) 100%);
    z-index: 1;
}

.oceanflow-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pearl-white);
    padding: 2rem;
    animation: oceanflow-fadein 1s ease-out;
}

@keyframes oceanflow-fadein {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tidalwave-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: tidalwave-slide 1s ease-out 0.3s both;
    color: var(--pearl-white);
}

@keyframes tidalwave-slide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.seafoam-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: seafoam-fade 1s ease-out 0.6s both;
    color: var(--pearl-white);
}

@keyframes seafoam-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Buttons */
.coralbutton-primary,
.coralbutton-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--waveblue-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 105, 148, 0.4);
    border: none;
    cursor: pointer;
    animation: coralbutton-bounce 1s ease-out 0.9s both;
}

.coralbutton-secondary {
  color: #4a88be !important;
}



@keyframes coralbutton-bounce {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.coralbutton-primary:hover,
.coralbutton-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 105, 148, 0.6);
}

.coralbutton-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--pearl-white);
}

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

/* Bubble Animation */
.bubblefloat-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.bubble-item {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bubblefloat-rise 15s infinite;
}

.bubble-item:nth-child(1) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble-item:nth-child(2) {
    left: 25%;
    width: 30px;
    height: 30px;
    animation-delay: 2s;
    animation-duration: 14s;
}

.bubble-item:nth-child(3) {
    left: 40%;
    width: 25px;
    height: 25px;
    animation-delay: 4s;
    animation-duration: 13s;
}

.bubble-item:nth-child(4) {
    left: 55%;
    width: 35px;
    height: 35px;
    animation-delay: 1s;
    animation-duration: 15s;
}

.bubble-item:nth-child(5) {
    left: 70%;
    width: 28px;
    height: 28px;
    animation-delay: 3s;
    animation-duration: 11s;
}

.bubble-item:nth-child(6) {
    left: 85%;
    width: 22px;
    height: 22px;
    animation-delay: 5s;
    animation-duration: 13s;
}

.bubble-item:nth-child(7) {
    left: 50%;
    width: 32px;
    height: 32px;
    animation-delay: 2.5s;
    animation-duration: 16s;
}

.bubble-item:nth-child(8) {
    left: 75%;
    width: 26px;
    height: 26px;
    animation-delay: 4.5s;
    animation-duration: 12s;
}

@keyframes bubblefloat-rise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Popular Games Section */
.populargames-section {
    padding: 5rem 0;
    background: var(--pearl-white);
}

.seacrest-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--oceantide-primary);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.seacrest-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--waveblue-gradient);
    border-radius: 2px;
}

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

.gamecard-wave {
    background: var(--pearl-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 105, 148, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gamecard-wave:hover {
    transform: translateY(-10px);
    box-shadow: var(--tidalwave-shadow);
    border-color: var(--seafoam-secondary);
}

.cardwave-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.wavecard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gamecard-wave:hover .wavecard-img {
    transform: scale(1.1);
}

.cardwave-content {
    padding: 1.5rem;
}

.wavecard-title {
    font-size: 1.5rem;
    color: var(--oceantide-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.wavecard-text {
    color: var(--deepblue-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Game of the Week Section */
.gameweek-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--seashell-light) 0%, var(--pearl-white) 100%);
}

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

.weekwave-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--tidalwave-shadow);
}

.weekwave-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.weekwave-content {
    padding: 2rem;
}

.weekwave-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--waveblue-gradient);
    color: var(--pearl-white);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.weekwave-title {
    font-size: 2.2rem;
    color: var(--oceantide-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.weekwave-text {
    color: var(--deepblue-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Quiz Section */
.quizsection-ocean {
    padding: 5rem 0;
    background: var(--waveblue-gradient);
    color: var(--pearl-white);
}

.quizsection-ocean .seacrest-heading,
.quizsection-ocean .seafoam-subtitle {
    color: var(--pearl-white);
}

.quizsection-ocean .seacrest-heading::after {
    background: var(--pearl-white);
}

.quizwave-container {
    max-width: 800px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.quizwave-qtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--pearl-white);
}

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

.quizwave-option {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--pearl-white);
    font-size: 1.1rem;
}

.quizwave-option:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

.quizwave-option.selected {
    background: rgba(255, 255, 255, 0.4);
    border-color: var(--pearl-white);
}

.quizwave-result {
    text-align: center;
}

.quizwave-resulttitle {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quizwave-resulttext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Disclaimer Section */
.disclaimertide-section {
    padding: 3rem 0;
    background: var(--deepblue-dark);
    color: var(--pearl-white);
}

.disclaimertide-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.disclaimertide-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.disclaimertide-list {
    list-style: none;
    padding-left: 0;
}

.disclaimertide-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.disclaimertide-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* Footer */
.seabed-footer {
    background: var(--deepblue-dark);
    color: var(--pearl-white);
    padding: 3rem 0 1rem;
}

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

.footerwave-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--seafoam-secondary);
}

.footerwave-text {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.footerwave-links {
    list-style: none;
}

.footerwave-links li {
    margin-bottom: 0.5rem;
}

.footerwave-links a {
    color: var(--pearl-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerwave-links a:hover {
    color: var(--seafoam-secondary);
}

.footerwave-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footerwave-copyright {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsible Gaming Badges */
.responsiblegaming-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 10px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.responsiblegaming-badge {
    max-width: 200px;
    width: 100%;
    display: flex;
    transition: transform 0.3s ease;
}

.responsiblegaming-badge:hover {
    transform: scale(1.05);
}

.responsiblegaming-badge img {
    height: 40px;
    width: 100%;
    display: block;
    object-fit: contain;
}

/* Game Details Section */
.gamedetails-section {
    padding: 5rem 0;
        background: linear-gradient(135deg, var(--seashell-light) 0%, var(--pearl-white) 100%);
}

.gamedetail-wave {
    margin-bottom: 5rem;
}

.gamedetail-wave:last-child {
    margin-bottom: 0;
}

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

.gamedetail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--tidalwave-shadow);
}

.gamedetail-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.gamedetail-content {
    padding: 2rem;
}

.gamedetail-title {
    font-size: 2.5rem;
    color: var(--oceantide-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.gamedetail-text {
    color: var(--deepblue-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

.gamedetail-wave:nth-child(even) .gamedetail-grid {
    direction: rtl;
}

.gamedetail-wave:nth-child(even) .gamedetail-content {
    direction: ltr;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
}

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

.reviewcard-tide {
    background: var(--pearl-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 105, 148, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reviewcard-tide:hover {
    transform: translateY(-5px);
    box-shadow: var(--tidalwave-shadow);
    border-color: var(--seafoam-secondary);
}

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

.reviewcard-text {
    color: var(--deepblue-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

.reviewcard-author {
    color: var(--oceantide-primary);
    font-weight: 700;
    text-align: right;
}

/* About Page Styles */
.aboutwave-content {
    max-width: 900px;
    margin: 0 auto;
}

.aboutwave-text {
    color: var(--deepblue-dark);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.whychoose-card {
    background: var(--pearl-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 105, 148, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whychoose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--tidalwave-shadow);
    border-color: var(--seafoam-secondary);
}

.whychoose-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.whychoose-title {
    font-size: 1.5rem;
    color: var(--oceantide-primary);
    margin-bottom: 1rem;
}

.whychoose-text {
    color: var(--deepblue-dark);
    line-height: 1.8;
    font-weight: 500;
}

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

.mechanicscard-tide {
    background: var(--pearl-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 105, 148, 0.15);
    transition: all 0.3s ease;
    border-left: 4px solid var(--seafoam-secondary);
}

.mechanicscard-tide:hover {
    transform: translateX(10px);
    box-shadow: var(--tidalwave-shadow);
}

.mechanicscard-title {
    font-size: 1.3rem;
    color: var(--oceantide-primary);
    margin-bottom: 1rem;
}

.mechanicscard-text {
    color: var(--deepblue-dark);
    line-height: 1.8;
}

.faqwave-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faqwave-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.faqwave-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--pearl-white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faqwave-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faqwave-icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faqwave-item.active .faqwave-icon {
    transform: rotate(45deg);
}

.faqwave-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faqwave-item.active .faqwave-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faqwave-answer p {
    color: var(--pearl-white);
    line-height: 1.8;
}

/* Contact Page Styles */
.contactform-section {
    padding: 5rem 0;
}

.contactform-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--pearl-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--tidalwave-shadow);
}

.contactform-group {
    margin-bottom: 2rem;
}

.contactform-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--oceantide-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.contactform-input,
.contactform-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 105, 148, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--pearl-white);
    color: var(--deepblue-dark);
}

.contactform-input:focus,
.contactform-textarea:focus {
    outline: none;
    border-color: var(--seafoam-secondary);
}

.contactform-textarea {
    min-height: 150px;
    resize: vertical;
}

.contactform-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--waveblue-gradient);
    color: var(--pearl-white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 105, 148, 0.4);
}

.contactform-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 105, 148, 0.6);
}

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

.contactinfocard-tide {
    background: var(--pearl-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 105, 148, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.contactinfocard-tide:hover {
    transform: translateY(-5px);
    box-shadow: var(--tidalwave-shadow);
}

.contactinfocard-title {
    font-size: 1.5rem;
    color: var(--oceantide-primary);
    margin-bottom: 1rem;
}

.contactinfocard-text {
    color: var(--deepblue-dark);
    line-height: 1.8;
    font-weight: 500;
}

/* Policy Pages Styles */
.policywave-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--pearl-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--tidalwave-shadow);
}

.policywave-intro {
    font-size: 1.2rem;
    color: var(--deepblue-dark);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-weight: 500;
}

.policywave-heading {
    font-size: 1.8rem;
    color: var(--oceantide-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--seashell-light);
}

.policywave-text {
    color: var(--deepblue-dark);
    margin-bottom: 1rem;
    line-height: 1.9;
    font-size: 1.1rem;
    font-weight: 500;
}

.policywave-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--deepblue-dark);
    line-height: 1.9;
}

.policywave-list li {
    margin-bottom: 0.8rem;
}

.policywave-list li strong {
    color: var(--oceantide-primary);
}

/* Responsive Design */
@media (max-width: 991px) {
    .seahorse-burger {
        display: flex;
    }

    .nautilus-menu {
        position: fixed;
        top: 0;
        display: none;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nautilus-menu.active {
        right: 0;
        display: flex;
    }

    .nautilus-menu li {
        width: 100%;
    }

    .nautilus-menu li a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 105, 148, 0.1);
    }

    .tidalwave-title {
        font-size: 2.5rem;
    }

    .seafoam-subtitle {
        font-size: 1.2rem;
    }

    .weekwave-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .gamedetail-wave:nth-child(even) .gamedetail-grid {
        direction: ltr;
    }

    .reviewsgrid-wave {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .seashell-container {
        padding: 0 1rem;
    }

    .tidalwave-title {
        font-size: 2rem;
    }

    .seafoam-subtitle {
        font-size: 1rem;
    }

    .seacrest-heading {
        font-size: 2rem;
    }

    .herocurrent-section {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .quizwave-container {
        padding: 2rem 1.5rem;
    }

    .populargames-section,
    .gameweek-section,
    .quizsection-ocean {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .tidalwave-title {
        font-size: 1.8rem;
    }

    .coralbutton-primary,
    .coralbutton-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .weekwave-title {
        font-size: 1.8rem;
    }

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

/* Success Popup */
.successpopup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.successpopup-overlay.active {
    display: flex;
}

.successpopup-box {
    background: var(--pearl-white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--tidalwave-shadow);
    animation: successpopup-slide 0.3s ease-out;
}

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

.successpopup-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.successpopup-title {
    font-size: 2rem;
    color: var(--oceantide-primary);
    margin-bottom: 1rem;
}

.successpopup-text {
    color: var(--deepblue-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.successpopup-close {
    padding: 1rem 2.5rem;
    background: var(--waveblue-gradient);
    color: var(--pearl-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 105, 148, 0.4);
}

.successpopup-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 105, 148, 0.6);
}
