* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    background-color: #0d0d12;
    background-image: radial-gradient(circle at 50% 0%, #2a0815 0%, #0d0d12 50%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 440px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-item {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-6 { animation-delay: 0.5s; }

.profile {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff1461;
    padding: 2px;
    background: #0d0d12;
}

.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background-color: #00e676;
    border: 3px solid #0d0d12;
    border-radius: 50%;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.verified-badge {
    width: 18px;
    height: 18px;
}

.bio {
    font-size: 13px;
    font-weight: 600;
    color: #00e676;
    margin-bottom: 8px;
}

.bio-desc {
    font-size: 15px;
    color: #a0a0ab;
    line-height: 1.5;
    padding: 0 10px;
}

.btn-wrapper { 
    width: 100%; 
    margin-bottom: 40px; 
}

.btn-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #ff1461;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(255, 20, 97, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-main:active {
        transform: scale(0.96);
}

.btn-main svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.gallery-header {
    width: 100%;
    margin-bottom: 16px;
    text-align: left;
}

.gallery-header h2 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.grid-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #1c1c24;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item-tall { grid-column: 1 / 2; grid-row: 1 / 3; }
.item-sq { aspect-ratio: 1 / 1; }

.locked-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.locked-overlay svg {
    width: 30px;
    height: 30px;
    opacity: 0.8;
}

.footer {
    margin-top: 40px;
    font-size: 12px;
    color: #555560;
    text-align: center;
}

.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox-overlay.active .lightbox-img {
    opacity: 1;
}

.nav-btn, .close-btn {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.nav-btn {
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    font-size: 18px;
}

.nav-prev { left: 15px; }
.nav-next { right: 15px; }

.close-btn {
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    font-size: 20px;
}

.counter {
    position: absolute;
    top: 28px;
    left: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 10001;
}