* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
}

.title-logo {
    position: fixed;
    top: 30px;
    left: 60px;
    width: 280px;
    height: auto;
    z-index: 10;
}

.content-image {
    position: fixed;
    right: 360px;
    top: 52%;
    transform: translateY(-50%);
    width: 42%;
    height: auto;
    z-index: 5;
}

.social-bar {
    position: fixed;
    top: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #fff9c4; 
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.57); 
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.85;
}

.social-link .icon {
    width: 22px;
    height: 22px;
    color: #fff9c4;
    flex-shrink: 0;
}

.social-link .link-text {
    color: #ffffff; 
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.social-link:hover .link-text {
    text-decoration: underline;
}

.buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border: 2px solid #fff9c4; 
    fill:#fff9c4;
    color: #fff9c4; 
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.57); 
    transition: opacity 0.2s ease;
}

.buy-now:hover {
    opacity: 0.85;
}

.buy-now-logo {
    fill: #fff9c4;
    height: 20px;
    width: auto;
    flex-shrink: 0;
}

.jimothy-image {
    display: none;
}

/* ===== Responsive Mobile Portrait ===== */
@media (orientation: portrait) and (max-width: 768px) {
    body {
        background-image: url('background_vertical.png');
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        overflow-y: auto;
    }

    .title-logo {
        position: static;
        order: 1;
        width: 80%;
        max-width: 360px;
        height: auto;
        margin-top: 20px;
    }

    .social-bar {
        position: static;
        order: 2;
        margin-top: 24px;
        gap: 12px;
    }

    .content-image {
        position: static;
        order: 3;
        width: 90%;
        max-width: 400px;
        height: auto;
        margin-top: 24px;
        transform: none;
    }

    .jimothy-image {
        display: block;
        order: 4;
        width: 80%;
        max-width: 360px;
        height: auto;
        margin-top: 24px;
    }
}
