:root {
            --primary-color: #1a5276;
            --secondary-color: #28b463;
            --accent-color: #f39c12;
            --text-color: #2c3e50;
            --light-bg: #ebf5fb;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #f8f9fa;
        }
        .marine-gradient {
            background: linear-gradient(135deg, var(--primary-color) 0%, #3498db 100%);
        }
        .logo-text {
            font-weight: 800;
            font-size: 1.8rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            padding: 4rem 0;
            background: url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .section-title {
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
            color: var(--primary-color);
        }
        .content-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .btn-marine {
            background: var(--secondary-color);
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-marine:hover {
            background: #239b56;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(40, 180, 99, 0.4);
        }
        .btn-ocean {
            background: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-ocean:hover {
            background: #154360;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 82, 118, 0.4);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
            width: 100%;
            height: auto;
        }
        .tag {
            display: inline-block;
            background: var(--light-bg);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin: 0.25rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        .rating-stars {
            color: var(--accent-color);
        }
        footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
        }
        .footer-link {
            color: #ddd;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .logo-text {
                font-size: 1.5rem;
            }
        }
