/* Pirates Plundering Styles */
:root {
    /* Pirate Color Palette */
    --ocean-deep: #0F172A;
    --ocean-blue: #1E293B;
    --sea-foam: #06B6D4;
    --treasure-gold: #F59E0B;
    --gold-bright: #FCD34D;
    --weathered-brown: #92400E;
    --dark-brown: #451A03;
    --pearl-white: #F8FAFC;
    --storm-gray: #64748B;
    --danger-red: #DC2626;
    --success-green: #059669;
    
    /* Typography */
    --font-pirate: 'Pirata One', cursive;
    --font-elegant: 'Crimson Text', serif;
    --font-decorative: 'Rum Raisin', cursive;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Borders & Radius */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-treasure: 0 10px 25px rgba(245, 158, 11, 0.3);
    --shadow-ocean: 0 20px 40px rgba(15, 23, 42, 0.4);
    --shadow-chest: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-elegant);
    background: linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-blue) 50%, var(--ocean-deep) 100%);
    color: var(--pearl-white);
    overflow-x: hidden;
    position: relative;
  }
  
  /* Ocean Background Effects */
  .ocean-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(ellipse at 30% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
      linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-blue) 50%, var(--ocean-deep) 100%);
    z-index: -3;
  }
  
  .sailing-ships {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      url("data:image/svg+xml,%3Csvg width='60' height='40' viewBox='0 0 60 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.1'%3E%3Cpath d='M10 30 L20 10 L30 15 L40 10 L50 30 L10 30 Z' fill='%23F59E0B'/%3E%3Cpath d='M20 30 L20 35' stroke='%23D97706' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    animation: float-ships 20s ease-in-out infinite;
    z-index: -2;
  }
  
  .treasure-sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(2px 2px at 20px 30px, var(--gold-bright), transparent),
      radial-gradient(2px 2px at 40px 70px, var(--treasure-gold), transparent),
      radial-gradient(1px 1px at 90px 40px, var(--gold-bright), transparent),
      radial-gradient(1px 1px at 130px 80px, var(--treasure-gold), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: sparkle-treasure 8s linear infinite;
    z-index: -1;
  }
  
  .floating-barrels {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.05'%3E%3Crect x='30' y='20' width='20' height='40' rx='10' fill='%2392400E'/%3E%3Cline x1='25' y1='30' x2='55' y2='30' stroke='%23451A03' stroke-width='2'/%3E%3Cline x1='25' y1='50' x2='55' y2='50' stroke='%23451A03' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: float-barrels 15s ease-in-out infinite;
    z-index: -2;
  }
  
  /* Age Gate Styles */
  .age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--ocean-deep), var(--ocean-blue));
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .age-gate-container {
    position: relative;
    max-width: 500px;
    width: 90%;
  }
  
  .age-gate-ship {
    background: linear-gradient(145deg, #2D1810 0%, #1A0F0A 100%);
    border: 3px solid var(--treasure-gold);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-ocean);
  }
  
  .age-gate-ship::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--treasure-gold), var(--gold-bright));
    border-radius: var(--border-radius-lg);
    z-index: -1;
    animation: treasure-glow 2s ease-in-out infinite alternate;
  }
  
  .ship-wheel {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 4px solid var(--treasure-gold);
    border-radius: 50%;
    background: var(--dark-brown);
  }
  
  .ship-wheel::before {
    content: '☸️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    animation: spin-wheel 10s linear infinite;
  }
  
  .age-gate-logo .brand-name {
    font-family: var(--font-pirate);
    font-size: 1.5rem;
    color: var(--treasure-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .treasure-chest {
    width: 40px;
    height: 30px;
    background: linear-gradient(145deg, var(--weathered-brown), var(--dark-brown));
    border-radius: 8px 8px 0 0;
    margin: var(--space-sm) auto;
    position: relative;
  }
  
  .treasure-chest::after {
    content: '💰';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    animation: bounce-treasure 2s ease-in-out infinite;
  }
  
  .age-gate-title {
    font-family: var(--font-pirate);
    font-size: 2.5rem;
    text-align: center;
    margin: var(--space-md) 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  }
  
  .title-mystical {
    color: var(--sea-foam);
  }
  
  .title-main {
    color: var(--treasure-gold);
  }
  
  .age-gate-text, .age-gate-subtext {
    text-align: center;
    margin: var(--space-sm) 0;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .age-gate-buttons {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
  }
  
  .age-gate-btn {
    flex: 1;
    padding: var(--space-md);
    border: 2px solid var(--treasure-gold);
    background: linear-gradient(145deg, var(--weathered-brown), var(--dark-brown));
    color: var(--pearl-white);
    font-family: var(--font-elegant);
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 160px;
  }
  
  .age-gate-btn:hover {
    background: linear-gradient(145deg, var(--treasure-gold), var(--gold-bright));
    color: var(--ocean-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-treasure);
  }
  
  .age-gate-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--storm-gray);
    margin-top: var(--space-lg);
    font-style: italic;
  }
  
  .ocean-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(90deg, transparent, var(--sea-foam), transparent);
    opacity: 0.3;
    animation: wave-motion 3s ease-in-out infinite;
  }
  
  /* Navigation Styles */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(145deg, rgba(45, 24, 16, 0.95), rgba(26, 15, 10, 0.95));
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--treasure-gold);
  }
  
  .ship-deck {
    background: 
      repeating-linear-gradient(90deg, 
        transparent, transparent 10px, 
        rgba(245, 158, 11, 0.1) 10px, rgba(245, 158, 11, 0.1) 12px);
    padding: var(--space-xs) 0;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--treasure-gold);
  }
  
  .ship-wheel-nav {
    width: 40px;
    height: 40px;
    border: 3px solid var(--treasure-gold);
    border-radius: 50%;
    background: var(--dark-brown);
    position: relative;
    animation: spin-wheel 20s linear infinite;
  }
  
  .ship-wheel-nav::before {
    content: '☸️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
  }
  
  .brand-name {
    font-family: var(--font-pirate);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu {
    display: flex;
    gap: var(--space-lg);
  }
  
  .nav-link {
    position: relative;
    text-decoration: none;
    color: var(--pearl-white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: var(--space-xs) var(--space-sm);
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--treasure-gold);
    transform: translateY(-2px);
  }
  
  .rope-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--treasure-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  
  .nav-link:hover .rope-underline {
    transform: scaleX(1);
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--treasure-gold);
    transition: all 0.3s ease;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .ocean-horizon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(180deg, 
        rgba(6, 182, 212, 0.1) 0%, 
        transparent 30%, 
        rgba(245, 158, 11, 0.1) 70%, 
        rgba(245, 158, 11, 0.2) 100%);
    z-index: 1;
  }
  
  .hero-ship {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  .ship-sails {
    position: absolute;
    top: -100px;
    right: 10%;
    width: 200px;
    height: 300px;
    background: 
      linear-gradient(45deg, rgba(248, 250, 252, 0.1) 0%, transparent 50%);
    border-radius: 0 50% 50% 0;
    animation: sail-wave 4s ease-in-out infinite;
    z-index: -1;
  }
  
  .hero-container {
    text-align: center;
    padding: var(--space-2xl) 0;
  }
  
  .hero-title {
    font-family: var(--font-pirate);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    position: relative;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
  }
  
  .hero-title .title-mystical {
    color: var(--sea-foam);
    display: block;
  }
  
  .hero-title .title-main {
    color: var(--treasure-gold);
    display: block;
  }
  
  .compass-rose {
    position: absolute;
    top: -30px;
    right: -50px;
    font-size: 3rem;
    animation: spin-compass 20s linear infinite;
  }
  
  .compass-rose::before {
    content: '🧭';
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--pearl-white);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .cta-button {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(145deg, var(--treasure-gold), var(--gold-bright));
    color: var(--ocean-deep);
    text-decoration: none;
    font-family: var(--font-elegant);
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid var(--gold-bright);
    box-shadow: var(--shadow-treasure);
  }
  
  .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
  }
  
  .treasure-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
  }
  
  .cta-button:hover .treasure-glow {
    left: 100%;
  }
  
  .wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: 
      url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C300,90 900,30 1200,60 L1200,120 L0,120 Z' fill='%2306B6D4' opacity='0.2'/%3E%3C/svg%3E");
    background-size: 1200px 120px;
    animation: wave-flow 8s ease-in-out infinite;
  }
  
  /* Section Styles */
  .section {
    padding: var(--space-2xl) 0;
    position: relative;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
  }
  
  .section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(145deg, var(--treasure-gold), var(--gold-bright));
    color: var(--ocean-deep);
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: var(--space-md);
    font-family: var(--font-elegant);
    border: 2px solid var(--gold-bright);
  }
  
  .section-title {
    font-family: var(--font-pirate);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--treasure-gold);
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .anchor-divider {
    font-size: 2rem;
    color: var(--sea-foam);
    margin: var(--space-md) 0;
  }
  
  /* Info Sections */
  .info-sections {
    position: relative;
  }
  
  .treasure-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(ellipse at 30% 30%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 70%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    z-index: -1;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
  }
  
  .treasure-chest {
    background: linear-gradient(145deg, #2D1810 0%, #1A0F0A 100%);
    border: 3px solid var(--treasure-gold);
    border-radius: var(--border-radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-chest);
    transition: all 0.3s ease;
  }
  
  .treasure-chest:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-treasure);
  }
  
  .chest-lid {
    height: 20px;
    background: linear-gradient(145deg, var(--weathered-brown), var(--dark-brown));
    border-bottom: 2px solid var(--treasure-gold);
    position: relative;
  }
  
  .chest-lid::before {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
  }
  
  .info-header {
    padding: var(--space-md) var(--space-md) 0;
  }
  
  .info-title {
    font-family: var(--font-pirate);
    font-size: 1.5rem;
    color: var(--treasure-gold);
    margin-bottom: var(--space-sm);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .chest-content {
    padding: 0 var(--space-md) var(--space-md);
  }
  
  .info-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pearl-white);
    text-align: justify;
  }
  
  /* About Section */
  .ship-logbook {
    background: linear-gradient(145deg, #2D1810 0%, #1A0F0A 100%);
    border: 3px solid var(--treasure-gold);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-chest);
  }
  
  .parchment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      repeating-linear-gradient(0deg, 
        transparent, transparent 24px, 
        rgba(245, 158, 11, 0.1) 24px, rgba(245, 158, 11, 0.1) 25px);
    border-radius: var(--border-radius-lg);
    z-index: -1;
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pearl-white);
    text-align: justify;
    position: relative;
    z-index: 1;
  }
  
  /* Features Section */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
  }
  
  .treasure-island {
    background: linear-gradient(145deg, #2D1810 0%, #1A0F0A 100%);
    border: 3px solid var(--sea-foam);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .treasure-island:hover {
    transform: translateY(-5px);
    border-color: var(--treasure-gold);
    box-shadow: var(--shadow-treasure);
  }
  
  .island-palm {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 2rem;
  }
  
  .island-palm::before {
    content: '🌴';
  }
  
  .feature-title {
    font-family: var(--font-pirate);
    font-size: 1.4rem;
    color: var(--treasure-gold);
    margin-bottom: var(--space-sm);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pearl-white);
    text-align: justify;
  }
  
  /* Game Section */
  .ship-manifest {
    background: linear-gradient(145deg, #2D1810 0%, #1A0F0A 100%);
    border: 3px solid var(--treasure-gold);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-chest);
  }
  
  .manifest-scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(45deg, 
        transparent 25%, rgba(245, 158, 11, 0.05) 25%, rgba(245, 158, 11, 0.05) 50%, 
        transparent 50%, transparent 75%, rgba(245, 158, 11, 0.05) 75%);
    background-size: 20px 20px;
    border-radius: var(--border-radius-lg);
    z-index: -1;
  }
  
  .why-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pearl-white);
    text-align: justify;
  }
  
  .why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .treasure-chest-game {
    background: linear-gradient(145deg, #2D1810 0%, #1A0F0A 100%);
    border: 4px solid var(--treasure-gold);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    position: relative;
    box-shadow: var(--shadow-treasure);
  }
  
  .chest-hinges {
    position: absolute;
    top: -10px;
    left: 20px;
    right: 20px;
    height: 20px;
    background: var(--weathered-brown);
    border-radius: 10px 10px 0 0;
  }
  
  .chest-hinges::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
  }
  
  .game-header {
    text-align: center;
    margin-bottom: var(--space-md);
  }
  
  .game-status {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(145deg, var(--success-green), #10B981);
    color: var(--pearl-white);
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
    animation: pulse-status 2s ease-in-out infinite;
  }
  
  .play-ground-area {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
  }
  
  /* About Us Section */
  .about-us-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    align-items: center;
  }
  
  .porthole-frame {
    display: flex;
    justify-content: center;
    width: 340px;
    height: 360px;
    border: 8px solid var(--weathered-brown);
    border-radius: 50%;
    padding: 20px;
    background: linear-gradient(145deg, var(--dark-brown), var(--weathered-brown));
    position: relative;
    box-shadow: var(--shadow-chest);
  }
  
  .porthole-glass {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  }
  
  .porthole-frame img {
    width: 90%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .captain-logbook {
    background: linear-gradient(145deg, #2D1810 0%, #1A0F0A 100%);
    border: 3px solid var(--treasure-gold);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-chest);
  }
  
  .logbook-binding {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(180deg, var(--weathered-brown) 0%, var(--dark-brown) 100%);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
  }
  
  .content-section {
    margin-bottom: var(--space-lg);
  }
  
  .about-us-title {
    font-family: var(--font-pirate);
    font-size: 1.6rem;
    color: var(--treasure-gold);
    margin-bottom: var(--space-sm);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .about-us-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pearl-white);
    text-align: justify;
  }
  
  /* Footer */
  .footer {
    position: relative;
    background: linear-gradient(180deg, var(--ocean-blue) 0%, var(--ocean-deep) 100%);
    border-top: 3px solid var(--treasure-gold);
  }
  
  .ship-hull {
    background: 
      linear-gradient(145deg, #2D1810 0%, #1A0F0A 100%),
      repeating-linear-gradient(90deg, 
        transparent, transparent 15px, 
        rgba(245, 158, 11, 0.1) 15px, rgba(245, 158, 11, 0.1) 17px);
    padding: var(--space-xl) 0;
    position: relative;
  }
  
  .hull-planks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      repeating-linear-gradient(0deg, 
        transparent, transparent 40px, 
        rgba(146, 64, 14, 0.1) 40px, rgba(146, 64, 14, 0.1) 42px);
    z-index: -1;
  }
  
  .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .anchor-logo {
    font-size: 2rem;
    color: var(--treasure-gold);
    animation: float-anchor 3s ease-in-out infinite;
  }
  
  .ship-wheel-small {
    width: 30px;
    height: 30px;
    border: 2px solid var(--treasure-gold);
    border-radius: 50%;
    background: var(--dark-brown);
    position: relative;
    animation: spin-wheel 15s linear infinite;
  }
  
  .ship-wheel-small::before {
    content: '☸️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
  }
  
  .footer-links {
    display: flex;
    gap: var(--space-lg);
  }
  
  .footer-link {
    text-decoration: none;
    color: var(--pearl-white);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .footer-link:hover {
    color: var(--treasure-gold);
    transform: translateY(-2px);
  }
  
  .rope-decoration {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--treasure-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .footer-link:hover .rope-decoration {
    transform: scaleX(1);
  }
  
  .message-bottle {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    border: 2px solid var(--sea-foam);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    position: relative;
  }
  
  .message-bottle::before {
    content: '💌';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 20px;
  }
  
  .footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--pearl-white);
    text-align: center;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(245, 158, 11, 0.3);
  }
  
  .footer-copyright {
    font-size: 0.9rem;
    color: var(--storm-gray);
  }
  
  .footer-badges {
    display: flex;
    gap: var(--space-sm);
  }
  
  .treasure-badge {
    display: block;
    padding: var(--space-xs);
    background: linear-gradient(145deg, var(--treasure-gold), var(--gold-bright));
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .treasure-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  }
  
  .treasure-badge img {
    width: 71px;
    height: 47px;
    object-fit: contain;
  }
  
  .ocean-floor {
    height: 20px;
    background: linear-gradient(180deg, var(--ocean-deep) 0%, #0A0F1A 100%);
  }
  
  /* Animations */
  @keyframes float-ships {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  @keyframes sparkle-treasure {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
  }
  
  @keyframes float-barrels {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(10px) rotate(2deg); }
  }
  
  @keyframes treasure-glow {
    0% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
    100% { box-shadow: 0 0 40px rgba(245, 158, 11, 0.6); }
  }
  
  @keyframes spin-wheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  @keyframes bounce-treasure {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-5px); }
  }
  
  @keyframes sail-wave {
    0%, 100% { transform: skewX(0deg); }
    50% { transform: skewX(2deg); }
  }
  
  @keyframes spin-compass {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
  }
  
  @keyframes wave-motion {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
  }
  
  @keyframes wave-flow {
    0% { background-position: 0px 0px; }
    100% { background-position: 1200px 0px; }
  }
  
  @keyframes pulse-status {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  @keyframes float-anchor {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      background: linear-gradient(145deg, rgba(45, 24, 16, 0.98), rgba(26, 15, 10, 0.98));
      flex-direction: column;
      padding: var(--space-lg);
      transition: left 0.3s ease;
      border-top: 3px solid var(--treasure-gold);
    }
    
    .nav-menu.active {
      left: 0;
    }
    
    .nav-toggle {
      display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
  
    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4rem);
    }
  
    .compass-rose {
      display: none;
    }
  
    .info-grid {
      grid-template-columns: 1fr;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .about-us-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .porthole-frame {
      width: 250px;
      height: 250px;
      margin: 0 auto;
    }
  
    .footer-main {
      flex-direction: column;
      gap: var(--space-md);
      text-align: center;
    }
  
    .footer-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: var(--space-md);
      text-align: center;
    }
  
    .age-gate-buttons {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.2rem;
    }
  
    .cta-button {
      padding: var(--space-sm) var(--space-lg);
      font-size: 1.1rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .treasure-chest,
    .ship-logbook,
    .treasure-island,
    .captain-logbook {
      padding: var(--space-md);
    }
  
    .age-gate-ship {
      padding: var(--space-lg);
    }
  
    .age-gate-title {
      font-size: 2rem;
    }
  }
  
  /* High contrast mode support */
  @media (prefers-contrast: high) {
    :root {
      --ocean-deep: #000000;
      --ocean-blue: #1a1a1a;
      --pearl-white: #ffffff;
      --treasure-gold: #ffcc00;
      --sea-foam: #00ccff;
    }
  }
  
  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  .content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #ffffff;
}

.content-block p,
ul {
    color: rgba(255, 255, 255, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}
