body {
    margin: 0;
    font-family: 'Comic Neue', cursive;
    background: url('teddy-cartoon.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: rgba(15, 26, 46, 0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2em;
    color: #ffd700;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: #ffd700;
}

section {
    padding: 40px 0;
    min-height: auto;
}

h1 {
    font-size: 3em;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

p {
    font-size: 1.5em;
    margin: 20px 0;
}

.character-img {
    max-width: 250px;
    margin: 20px;
    border: 4px solid #ffd700;
    border-radius: 50%;
}

.screenshot-billy {
    max-width: 100%;
    margin: 20px 0;
    height: auto;
    display: block;
}

.socials .social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-icons img {
    width: 60px;
    height: 60px;
}

.coming-soon {
    color: #ffd700;
    font-size: 1.4em;
    font-style: italic;
}

.early-adopters .teddy-img {
    max-width: 400px;
    border-radius: 20px;
    margin: 30px 0;
}

.ca {
    font-size: 1.8em;
    font-weight: bold;
    word-break: break-all;
    color: #fff;
}

.cta-btn {
    background: #ffd700;
    color: #0f1a2e;
    border: none;
    padding: 20px 40px;
    font-size: 1.8em;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.1);
}

.why-choose-us .graphics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.graphic-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.graphic-item p {
    font-size: 1.4em;
}

footer {
    background: rgba(15, 26, 46, 0.9);
    text-align: center;
    padding: 20px 0;
    min-height: 12.5vh; /* 1/8 of viewport height */
}

footer p {
    font-size: 1.2em;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15, 26, 46, 0.95);
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 15px 0;
        text-align: center;
    }

    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1.2em;
    }

    .character-img, .screenshot, .teddy-img {
        max-width: 200px;
    }

    .social-icons img {
        width: 50px;
        height: 50px;
    }

    .cta-btn {
        font-size: 1.5em;
        padding: 15px 30px;
    }
}