:root {
    --primary-red: #ff0000;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-white: #ffffff;
    --social-gradient: linear-gradient(135deg, #7C4DFF, #B388FF);
    --trust-green: #00b67a;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.4;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Headline Section */
.header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.25;
}

.red-text {
    color: var(--primary-red);
    display: block; /* To match the look in the image */
    margin-bottom: 0.2rem;
}

/* Social Bar */
.social-bar {
    background: var(--social-gradient);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.facebook-text {
    color: #ffd700; /* Matching the yellow highlight for Facebook in the image */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #00ff00;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 8px #00ff00;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Video Section */
.video-container {
    width: 100%;
    max-width: 450px; /* Reduced to balance out high aspect ratio */
    aspect-ratio: 9 / 16;
    background-color: #000;
    margin: 0 auto 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}



/* Trustpilot Section */
.trust-section {
    margin: 1rem 0 3rem;
    opacity: 0.9;
}

.stars-row {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.star-box {
    background-color: var(--trust-green);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.trust-section h3 {
    font-size: 1.1rem;
    color: var(--trust-green);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.trust-section p {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    width: 100%;
    border-top: 1px solid #eee;
    padding: 2rem 1rem 1.5rem;
    color: var(--text-light);
    font-size: 0.65rem;
    opacity: 0.7;
}

.footer-links {
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .header h1 {
        font-size: 1.6rem;
    }
    
    .social-bar p {
        font-size: 0.85rem;
    }
    
    .video-overlay h2 {
        font-size: 1.4rem;
    }
}
