:root {
    --primary: #f5af19; 
    --secondary: #f12711;
    --glass-bg: rgba(20, 20, 25, 0.65);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #cccccc;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: #0d0d12;
    background-image: url('../images/background.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.background-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
    z-index: -1;
}

#loader {
    position: fixed;
    inset: 0;
    background: #0d0d12;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin-bottom: 20px;
}

#loader p {
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-muted);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 700px;
    width: 90%;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.brand-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.subtitle {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(245, 175, 25, 0.15);
}

.status-badge i {
    color: var(--primary);
    margin-right: 10px;
}

.description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding: 0 15px;
}

.parts-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    animation: pulseGlow 3s infinite;
}

.icon-box:nth-child(2) { animation-delay: 0.75s; }
.icon-box:nth-child(3) { animation-delay: 1.5s; }
.icon-box:nth-child(4) { animation-delay: 2.25s; }

.icon-box:hover {
    animation: none;
    transform: translateY(-8px) scale(1.05);
    background: rgba(255,255,255,0.1);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 15px 25px rgba(0,0,0,0.4), 0 0 15px rgba(245, 175, 25, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    font-style: normal;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.contact-link i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-link:hover {
    color: var(--primary);
    letter-spacing: 0.5px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}


.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.social-btn:nth-child(1) { animation-delay: 0s; }
.social-btn:nth-child(2) { animation-delay: 0.5s; }
.social-btn:nth-child(3) { animation-delay: 1s; }
.social-btn:nth-child(4) { animation-delay: 1.5s; }

.social-btn:hover {
    animation: none;
    transform: translateY(-5px);
    color: #fff;
    border-color: transparent;
}

.social-btn.viber:hover { background: #7360f2; box-shadow: 0 8px 20px rgba(115, 96, 242, 0.5); }
.social-btn.whatsapp:hover { background: #25d366; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5); }
.social-btn.telegram:hover { background: #0088cc; box-shadow: 0 8px 20px rgba(0, 136, 204, 0.5); }
.social-btn.tiktok:hover { background: #ff0050; box-shadow: 0 8px 20px rgba(255, 0, 80, 0.5); }

/* Animații Micro-Interacțiuni */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(245, 175, 25, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(245, 175, 25, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 175, 25, 0); }
}

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

/* Buton WhatsApp Rapid CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(245, 175, 25, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 175, 25, 0.6);
    color: #fff;
}

.cta-button i {
    font-size: 1.5rem;
}

footer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    margin-top: 25px;
}

@media (max-width: 600px) {
    .brand-title { font-size: 2rem; }
    .subtitle { font-size: 0.95rem; }
    .parts-icons { gap: 15px; }
    .icon-box { width: 55px; height: 55px; font-size: 1.2rem; }
    .container { padding: 40px 20px; }
    .contact-link { font-size: 1.05rem; }
    .cta-button { font-size: 1rem; padding: 15px 20px; margin-bottom: 30px; }
}
