 :root {
            --accent-color: #00a0f0;
            --accent-color-dark: #0077b6;
            --bg-primary: #1f242e;
            --bg-secondary: #171c26;
            --text-primary: #ffffff;
            --text-secondary: #8896b8;
        }

        .brand-color {
            color: #1F5B61;
        }

        .language-toggle .language-btn {
            color: #ccc;
            transition: all 0.3s ease;
        }

        .language-toggle .language-btn.active {
            background-color: #00a0f0;
            color: white;
        }

        @font-face {
            font-family: Ethnocentric;
            src: url(assets/Ethnocentric.otf);
        }

        .brand-font {
            font-family: 'Ethnocentric';
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #1F5B61;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden !important;
            width: 100%;
            max-width: 100%;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            max-width: 100vw !important;
            overflow-x: hidden !important;
            width: 100%;
            position: relative;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            margin: 0;
            padding: 0;
        }

        .btn-primary {
            background: linear-gradient(90deg, #00a0f0 0%, #0077b6 100%);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: linear-gradient(90deg, #4cc9f0 0%, #00a0f0 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 160, 240, 0.2);
        }

        .glow {
            box-shadow: 0 0 15px rgba(0, 160, 240, 0.5);
        }

        .glow-text {
            text-shadow: 0 0 10px rgba(0, 160, 240, 0.5);
        }

        .card {
            background: rgba(23, 28, 38, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            border: 1px solid rgba(0, 160, 240, 0.3);
            box-shadow: 0 10px 20px rgba(0, 160, 240, 0.1);
        }

        .gradient-text {
            background: linear-gradient(90deg, #1F5B61, #4cc9f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .fish-container {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .fish {
            position: absolute;
            width: 30px;
            height: 15px;
            opacity: 0.6;
            filter: drop-shadow(0 0 5px rgba(0, 160, 240, 0.5));
            z-index: 1;
            animation: swim 25s linear infinite;
        }

        @keyframes swim {
            0% {
                transform: translateX(-50px) rotate(0deg);
                opacity: 0;
            }
            5% {
                opacity: 0.6;
            }
            45% {
                transform: translateX(100vw) rotate(5deg);
                opacity: 0.6;
            }
            50% {
                transform: translateX(100vw) scaleX(-1) rotate(-5deg);
                opacity: 0.6;
            }
            95% {
                transform: translateX(-50px) scaleX(-1) rotate(0deg);
                opacity: 0.6;
            }
            100% {
                transform: translateX(-50px) scaleX(-1) rotate(0deg);
                opacity: 0;
            }
        }

        .section {
            padding: 7rem 0;
            position: relative;
            overflow: hidden;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.1;
            z-index: -1;
            pointer-events: none;
        }

        .btn-ghost {
            background: rgba(0, 160, 240, 0.1);
            border: 1px solid rgba(0, 160, 240, 0.3);
            transition: all 0.3s ease;
        }

        .btn-ghost:hover {
            background: rgba(0, 160, 240, 0.2);
            border: 1px solid rgba(0, 160, 240, 0.5);
        }

        .stats-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .stats-progress {
            height: 100%;
            background: linear-gradient(90deg, #00a0f0, #4cc9f0);
            border-radius: 3px;
            transition: width 1.5s ease;
        }

        .nav-link {
            position: relative;
            padding: 5px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

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

        .sticky-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(31, 36, 46, 0.8);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .hidden-nav {
            transform: translateY(-100%);
        }

        #ocean-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -10;
            opacity: 0.3;
            pointer-events: none;
        }

        .svg-container {
            overflow: visible;
            max-width: 100%;
        }

        .typed-cursor {
            color: var(--accent-color);
        }

        .logo-fish {
            width: 100%;
            height: 100%;
        }

        .glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

        .glass-strong {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.5);
        }

        .glass-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .glass-card:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 30px 60px rgba(0, 160, 240, 0.2);
            border: 1px solid rgba(0, 160, 240, 0.3);
        }

        .card-3d {
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .card-3d:hover {
            transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(20px);
        }

        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

        .float-animation:nth-child(2) {
            animation-delay: -2s;
        }

        .float-animation:nth-child(3) {
            animation-delay: -4s;
        }

        .glow-border {
            position: relative;
            overflow: hidden;
        }

        .glow-border::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, #00a0f0, #4cc9f0, #00a0f0, #4cc9f0);
            background-size: 400% 400%;
            animation: glow-rotate 4s linear infinite;
            border-radius: inherit;
            z-index: -1;
            opacity: 0.7;
        }

        @keyframes glow-rotate {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .perspective-container {
            perspective: 1000px;
            transform-style: preserve-3d;
        }

        .rotating-element {
            animation: rotate-y 20s linear infinite;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.6;
            animation: particle-float 8s linear infinite;
        }

        @keyframes particle-float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.6;
            }

            90% {
                opacity: 0.6;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .container {
            width: 100%;
            max-width: 100%;
            padding-left: 1rem;
            padding-right: 1rem;
            margin-left: auto;
            margin-right: auto;
        }

        @media (min-width: 640px) {
            .container {
                max-width: 640px;
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 768px) {
            .container {
                max-width: 768px;
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        @media (min-width: 1024px) {
            .container {
                max-width: 1024px;
            }
        }

        @media (min-width: 1280px) {
            .container {
                max-width: 1200px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }

            .card {
                padding: 1rem;
            }

            p,
            li,
            a {
                font-size: 0.9rem;
            }

            .text-xl {
                font-size: 1.1rem;
                line-height: 1.75rem;
            }

            .text-2xl {
                font-size: 1.25rem;
                line-height: 1.75rem;
            }

            h3 {
                font-size: 1.2rem;
            }

            .btn-primary,
            .btn-ghost {
                font-size: 0.875rem;
            }

            .fish {
                width: 25px;
                height: 12px;
            }

            .mobile-nav-container {
                width: 100%;
            }

            .mobile-logo {
                max-width: 40px;
                align-items: center;
            }

            #hero-heading {
                font-size: 2rem;
                line-height: 1.2;
            }

            #mobile-menu {
                width: 100%;
                z-index: 100;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .glass-card:hover {
                transform: translateY(-5px);
            }

            .card-3d:hover {
                transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(10px);
            }

            .grid {
                margin-left: 0;
                margin-right: 0;
            }

            .max-w-4xl,
            .max-w-3xl,
            .max-w-5xl {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            /* Blob positioning for mobile */
            .blob {
                width: 200px !important;
                height: 200px !important;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }

            .px-4 {
                padding-left: 0.75rem !important;
                padding-right: 0.75rem !important;
            }

            .gap-8 {
                gap: 1rem !important;
            }

            .gap-12 {
                gap: 1.5rem !important;
            }

            #hero-heading {
                font-size: 1.75rem;
                line-height: 1.1;
            }

            .fish {
                width: 20px;
                height: 10px;
            }

            /* Further reduce blob size for very small screens */
            .blob {
                width: 150px !important;
                height: 150px !important;
            }
        }

        .language-toggle .language-btn {
            color: #ccc;
            transition: all 0.3s ease;
        }

        .language-toggle .language-btn.active {
            background-color: #00a0f0;
            color: white;
        }

        .logo-container {
            position: relative;
            perspective: 800px;
            transform-style: preserve-3d;
        }

        .logo-spin {
            animation: spin 12s linear infinite;
            transform-style: preserve-3d;
        }

        @keyframes spin {
            0% {
                transform: rotateY(0deg);
            }

            100% {
                transform: rotateY(360deg);
            }
        }

        .bubble {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(0, 160, 240, 0.9), rgba(76, 201, 240, 0.1));
            animation: float-up 3s ease-in forwards;
            opacity: 0;
            box-shadow: 0 0 10px rgba(0, 160, 240, 0.5);
            z-index: -1;
        }

        @keyframes float-up {
            0% {
                transform: translateY(0) scale(0.1);
                opacity: 0;
            }

            10% {
                opacity: 0.8;
            }

            100% {
                transform: translateY(-60px) scale(0.5) translateX(var(--tx));
                opacity: 0;
            }
        }

        .logo-glow {
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 160, 240, 0.5) 0%, rgba(0, 160, 240, 0) 70%);
            filter: blur(5px);
            opacity: 0;
            animation: pulse-glow 4s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                opacity: 0;
                transform: scale(1);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.2);
            }
        }

        .glass-ultra {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .glow-ring {
            position: relative;
        }

        .glow-ring::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: inherit;
            background: linear-gradient(45deg, #8B5CF6, #06B6D4, #8B5CF6, #06B6D4);
            background-size: 200% 200%;
            animation: glow-rotate 3s linear infinite;
            z-index: -1;
            filter: blur(8px);
            opacity: 0.8;
        }

        .glow-border-dynamic {
            position: relative;
            overflow: hidden;
        }

        .glow-border-dynamic::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, #2e0294, #7b7dde, #71c3ed, #070056);
            background-size: 400% 400%;
            animation: glow-rotate 6s linear infinite;
            border-radius: inherit;
            z-index: -1;
            opacity: 0.6;
        }

        .tab-button {
            position: relative;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 50%;
        }

        .tab-button.active {
            color: white;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.3));
            transform: scale(1.1);
        }

        .tab-button.active::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            background: linear-gradient(45deg, #8B5CF6, #06B6D4, #8B5CF6);
            background-size: 200% 200%;
            animation: glow-rotate 2s linear infinite;
            z-index: -1;
            filter: blur(5px);
            opacity: 0.7;
        }

        .tab-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: absolute;
            inset: 0;
            padding: inherit;
            display: none;
        }

        .tab-content.active {
            opacity: 1;
            transform: translateY(0);
            position: relative;
            display: block;
        }

        .tab-content.entering {
            animation: slideInFromRight 0.6s ease-out forwards;
        }

        .tab-content.exiting {
            animation: slideOutToLeft 0.4s ease-in forwards;
        }

        @keyframes slideInFromRight {
            0% {
                transform: translateX(50px);
                opacity: 0;
            }

            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutToLeft {
            0% {
                transform: translateX(0);
                opacity: 1;
            }

            100% {
                transform: translateX(-50px);
                opacity: 0;
            }
        }

        /* Fix specific elements that might cause horizontal scroll */
        .fish-container,
        #ocean-canvas,
        .section,
        .container,
        .max-w-4xl,
        .max-w-3xl,
        .max-w-5xl {
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Fix grid overflow */
        .grid {
            width: 100%;
            max-width: 100%;
        }

        /* Fix SVG container */
        svg {
            max-width: 100%;
            height: auto;
        }

        /* Fix any potential negative margins */
        .-left-48,
        .-right-48,
        .-top-48 {
            display: none;
        }

        @media (min-width: 768px) {
            .-left-48,
            .-right-48,
            .-top-48 {
                display: block;
            }
        }