:root {
    --bg-maroon: #5c1825;
    --text-gold: #e2c29c;
    --text-light: #ffffff;
    --btn-whatsapp-bg: #eaf6eb;
    --btn-whatsapp-text: #317f41;
    --btn-white-bg: #ffffff;
    --btn-white-text: #2b2b2b;
    --icon-gold: #e2c29c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: 
        radial-gradient(circle at 10% 10%, rgba(226, 194, 156, 0.15), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(0, 0, 0, 0.4), transparent 50%),
        linear-gradient(135deg, #380c15 0%, #5c1825 50%, #2e070e 100%);
    background-attachment: fixed;
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Profile Header */
.profile-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 2px;
    background-color: transparent;
    border: 2px solid var(--text-gold);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gold);
    letter-spacing: -0.3px;
    margin-top: 4px;
}

.slogan {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.4;
    padding: 0 10px;
    font-weight: 400;
}

/* Video Section */
.video-section {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2); 
    min-height: 200px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-video {
    width: 100%;
    aspect-ratio: 9/16;
    display: block;
    border: none;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 20px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    
    /* Solid Buttons */
    background: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: var(--bg-maroon);
    font-weight: 600;
}

.link-btn i {
    position: absolute;
    left: 24px;
    font-size: 22px;
    transition: transform 0.4s ease;
}

.link-btn:hover {
    transform: translateY(-3px);
    background: #f4f4f4;
    border: 1px solid #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Button Glass */
.link-btn.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
    animation: fadeInUp 0.8s ease forwards 0.2s, pulseGreen 2s infinite 1s;
}

@keyframes pulseGreen {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.link-btn.btn-whatsapp:hover {
    background: #20bd5a;
    border-color: #20bd5a;
    animation: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.3);
}

.link-btn.btn-whatsapp i {
    color: #ffffff;
}

/* Other Buttons */
.link-btn:not(.btn-whatsapp) i {
    color: var(--bg-maroon);
}

/* Alert Box */
.alert-box {
    background: rgba(226, 194, 156, 0.15); /* Light gold transparent */
    border: 1px solid rgba(226, 194, 156, 0.4);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: -4px; /* Pull closer to the button */
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    text-decoration: none; /* Prevents underline since it's a link now */
    transition: transform 0.3s ease, background 0.3s ease;
}

.alert-box:hover {
    transform: translateY(-2px);
    background: rgba(226, 194, 156, 0.25);
}

.alert-icon {
    font-size: 26px;
    animation: shakeAlert 2s infinite ease-in-out;
}

.alert-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.alert-content strong {
    color: var(--text-gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.alert-content span {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.2;
    opacity: 0.9;
}

@keyframes shakeAlert {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
}

footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-header {
    animation: fadeInUp 0.8s ease forwards;
}

.link-btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.link-btn:nth-child(1) { animation-delay: 0.2s; }
.link-btn:nth-child(2) { animation-delay: 0.4s; }
.link-btn:nth-child(3) { animation-delay: 0.6s; }

.video-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    width: 90%;
    max-width: 400px;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--text-gold);
    pointer-events: auto;
    animation: slideUpFade 0.5s ease forwards;
}

.toast.hide {
    animation: slideDownFade 0.5s ease forwards;
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.1);
}

.toast-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-content strong {
    color: var(--bg-maroon);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.toast-content span {
    color: #444;
    font-size: 11px;
    margin-top: 2px;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDownFade {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(30px); }
}
