:root {
    --primary: #1e3a8a;
    --secondary: #fbbf24;
    --bg-gray: #f3f4f6;
    --text-dark: #1f2937;
    --white: #ffffff;
    --success: #10b981;
}

body {
    background-color: var(--bg-gray);
    color: var(--text-dark);
}

.title-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-salon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-salon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.2);
}

.animate-pop {
    animation: popIn 0.4s ease-out forwards;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* TV Specific Styles */
#tv-screen {
    background: #000;
}

.pulse-indicator {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Mobile Specific Styles */
.phone-mockup {
    border: 12px solid #1f2937;
    border-radius: 36px;
    background: #fff;
    overflow: hidden;
}
