
:root {
    --primary: #632A89;
    --accent: #E96C40;
    --secondary: #94CA3E;
    --dark: #1a1a1a;
    --light: #f8f5f2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.background {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url('bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.45) contrast(1.15);
}

.overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
    to bottom,
    rgba(99, 42, 137, 0.75) 0%,
    rgba(99, 42, 137, 0.65) 40%,
    rgba(40, 30, 50, 0.85) 100%
    );
    z-index: -1;
}

.container {
    text-align: center;
    padding: 2.5rem 1.5rem;
    max-width: 900px;
    width: 100%;
    z-index: 1;
}

.logo-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto 2.5rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.subtitle {
    font-size: clamp(1.3rem, 4vw, 2.1rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--accent);
    letter-spacing: 1.5px;
}

p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 3rem;
    color: rgba(255,255,255,0.9);
}

.social-text {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--secondary);
    letter-spacing: 1px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
}

.social-link {
    color: white;
    font-size: 2.8rem;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.15);
}

.tiktok { color: #ff0050; }
.facebook { color: #1877f2; }
.instagram { color: #e1306c; }

@media (max-width: 480px) {
    .social-icons {
    gap: 1.6rem;
    }
    
    .social-link {
    width: 70px;
    height: 70px;
    font-size: 2.4rem;
    }
    
    .logo-placeholder {
    width: 140px;
    height: 140px;
    }
}
