:root {
    --bg-color: #f7f7f7;
    --text-primary: #121212;
    --text-secondary: #555555;
    --white: #ffffff;
    --black: #121212;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --font-main: 'Outfit', sans-serif;
    --line-color: rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    /* Vertical Stripe Background */
    background-image: repeating-linear-gradient(to right,
            transparent,
            transparent 39px,
            var(--line-color) 39px,
            var(--line-color) 40px);
}

/* Top Navigation */
.top-nav {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-icon_btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    text-decoration: none;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s;
    font-size: 1.1rem;
}

.nav-pill_btn {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.nav-icon_btn:hover,
.nav-pill_btn:hover {
    transform: scale(1.05);
}

/* Container */
.container {
    width: 100%;
    max-width: 480px;
    padding: 90px 24px 40px;
    /* Top padding clears the fixed nav area if needed */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.profile-image-container {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 6px;
    background: var(--white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 10px;
}

/* Socials Inline */
.socials-inline {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
}

.socials-inline a {
    color: var(--black);
    font-size: 1.3rem;
    transition: all 0.2s;
    opacity: 0.8;
}

.socials-inline a:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* Bento Grid */
.bento-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.bento-card {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

    /* Subtle wave pattern background */
    background-image: repeating-radial-gradient(circle at 0% 100%,
            transparent 0,
            transparent 10px,
            rgba(0, 0, 0, 0.02) 10px,
            rgba(0, 0, 0, 0.02) 20px);
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.card-icon_top {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: auto;
}

.card-arrow_top {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.bento-card:hover .card-arrow_top {
    transform: translate(3px, -3px);
    color: var(--black);
}

.card-content {
    margin-top: 20px;
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    display: block;
}

/* Action Buttons Section */
.action-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* CTA Box (Plan a Trip) */
.cta-box {
    background: var(--white);
    padding: 16px 20px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cta-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.cta-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.btn-black {
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-black:hover {
    opacity: 0.9;
}

/* Block Buttons */
.btn-block-dark {
    background: #222;
    color: var(--white);
    width: 100%;
    padding: 16px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-block-dark:hover {
    background: #000;
}

.support-header {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 10px 0 5px;
    text-transform: uppercase;
}

.footer-copy {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #999;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container>* {
    animation: fadeIn 0.6s ease-out forwards;
}

.bento-card {
    animation-delay: 0.1s;
}

.action-buttons {
    animation-delay: 0.2s;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 80px 16px 30px;
    }

    .profile-image-container {
        width: 110px;
        height: 110px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .bento-grid {
        gap: 12px;
    }

    .bento-card {
        padding: 16px;
        min-height: 140px;
    }

    .cta-box {
        padding: 16px;
    }

    .btn-black {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}