/* 
   SYSTEM DESIGN - EL PIZZAS 
   Theme: Vibrant Personal Brand
   Colors: Yellow #FFC200 Base, Dark Red #691312 Accent
*/

:root {
    /* Color Palette */
    --primary: #FFC200;
    /* Amarillo intenso (Fondo principal) */
    --accent: #691312;
    /* Rojo oscuro (Textos, Botones, Detalles) */
    --accent-light: #8a1c1c;
    /* Rojo un poco más claro para hovers */
    --accent-dark: #4a0d0d;
    /* Rojo muy oscuro para sombras */

    --bg-base: #FFC200;
    --bg-alt: #ffcc33;
    /* Amarillo ligeramente diferente para secciones */

    --text-main: #691312;
    /* Texto principal en rojo oscuro para contraste */
    --text-muted: #8a1c1c;
    /* Texto secundario */
    --text-light: #ffffff;
    /* Texto sobre fondos rojos */

    --glass-bg: rgba(105, 19, 18, 0.05);
    /* Cristal rojizo muy sutil */

    /* Typo */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gradient {
    color: var(--accent);
    /* Fallback */
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mb-8 {
    margin-bottom: 32px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 48px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.bg-alt {
    background-color: rgba(255, 255, 255, 0.15);
    /* Sutil variación */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 194, 0, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(105, 19, 18, 0.05);
    box-shadow: 0 4px 20px rgba(105, 19, 18, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent);
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    color: var(--accent);
}

.btn-header {
    background: var(--accent);
    color: white !important;
    padding: 8px 20px;
    border-radius: 100px;
    transition: all 0.3s;
}

.btn-header:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-base);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-light);
    border: 2px solid var(--accent);
    box-shadow: 0 4px 15px rgba(105, 19, 18, 0.3);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(105, 19, 18, 0.4);
}

/* Hero Section */
.hero {
    min-height: min(90vh, 1000px);
    /* Reduced height a bit */
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 1rem;
    /* Reduced from 4rem */
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(105, 19, 18, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--accent);
}

.hero-title {
    font-size: 7.5rem;
    /* Achicado un poco (Era 8.5rem) */
    line-height: 0.85;
    /* Más junto verticalmente */
    /* Big impact */
    margin-bottom: 32px;
    /* Aumentado espacio con subtítulo */
    font-weight: 900;

    /* Option 4: Sticker Bomba (White Outline) */
    color: #E31E24;
    /* Red Fill */
    -webkit-text-stroke: 8px white;
    /* Borde Blanco muy grueso */
    paint-order: stroke fill;
    /* Borde va por detrás del relleno */
    filter: drop-shadow(6px 6px 0px #020202);
    /* Sombra negra dura */
    letter-spacing: -2px;
    /* Apretado tipo sticker */
    transform: rotate(-2deg);
    /* Ligeramente inclinado */
}

.hero-title:hover {
    transform: rotate(0deg) scale(1.00);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 800;
    /* Negrita */
    margin-bottom: 40px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}



/* Projects Grid ("Qué estoy cocinando") */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(105, 19, 18, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    display: block;
    /* Make anchor act as block */
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(105, 19, 18, 0.2);
}

.project-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.project-tag {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-tag {
    background: #FF0000;
    /* Bright red for LIVE */
    animation: pulse-red 1.5s infinite;
}

.project-content {
    padding: 24px;
    color: var(--text-main);
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.highlight-box {
    background: #fdf2f2;
    /* Light red bg */
    border: 1px solid rgba(105, 19, 18, 0.1);
    color: var(--accent);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}

.stream-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-youtube {
    background: #FF0000;
    color: white;
}

.btn-kick {
    background: #53FC18;
    color: black;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-tiktok {
    background: #000000;
    color: white;
}

.btn-sm:hover {
    transform: scale(1.05);
}

.btn-link {
    color: var(--accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Bio Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Text wider this time */
    gap: 64px;
    align-items: center;
}

.highlight-text {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.about-img {
    border-radius: 24px;
    position: relative;
    z-index: 2;
    border: 4px solid var(--accent);
    box-shadow: 20px 20px 0px rgba(105, 19, 18, 0.2);
    width: 80%;
    margin: 0 auto;
}

/* Linktree Section */
.linktree-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.linktree-btn {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-radius: 16px;
    background: white;
    /* Clean white bg */
    border: 2px solid rgba(105, 19, 18, 0.1);
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.linktree-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(105, 19, 18, 0.15);
    border-color: var(--accent);
}

.btn-youtube-lg:hover {
    border-color: #FF0000;
}

.btn-youtube-lg:hover .icon-wrapper {
    background: #FF0000;
    color: white;
}

.btn-insta-lg:hover {
    border-color: #e6683c;
}

.btn-insta-lg:hover .icon-wrapper {
    background: linear-gradient(45deg, #f09433, #bc1888);
    color: white;
}

.btn-tiktok-lg:hover {
    border-color: #000;
}

.btn-tiktok-lg:hover .icon-wrapper {
    background: #000;
    color: white;
}

.btn-kick-lg:hover {
    border-color: #53FC18;
}

.btn-kick-lg:hover .icon-wrapper {
    background: #53FC18;
    color: black;
}

.btn-email-lg:hover {
    border-color: var(--accent);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--accent);
}

.text-wrapper {
    flex: 1;
}

.btn-title {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.arrow-icon {
    opacity: 0.3;
}

/* CTA Section / Redes */
.cta-section {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Footer Minimal */
.footer-minimal {
    padding: 40px 0;
    background: var(--accent-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-top: 4px solid var(--accent);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-red {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    /* Mobile Reordering Magic */
    .hero-container {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        display: contents;
        /* Flattens the wrapper so children can be ordered with the image */
    }

    .hero-label {
        order: 1;
        margin: 0 auto 24px auto;
        justify-content: center;
    }

    .hero-title {
        order: 2;
    }

    .hero-subtitle {
        order: 3;
    }

    .hero-visual {
        order: 4;
        max-width: 400px;
        margin: 40px auto;
        /* Space around image */
    }

    .hero-cta {
        order: 5;
        margin: 0 auto;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .linktree-btn {
        padding: 12px 16px;
    }

    .cta-section {
        justify-content: flex-start;
        padding-top: 60px;
    }
}

/* Mission List Styles (Added via Agent) */
.mission-container {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.6);
    padding: 24px;
    border-radius: 16px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 4px 12px rgba(105, 19, 18, 0.05);
}

.mission-heading {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--accent);
    font-weight: 800;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

/* Hero Character Effects */
.hero-character-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align bottom for shadow positioning */
    height: 100%;
    min-height: 210px;
    /* Agrandado 15% */
    width: 100%;
    max-width: 210px;
    /* Agrandado 15% */
}

/* Specific adjust for 100 Formas card */
.projects-grid .project-card:nth-child(1) .project-image {
    object-position: center -200px;
    /* Move image visual up? User said "bajar la imagen". Center 80px moves image down. */
}

@media (max-width: 768px) {
    .projects-grid .project-card:nth-child(1) .project-image {
        object-position: center center;
    }
}

.hero-character-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(105, 19, 18, 0.2));
    /* Soft shadow on body */
    animation: breathe 6s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Floor Shadow (Grounding) */
.character-shadow {
    position: absolute;
    bottom: 15px;
    width: 110%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(105, 19, 18, 0.6) 0%, rgba(105, 19, 18, 0) 70%);
    z-index: 1;
    opacity: 0.8;
    transform: scale(1) rotate(-5deg);
    filter: blur(4px);
    /* Suaviza los bordes para que no se vea digital */
    animation: shadow-breathe 6s ease-in-out infinite;
}

/* Back Glow (Pop) */
.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    filter: blur(40px);
    opacity: 0.6;
}

/* Animations */
@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    /* Subtle expansion like breathing */
}

@keyframes shadow-breathe {

    0%,
    100% {
        transform: scale(1) rotate(-5deg);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1) rotate(-5deg);
        opacity: 0.6;
    }

    /* Shadow grows slightly as body grows */
}

/* Javascript Injected Classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ----------------------------------------------------------- */
/* NEW SECTIONS & BACKGROUND EFFECTS (Added via Agent) */
/* ----------------------------------------------------------- */

/* Floating Ingredients Background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-ingredient {
    position: absolute;
    opacity: 0.4;
    /* Aumentado */
    /* Wrapper handles position and parallax (transform) via JS */
    will-change: transform;
    pointer-events: none;
    z-index: -1;
}

.floating-inner {
    display: block;
    font-size: 2rem;
    /* Fallback size */
    filter: blur(1px);
    animation-name: floatUp;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Keyframes floatUp remains same */
@keyframes floatUp {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
        /* Aumentado */
    }

    90% {
        opacity: 0.6;
        /* Aumentado */
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(105, 19, 18, 0.05);
    border: 1px solid rgba(105, 19, 18, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(105, 19, 18, 0.1);
    padding-top: 16px;
}

.author-name {
    font-weight: 700;
    color: var(--accent);
}

.author-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

/* Gallery (Hall of Fame) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Masonry grid spans */
.item-1 {
    grid-column: span 2;
    grid-row: span 2;
    background: url("images/proyecto_100_formas.jpg") center/cover;
    /* Fallback image */
}

.item-2 {
    grid-column: span 2;
    background: #ffc200;
    /* Yellow */
}

.item-3 {
    grid-column: span 1;
    background: #691312;
    /* Red */
}

.item-4 {
    grid-column: span 1;
    background: #8a1c1c;
    /* Darker Red */
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    box-sizing: border-box;
    align-items: flex-end;
    /* Text at bottom */
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border-radius: 32px;
    margin: 40px auto;
    max-width: 1000px;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.text-light {
    color: white !important;
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 16px;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    max-width: 300px;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.spam-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .newsletter-section {
        margin: 20px;
        border-radius: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-input {
        max-width: none;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4 {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }
}

/* CSS Update for Linked Testimonials */
a.testimonial-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    /* Maintain flex behavior */
    cursor: pointer;
}

a.testimonial-card:hover .author-name {
    text-decoration: underline;
}


/* Fix for fixed navbar covering section tops */
section,
.section {
    scroll-margin-top: calc(var(--nav-height) + 20px);
}

/* Pricing / Membership Section */
.membership-section {
    padding-bottom: 80px;
    scroll-margin-top: 90px;
    /* Adjusted offset for anchor link */
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    width: 280px;
    border: 1px solid rgba(105, 19, 18, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(105, 19, 18, 0.15);
    border-color: var(--accent);
}

.featured-card {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(105, 19, 18, 0.2);
}

.featured-card:hover {
    transform: scale(1.08) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
}

.vip-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    border: 1px solid #444;
}

.vip-card .pricing-title,
.vip-card .pricing-price,
.vip-card .pricing-desc {
    color: white;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.vip-card .pricing-price .period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.4;
    flex-grow: 1;
    /* Pushes button down */
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-vip {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: black;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #FFE44D, #FFB733);
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 320px;
    }

    .featured-card {
        transform: scale(1);
    }
}


/* Force 4 columns on desktop for pricing */
@media (min-width: 1024px) {
    .pricing-grid {
        display: grid;
        /* Switch to grid for better control */
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: stretch;
        /* Same height */
    }

    .pricing-card {
        width: 100%;
        /* Fill grid cell */
        max-width: none;
        /* Remove max-width constraint */
        padding: 24px 16px;
        /* Reduce padding to fit */
    }

    .pricing-title {
        font-size: 1.1rem;
        /* Slightly smaller title to prevent wrap */
    }
}

/* Follower Counter */
.follower-counter-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* initial state for observer */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.follower-counter-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.counter-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--font-display);
    line-height: 1;
    text-shadow: 0px 5px 15px rgba(105, 19, 18, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
}

.counter-label {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .counter-number {
        font-size: 3.5rem;
    }

    .counter-label {
        font-size: 1.1rem;
    }
}