:root {
    --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --bg-color: #fafafa;
    --text-primary: #262626;
    --text-secondary: #8e8e8e;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #f09433;
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #bc1888;
    bottom: -50px;
    left: -50px;
}

.navbar {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--ig-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--ig-gradient);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.3);
}

.visual-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.spy-popup {
    width: 350px;
    padding: 25px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.spy-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background-color: #4cd137;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(76, 209, 55, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 209, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 209, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 209, 55, 0); }
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.avatar-item {
    display: flex;
    justify-content: center;
}

.story-ring {
    width: 80px;
    height: 80px;
    padding: 3px;
    background: var(--ig-gradient);
    border-radius: 50%;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    border-radius: 50%;
    border: 3px solid white;
}

.blurry {
    filter: blur(4px);
    background-image: linear-gradient(135deg, #ccc 25%, #aaa 100%);
}

.spy-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer {
    padding: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 968px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    .hero-content {
        margin-bottom: 50px;
    }
    .visual-container {
        justify-content: center;
    }
    .title {
        font-size: 2.5rem;
    }
}

/* Search Box & Premium UI */
.search-box {
    display: flex;
    padding: 8px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 30px auto 0;
    max-width: 500px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.search-box:focus-within {
    transform: scale(1.02);
    border-color: #bc1888;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 25px;
    color: #262626;
    font-size: 1.1rem;
    outline: none;
    font-weight: 500;
}

.search-input::placeholder {
    color: rgba(0,0,0,0.3);
}

.search-box .btn-primary {
    padding: 12px 25px;
    font-size: 0.95rem;
    box-shadow: none;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: wait;
}
/* Utility for mockups */
.verify-badge {
    color: #0095f6;
    margin-left: 5px;
}

.bg-dark {
    background: #000 !important;
    color: #fff !important;
}
