* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #111;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    width: 100%;
}

#logo {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #111;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: #666;
    border-bottom: 1px solid #111;
}

.content-wrapper {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 0 60px;
    gap: 60px;
    margin-top: -40px;
}

.left-column {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.tv-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
}

.tv {
    width: 95%;
    border-radius: 10px;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

/* TV Screen Overlay - Positioning based on typical vintage TV images */
.tv-screen-overlay {
    position: absolute;
    top: 12.5%;
    left: 10%;
    width: 60%;
    height: 74%;
    background-color: #0c0c0c;
    border-radius: 15px / 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 5;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
}

/* CRT Scanline effect */
.tv-screen-overlay::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    z-index: 10;
    pointer-events: none;
}

/* Retro Monospace Font styling */
.screen-text {
    font-family: 'Courier New', Courier, monospace;
    color: #dedede;
    font-size: 2.2vw;
    /* Responsive font size */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
    animation: flicker 3s infinite, floatText 4s infinite alternate;
    user-select: none;
    -webkit-user-select: none;
    text-align: center;
    padding: 0 15px;
}

/* Blinking cursor effect at the end */
.screen-text::after {
    content: '_';
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.5;
    }
}

@keyframes floatText {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-2px);
    }
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 40px;
}

.badge {
    border: 2px solid rgba(0, 0, 0, 0.6);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.badge:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 0.95;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 0.15em;
    background: linear-gradient(135deg, #111 0%, #555 50%, #111 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

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

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

p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 35px;
    max-width: 500px;
}

.btn-explore {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    padding: 12px 32px;
    color: #111;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.btn-explore:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-explore:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.circle-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    color: #111;
    text-decoration: none;
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

.circle-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.circle-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .right-column {
        align-items: center;
        padding-right: 0;
    }

    .tv-wrapper {
        margin-top: 18px;
    }

    nav {
        padding: 20px 40px;
        flex-direction: column;
        gap: 20px;
    }

    h1 {
        font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    }

    .action-buttons {
        justify-content: center;
    }

    .screen-text {
        font-size: 1.1rem;
        /* Fixed size for mobile */
    }
}