:root {
    --primary-bg: #0b0e14;
    --secondary-bg: #161b22;
    --accent-blue: #00d2ff;
    --accent-purple: #9d50bb;
    --accent-orange: #f2994a;
    --accent-green: #27ae60;
    --text-main: #e6edf3;
    --text-muted: #8b949e;
    --dock-border: #30363d;
    --glow: 0 0 15px rgba(0, 210, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Harbor Map Navigation */
header {
    background: rgba(11, 14, 20, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--dock-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--accent-blue);
    text-shadow: var(--glow);
}

/* Hero Section - Dock Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a2332 0%, #0b0e14 100%);
    padding: 2rem;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: var(--accent-blue);
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: var(--glow);
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--accent-blue);
    margin: 10px auto;
}

/* Game Docks Grid */
.docks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dock-card {
    background: var(--secondary-bg);
    border: 1px solid var(--dock-border);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.dock-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
}

.dock-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.dock-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

/* Weekly Arrivals */
.arrivals-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.arrival-item {
    background: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.arrival-img {
    width: 100px;
    height: 100px;
    background: #30363d;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Recommendation Cards */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    font-style: italic;
}

.author {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--accent-blue);
}

/* Safety Note */
.safety-note {
    background: rgba(242, 153, 74, 0.1);
    border: 1px solid var(--accent-orange);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 4rem;
    text-align: center;
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--dock-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--dock-border);
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Static Pages Content */
.static-page {
    padding: 10rem 2rem 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.static-page h1 {
    margin-bottom: 2rem;
}

.static-page p, .static-page ul {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none;
    }
}
