/* ========================================
   CNC Auto Center - Link in Bio Styles
   Dark Mode | Minimalist | High-Tech
======================================== */

:root {
    --color-bg: #000000;
    --color-primary: #E30613;
    --color-primary-dark: #B8050F;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B0B0B0;
    --color-surface: rgba(255, 255, 255, 0.05);
    --color-surface-hover: rgba(255, 255, 255, 0.1);
    --font-family: 'Inter', sans-serif;
    --radius-lg: 12px;
    --radius-full: 9999px;
    --shadow-glow: 0 0 20px rgba(227, 6, 19, 0.4);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Effect */
.background-scan {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 0%, rgba(227, 6, 19, 0.15), transparent 60%),
        linear-gradient(to bottom, transparent, #000000);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 480px;
    padding: 40px 20px;
    text-align: center;
}

/* Profile Header */
.profile-header {
    margin-bottom: 40px;
}

.profile-logo {
    margin-bottom: 16px;
}

.logo__text {
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.02em;
}

.logo__text .highlight {
    color: var(--color-primary);
}

.profile-headline {
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 8px;
}

.profile-subline {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Button Stack */
.links-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 40px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    /* Mobile First: Full width */
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

/* Secondary Button Style */
.link-btn--secondary {
    background-color: var(--color-surface);
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.link-btn--secondary:hover {
    background-color: var(--color-surface-hover);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Primary Button Style (WhatsApp) */
.link-btn--primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
}

.link-btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(227, 6, 19, 0.6);
}

.link-btn__icon {
    font-size: 1.2rem;
}

.link-btn__text {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* Pulse Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(227, 6, 19, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(227, 6, 19, 0);
    }
}

.pulse-animation {
    animation: pulse-glow 2s infinite;
}

/* Footer Info */
.profile-footer {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.profile-footer address {
    font-style: normal;
    margin-bottom: 4px;
    opacity: 0.8;
}

/* Desktop Responsiveness */
@media (min-width: 768px) {
    .logo__text {
        font-size: 2.5rem;
    }

    .profile-headline {
        font-size: 2rem;
    }

    .link-btn {
        padding: 18px 32px;
    }

    .link-btn__text {
        font-size: 1rem;
    }
}