* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Pixel water effect */
.pixel-water {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.water-pixel {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00aaff;
    animation: pixel-float 6s ease-in-out infinite;
}

@keyframes pixel-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

/* Retro scanlines effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(transparent 50%, rgba(0, 255, 0, 0.02) 50%);
    background-size: 100% 4px;
    animation: scan 0.1s linear infinite;
}

@keyframes scan {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(4px);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(1, 47, 70, 0.8);
    border: 4px solid #8B4513;
    border-radius: 0;
    padding: 5px 30px;
    z-index: 1000;
    box-shadow:
        inset -4px -4px 0 #654321,
        inset 4px 4px 0 #DAA520,
        0 0 20px rgba(255, 140, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pixel-logo {
    width: 75px;
    height: 75px;
    position: relative;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #DAA520;
    text-shadow: 2px 2px 0 #654321;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 1rem;
    color: #00aaff;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    background: rgba(139, 69, 19, 0.3);
    border-color: #654321;
    color: #DAA520;
}


/* Nav Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.hamburger span {
    height: 4px;
    width: 100%;
    background: #DAA520;
    border-radius: 2px;
}

/* Backgrounds */

.background_1 {
    background:
        radial-gradient(circle at 20% 20%, rgba(231, 134, 15, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(0, 170, 255, 0.2) 0%, transparent 50%);
}

.background_2 {
    background:
        radial-gradient(circle at 20% 80%, rgba(231, 134, 15, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(0, 170, 255, 0.2) 0%, transparent 50%);
}

.background_3 {
    background:
        radial-gradient(circle at 20% 20%, rgba(231, 134, 15, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(0, 170, 255, 0.2) 0%, transparent 40%);
}

.background_4 {
    background:
        radial-gradient(circle at 20% 80%, rgba(231, 134, 15, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(0, 170, 255, 0.2) 0%, transparent 40%);
}

.background_5 {
    background:
        radial-gradient(circle at 20% 20%, rgba(231, 134, 15, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(0, 170, 255, 0.2) 0%, transparent 20%);
}

/* Pixel decorations */
.pixel-decoration {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #ff8c00;
    border: 2px solid #8B4513;
    animation: pixel-bounce 4s ease-in-out infinite;
}

.decoration1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.decoration2 {
    top: 70%;
    right: 15%;
    animation-delay: 1s;
    background: #00aaff;
    border-color: #0077cc;
}

.decoration3 {
    top: 40%;
    right: 10%;
    animation-delay: 2s;
}

.decoration4 {
    top: 70%;
    left: 15%;
    animation-delay: 2s;
    background: #00aaff;
    border-color: #0077cc;
}

@keyframes pixel-bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Containers */

.basic-section {
    padding: 110px 50px;
    position: relative;
}

.basic-container {
    max-width: 1400px;
    margin: 0 auto;
}

.basic-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ff8c00;
    text-shadow: 3px 3px 0 #8B4513;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.basic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.basic-card {
    background: rgba(0, 170, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 4px solid #00aaff;
    padding: 30px 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow:
        inset -4px -4px 0 rgba(0, 119, 204, 0.3),
        inset 4px 4px 0 rgba(51, 187, 255, 0.3);
}

.basic-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 170, 255, 0.2);
    box-shadow:
        inset -4px -4px 0 rgba(0, 119, 204, 0.5),
        inset 4px 4px 0 rgba(51, 187, 255, 0.5),
        0 12px 25px rgba(0, 170, 255, 0.3);
}

.basic-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00aaff;
    text-transform: uppercase;
}

.basic-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.secondary-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    background: rgba(255, 140, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 4px solid #ff8c00;
    padding: 30px;
    margin-bottom: 25px;
    line-height: 1.7;
    box-shadow:
        inset -6px -6px 0 rgba(139, 69, 19, 0.3),
        inset 6px 6px 0 rgba(218, 165, 32, 0.3);
}

.basic-card h2,
.secondary-container h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.basic-card h3,
.secondary-container h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.basic-section a {
    color: aqua;
    text-decoration-color: aqua;
}

.basic-section a:visited {
    color: aqua;
    text-decoration-color: aqua;
}

.basic-section a:hover {
    color: white;
    text-decoration-color: white;
}

.logo-box img {
    border: 1px solid #009CD6;
    width: 100%;
    display: inline-block;
    max-width: 100px;
    height: auto;
    border-radius: 50%;
}

/* Buttons */

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #00aaff;
    border: 4px solid #0077cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow:
        inset -4px -4px 0 #005599,
        inset 4px 4px 0 #33bbff,
        0 0 20px rgba(0, 170, 255, 0.3);
    font-family: 'Courier New', monospace;
}

.cta-button:hover {
    background: #0077cc;
    transform: translateY(-2px);
    box-shadow:
        inset -4px -4px 0 #004488,
        inset 4px 4px 0 #33bbff,
        0 6px 25px rgba(0, 170, 255, 0.4);
}

.cta-button-link {
    text-decoration: none;
    color: white;
    display: block;
}

/* Owl Carousel */

.carousel-wrapper .owl-nav {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-wrapper:hover .owl-nav {
    opacity: 1;
}

.owl-carousel .item {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-nav button {
    background: none;
    border: none;
}

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav button {
    background: none;
    border: none;
    padding: 0;
    font-size: 2rem;
    color: #ff8c00;
    padding: 0 10px;
}

.custom-arrow {
    width: 40px;
    height: 40px;
    background: #ff8c00de;
    border-color: #ff8c00;
    border-style: solid;
    border-width: 1px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    z-index: 10;
}

.custom-arrow:hover {
    background: rgba(1, 47, 70, 0.8);
}

/* Video */

.main-video-wrapper {
    height: 100%;
    width: 100%;
}

.main-video-container {
    height: 100%;
    width: 100%;
    background: rgba(255, 140, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 4px solid #ff8c00;
    border-radius: 0;
    padding: 20px 10px;
    box-shadow:
        inset -8px -8px 0 rgba(139, 69, 19, 0.3),
        inset 8px 8px 0 rgba(218, 165, 32, 0.3),
        0 0 40px rgba(255, 140, 0, 0.3);
}

.video-responsive {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 1280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.video-responsive iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.main-video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(1, 47, 70, 0.95);
        padding: 10px 30px;
        display: none;
        gap: 10px;
        border-top: 2px solid #8B4513;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pixel-logo {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 16px;
    }

    .basic-section {
        padding: 80px 20px;
    }

    .basic-container {
        padding: 40px 25px;
    }

    .basic-section h2 {
        font-size: 2rem;
    }

    .carousel-wrapper .owl-nav {
        opacity: 1;
    }
}