:root {
    --primary-red: #c91b3b;
    --primary-red-hover: #b31432;
    --dark-bg: #111;
    --light-bg: #f8f9fa;
    --text-main: #333;
    --text-muted: #666;
    --white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 20px rgba(201, 27, 59, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
}

/* Notifications */
.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-popup {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary-red);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.notification-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.notif-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
}

.avatar-2 {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.notif-content {
    font-size: 14px;
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    padding: 60px 20px;
    background: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

.hero-image-col {
    flex: 0 0 55%;
    max-width: 700px;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid #fff;
    background: #f0f0f0;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(1px); /* Slight blur */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-icon-container {
    width: 128px;
    height: 128px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.4);
}

.lock-icon {
    width: 64px;
    height: 64px;
    color: var(--white);
}

.hero-text-col {
    flex: 0 0 40%;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 27, 59, 0.15);
    border: 1px solid rgba(201, 27, 59, 0.3);
    color: var(--primary-red);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 27, 59, 0.6);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 27, 59, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(201, 27, 59, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 27, 59, 0); }
}

.main-headline {
    font-size: 42px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #111;
}

.sub-headline {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 400;
}

.restricted-access-box {
    background: rgba(201, 27, 59, 0.05);
    border: 1px dashed rgba(201, 27, 59, 0.3);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
    font-size: 15px;
    color: var(--primary-red);
    font-weight: 500;
    text-align: center;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(to bottom, #de2a46, var(--primary-red));
    color: var(--white);
    border: 1px solid #e83a56;
    box-shadow: 0 6px 0 #911026, 0 15px 20px rgba(201, 27, 59, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.primary-cta:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #911026, 0 10px 15px rgba(201, 27, 59, 0.4);
    background: linear-gradient(to bottom, #e83a56, #d11e3f);
}

.primary-cta:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #911026, 0 5px 10px rgba(201, 27, 59, 0.4);
}

.cta-glint {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: glint 3s infinite;
}

@keyframes glint {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.cta-subtext {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Social Proof Section */
.social-proof-section {
    background: var(--light-bg);
    padding: 60px 20px;
    border-top: 1px solid #eaeaea;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.proof-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.card-icon.red-icon {
    background: rgba(201, 27, 59, 0.1);
}

.pulsing-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-red);
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

.card-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
}

/* Second Section */
.second-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: #fff;
    overflow: hidden;
    border-top: 1px solid #eaeaea;
}

.second-content {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.secondary-cta {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 10px rgba(201, 27, 59, 0.15);
}

.secondary-cta:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 27, 59, 0.25);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badge svg {
    color: #10b981; /* green */
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .hero-image-col {
        flex: none;
        width: 95%;
        max-width: 600px;
        margin: 0 auto;
    }

    .main-headline {
        font-size: 32px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 100%;
    }

    .cta-subtext {
        justify-content: center;
    }
    
    .section-title {
        font-size: 26px;
    }
}
