/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #ad2bee;
    --background-light: #f7f6f8;
    --background-dark: #1c1022;
}


html {
    scrollbar-gutter: stable;
}

body {
    font-family: 'Spline Sans', sans-serif;
    background: radial-gradient(circle at top right, #3c2348, #1c1022 50%),
        radial-gradient(circle at bottom left, #ad2bee44, transparent 40%);
    background-attachment: fixed;
    color: #cbd5e1;
    /* slate-300 default */
}


/* Glass Effect Utility */
.glass,
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .glass,
.dark .glass-card {
    background: rgba(60, 35, 72, 0.4);
    border: 1px solid rgba(173, 43, 238, 0.2);
}

/* Text Glow Utility */
.text-glow {
    text-shadow: 0 0 20px rgba(173, 43, 238, 0.6);
}

.neon-glow {
    text-shadow: 0 0 10px rgba(173, 43, 238, 0.8), 0 0 20px rgba(173, 43, 238, 0.4);
}

/* Sticker Animations */
.sticker {
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.sticker:hover {
    transform: rotate(2deg) scale(1.1);
}

.sticker-rotate-left {
    transform: rotate(-3deg);
}

.sticker-rotate-right {
    transform: rotate(2deg);
}

.sticker-rotate-1 {
    transform: rotate(-3deg);
}

.sticker-rotate-2 {
    transform: rotate(5deg);
}

/* Neo Shadow */
.neo-shadow {
    box-shadow: 0 0 20px rgba(173, 43, 238, 0.3);
}

.purple-glow:hover {
    box-shadow: 0 0 25px rgba(173, 43, 238, 0.4);
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#mobile-menu.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Social Icons Hover */
.social-icon-hover:hover {
    color: #ad2bee;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Blog Modal Responsive */
#blog-modal {
    animation: fadeIn 0.3s ease-out;
}

#blog-modal:not(.hidden) {
    display: flex;
}

#blog-modal.hidden {
    display: none;
}

/* Letter spacing for Discord title */
.letter-spacing {
    letter-spacing: 0.45em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#blog-modal .glass {
    background: rgba(20, 10, 35, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(173, 43, 238, 0.2);
    scrollbar-width: thin;
    scrollbar-color: #ad2bee rgba(173, 43, 238, 0.1);
}

#blog-modal .glass::-webkit-scrollbar {
    width: 0.5rem;
}

#blog-modal .glass::-webkit-scrollbar-track {
    background: rgba(173, 43, 238, 0.1);
    border-radius: 1rem;
}

#blog-modal .glass::-webkit-scrollbar-thumb {
    background: #ad2bee;
    border-radius: 1rem;
}

#blog-modal .glass::-webkit-scrollbar-thumb:hover {
    background: #ec4899;
}

/* Z-style Gradient Reveal Animation */
@keyframes gradientReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        background-position: 0% 50%;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        background-position: 100% 50%;
    }
}

.gradient-reveal {
    will-change: transform, opacity;
    animation: gradientReveal 1.2s ease-out forwards;
    background: linear-gradient(90deg, #ad2bee, #ec4899, #ad2bee, #00d9ff, #ad2bee);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(173, 43, 238, 0.6));
    display: inline-block;
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

/* iOS-Style Folders */
.ios-folder {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ios-folder {
        max-width: 160px;
    }
}

.ios-folder:hover {
    transform: translateY(-5px);
}

.ios-folder:hover .ios-folder-icon {
    background: rgba(60, 35, 72, 0.55);
    border-color: rgba(173, 43, 238, 0.8);
    box-shadow: 0 15px 40px rgba(173, 43, 238, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.2),
                0 0 35px rgba(173, 43, 238, 0.35);
}

.ios-folder:hover .ios-folder-icon::before {
    background: rgba(60, 35, 72, 0.7);
    border-color: rgba(173, 43, 238, 0.8);
    box-shadow: 0 2px 12px rgba(173, 43, 238, 0.35),
                inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.ios-folder:active {
    transform: scale(0.95);
}

.ios-folder-icon {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(60, 35, 72, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(173, 43, 238, 0.5);
    border-radius: 0 12px 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(173, 43, 238, 0.25),
                inset 0 2px 4px rgba(255, 255, 255, 0.1),
                0 0 25px rgba(173, 43, 238, 0.2);
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

/* Pestaña superior de la carpeta (estilo macOS) */
.ios-folder-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 38%;
    height: 14px;
    background: rgba(60, 35, 72, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(173, 43, 238, 0.5);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 2px 10px rgba(173, 43, 238, 0.25),
                inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Sombra y borde con glow púrpura */
.ios-folder-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0 12px 12px 12px;
    border: 1px solid rgba(173, 43, 238, 0.4);
    pointer-events: none;
    box-shadow: inset 0 1px 3px rgba(173, 43, 238, 0.15);
}

.folder-main-icon {
    display: none;
}

.ios-folder-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #cbd5e1;
    text-align: center;
    font-family: 'Spline Sans', sans-serif;
    margin-top: 12px;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.ios-folder:hover .ios-folder-name {
    color: #ad2bee;
}

@media (max-width: 768px) {
    .ios-folder-name {
        font-size: 0.95rem;
        margin-top: 10px;
    }
}

/* Discord Banner Glassmorphism */
.discord-banner > div {
    background: rgba(173, 43, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(173, 43, 238, 0.5);
    box-shadow: 0 10px 30px rgba(173, 43, 238, 0.4),
                inset 0 2px 4px rgba(255, 255, 255, 0.1),
                0 0 25px rgba(173, 43, 238, 0.3);
}

/* Folder Modal Styles */
.folder-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: modalFadeIn 0.3s ease-out;
}

.folder-modal.hidden {
    display: none;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalScaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.folder-modal-content {
    background: rgba(28, 16, 34, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(173, 43, 238, 0.3);
    border-radius: 1.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalScaleIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(173, 43, 238, 0.3);
    scrollbar-width: thin;
    scrollbar-color: #ad2bee rgba(173, 43, 238, 0.1);
}

.folder-modal-content::-webkit-scrollbar { width: 0.5rem; }
.folder-modal-content::-webkit-scrollbar-track { background: rgba(173, 43, 238, 0.1); border-radius: 1rem; }
.folder-modal-content::-webkit-scrollbar-thumb { background: #ad2bee; border-radius: 1rem; }
.folder-modal-content::-webkit-scrollbar-thumb:hover { background: #c44fff; }

.folder-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(173, 43, 238, 0.2);
    border: 1px solid rgba(173, 43, 238, 0.3);
    border-radius: 50%;
    color: #ad2bee;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.folder-modal-close:hover {
    background: #ad2bee;
    color: white;
    transform: rotate(90deg);
}

.folder-modal-header {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.folder-modal-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(173, 43, 238, 0.2);
    border: 1px solid rgba(173, 43, 238, 0.3);
    border-radius: 22%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.folder-modal-icon .material-symbols-outlined {
    font-size: 2rem;
    color: #ad2bee;
}

.folder-modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Spline Sans', sans-serif;
}

.folder-modal-body {
    padding: 1rem 2rem 2rem 2rem;
}

.folder-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(60, 35, 72, 0.3);
    border: 1px solid rgba(173, 43, 238, 0.2);
    border-radius: 1rem;
    transition: all 0.2s ease;
}

.folder-item:hover {
    background: rgba(60, 35, 72, 0.5);
    border-color: rgba(173, 43, 238, 0.4);
    transform: translateX(4px);
}

.folder-item .material-symbols-outlined {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.folder-cta {
    background: #ad2bee;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.folder-cta:hover {
    background: #c44fff;
    box-shadow: 0 0 20px rgba(173, 43, 238, 0.6);
    transform: scale(1.05);
}

/* Extracted Inline Styles */
body {
            background-color: #0a0510;
            background-image: radial-gradient(circle at 50% 20%, rgba(123, 44, 191, 0.15) 0%, transparent 60%);
            scroll-behavior: smooth;
        }

        .article-header {
            background: transparent;
            border-bottom: 2px solid rgba(123, 44, 191, 0.3);
            padding: 3rem 0;
            margin-bottom: 2rem;
        }

        .article-subtitle {
            color: #ad2bee;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: clamp(2rem, 8vw, 3.5rem);
            color: #ffffff;
            line-height: 1.2;
            margin: 1rem 0;
            letter-spacing: -0.03em;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: #a0a0a0;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        .article-content {
            color: #c0c0c0;
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: justify;
        }

        .article-content p {
            margin-bottom: 1.5rem;
        }

        .article-content strong {
            color: #ad2bee;
            font-weight: 700;
        }

        .article-section-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: 1.8rem;
            color: #ad2bee;
            margin: 2rem 0 1.5rem 0;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        .highlight-point {
            background: rgba(30, 10, 50, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-left: 4px solid #ad2bee;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .highlight-point:hover {
            transform: translateX(8px);
            background: rgba(30, 10, 50, 0.8);
            box-shadow: 0 10px 30px rgba(173, 44, 238, 0.2);
        }

        .highlight-point strong {
            color: #ad2bee;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .quote-section {
            background: linear-gradient(135deg, rgba(123, 44, 191, 0.15) 0%, rgba(173, 44, 238, 0.1) 100%);
            border-left: 5px solid #ad2bee;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .quote-text {
            font-size: 1.3rem;
            color: #ad2bee;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .quote-author {
            color: #7b2cbf;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .call-to-action {
            background: linear-gradient(135deg, #7b2cbf 0%, #ad2bee 100%);
            padding: 2rem;
            border-radius: 15px;
            margin: 2.5rem 0;
            text-align: center;
        }

        .cta-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .cta-text {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .engagement-buttons {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
            justify-content: center;
        }

        .engagement-btn {
            background: rgba(123, 44, 191, 0.2);
            border: 1px solid #ad2bee;
            color: #ad2bee;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .engagement-btn:hover {
            background: #ad2bee;
            color: white;
            box-shadow: 0 8px 20px rgba(173, 44, 238, 0.3);
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(173, 44, 238, 0.1);
            border: 1px solid #7b2cbf;
            color: #ad2bee;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: #ad2bee;
            color: white;
            box-shadow: 0 8px 20px rgba(173, 44, 238, 0.3);
        }

        .comment-counter {
            color: #7b2cbf;
            font-weight: 700;
            text-align: center;
            margin-top: 2rem;
        }

body {
            background-color: #0a0510;
            background-image: radial-gradient(circle at 50% 20%, rgba(123, 44, 191, 0.1) 0%, transparent 60%);
            scroll-behavior: smooth;
        }

        .article-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(123, 44, 191, 0.3);
        }

        .article-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: clamp(2rem, 6vw, 3.5rem);
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .article-subtitle {
            color: #ad2bee;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-meta {
            color: #a0a0a0;
            font-size: 0.95rem;
            margin-bottom: 32px;
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .article-content {
            color: #d0d0d0;
            font-size: 1.05rem;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: justify;
        }

        .article-content p {
            margin-bottom: 20px;
        }

        .section-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: 1.8rem;
            color: #ffffff;
            margin-top: 40px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: -0.02em;
        }

        .lesson-card {
            background: rgba(30, 10, 50, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid #7b2cbf;
            border-radius: 15px;
            padding: 24px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .lesson-card:hover {
            background: rgba(30, 10, 50, 0.8);
            border-color: #ad2bee;
            transform: translateX(8px);
        }

        .lesson-number {
            background: linear-gradient(135deg, #7b2cbf 0%, #ad2bee 100%);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .lesson-content h3 {
            color: #ffffff;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 8px;
        }

        .lesson-content p {
            color: #b0b0b0;
            line-height: 1.6;
        }

        .quote-section {
            background: linear-gradient(135deg, rgba(123, 44, 191, 0.2) 0%, rgba(173, 43, 238, 0.1) 100%);
            border-left: 4px solid #ad2bee;
            padding: 32px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }

        .quote-text {
            font-family: 'Spline Sans', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            font-style: italic;
            color: #ffffff;
            line-height: 1.5;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .quote-author {
            color: #ad2bee;
            font-size: 1rem;
            font-weight: 600;
        }

        .back-btn {
            color: #ad2bee;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 32px;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            color: #ffffff;
            transform: translateX(-4px);
        }

body {
            background-color: #0a0510;
            background-image: radial-gradient(circle at 50% 20%, rgba(123, 44, 191, 0.1) 0%, transparent 60%);
            scroll-behavior: smooth;
        }

        .article-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(123, 44, 191, 0.3);
        }

        .article-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: clamp(2rem, 6vw, 3.5rem);
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .article-subtitle {
            color: #ad2bee;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-meta {
            color: #a0a0a0;
            font-size: 0.95rem;
            margin-bottom: 32px;
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }

        .article-content {
            color: #d0d0d0;
            font-size: 1.05rem;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: justify;
        }

        .article-content p {
            margin-bottom: 20px;
        }

        .section-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: 1.8rem;
            color: #ffffff;
            margin-top: 40px;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .highlight-point {
            background: rgba(30, 10, 50, 0.6);
            backdrop-filter: blur(10px);
            border-left: 4px solid #ad2bee;
            border-radius: 8px;
            padding: 16px 20px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .highlight-point:hover {
            background: rgba(30, 10, 50, 0.8);
            border-left-color: #7b2cbf;
            transform: translateX(8px);
        }

        .highlight-point strong {
            color: #ad2bee;
            display: block;
            margin-bottom: 6px;
            font-size: 1.1rem;
        }

        .quote-section {
            background: linear-gradient(135deg, rgba(123, 44, 191, 0.2) 0%, rgba(173, 43, 238, 0.1) 100%);
            border-left: 4px solid #ad2bee;
            padding: 32px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }

        .quote-text {
            font-family: 'Spline Sans', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            font-style: italic;
            color: #ffffff;
            line-height: 1.5;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .quote-author {
            color: #ad2bee;
            font-size: 1rem;
            font-weight: 600;
        }

        .back-btn {
            color: #ad2bee;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 32px;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            color: #ffffff;
            transform: translateX(-4px);
        }

body {
            background-color: #0a0510;
            background-image: radial-gradient(circle at 50% 20%, rgba(123, 44, 191, 0.15) 0%, transparent 60%);
            scroll-behavior: smooth;
        }

        .article-header {
            background: transparent;
            border-bottom: 2px solid rgba(123, 44, 191, 0.3);
            padding: 3rem 0;
            margin-bottom: 2rem;
        }

        .article-subtitle {
            color: #ad2bee;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: clamp(2rem, 8vw, 3.5rem);
            color: #ffffff;
            line-height: 1.2;
            margin: 1rem 0;
            letter-spacing: -0.03em;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: #a0a0a0;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        .article-content {
            color: #c0c0c0;
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: justify;
        }

        .article-content p {
            margin-bottom: 1.5rem;
        }

        .article-content strong {
            color: #ad2bee;
            font-weight: 700;
        }

        .article-section-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: 1.8rem;
            color: #ad2bee;
            margin: 2rem 0 1.5rem 0;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        .highlight-point {
            background: rgba(30, 10, 50, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-left: 4px solid #ad2bee;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .highlight-point:hover {
            transform: translateX(8px);
            background: rgba(30, 10, 50, 0.8);
            box-shadow: 0 10px 30px rgba(173, 44, 238, 0.2);
        }

        .highlight-point strong {
            color: #ad2bee;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .quote-section {
            background: linear-gradient(135deg, rgba(123, 44, 191, 0.15) 0%, rgba(173, 44, 238, 0.1) 100%);
            border-left: 5px solid #ad2bee;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .quote-text {
            font-size: 1.3rem;
            color: #ad2bee;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .quote-author {
            color: #7b2cbf;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .infinity-symbol {
            color: #ad2bee;
            font-weight: 700;
            font-size: 1.2em;
        }

        .call-to-action {
            background: linear-gradient(135deg, #7b2cbf 0%, #ad2bee 100%);
            padding: 2rem;
            border-radius: 15px;
            margin: 2.5rem 0;
            text-align: center;
        }

        .cta-title {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 800;
            font-style: italic;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .cta-text {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .engagement-buttons {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
            justify-content: center;
        }

        .engagement-btn {
            background: rgba(123, 44, 191, 0.2);
            border: 1px solid #ad2bee;
            color: #ad2bee;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .engagement-btn:hover {
            background: #ad2bee;
            color: white;
            box-shadow: 0 8px 20px rgba(173, 44, 238, 0.3);
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(173, 44, 238, 0.1);
            border: 1px solid #7b2cbf;
            color: #ad2bee;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            background: #ad2bee;
            color: white;
            box-shadow: 0 8px 20px rgba(173, 44, 238, 0.3);
        }

        .comment-counter {
            color: #7b2cbf;
            font-weight: 700;
            text-align: center;
            margin-top: 2rem;
        }

        .math-highlight {
            color: #ad2bee;
            font-weight: 700;
        }

body {
            background-color: #0a0510;
            background-image: radial-gradient(circle at 50% 20%, rgba(123, 44, 191, 0.15) 0%, transparent 60%);
            scroll-behavior: smooth;
        }

        /* Hero Section - Remove white border effect */
        section.relative.overflow-hidden.rounded-xl {
            border: none !important;
            box-shadow: none !important;
            -webkit-box-shadow: none !important;
            outline: none !important;
        }

        section.relative.overflow-hidden.rounded-xl img {
            border: none !important;
            outline: none !important;
            display: block;
            margin: 0;
            padding: 0;
        }

        /* Open Canvas Styles */
        article a {
            position: relative;
            overflow: hidden;
        }

        article a span:last-child {
            position: absolute;
            bottom: -2px;
            left: 0;
        }

        @media (max-width: 768px) {
            article {
                text-align: center;
            }
        }

        .title-guerra {
            font-family: 'Spline Sans', sans-serif;
            font-weight: 900;
            font-style: italic;
            font-size: clamp(4rem, 12vw, 6rem);
            line-height: 0.9;
            letter-spacing: -0.03em;
        }

        .sticker-label {
            position: absolute;
            top: 1.2rem;
            left: 1.2rem;
            background: white;
            color: black;
            padding: 4px 14px;
            border-radius: 8px;
            font-weight: 900;
        }

        /* Image Container con efecto de capa oscura */
        .image-container {
            position: relative;
            border-radius: 50%;
            overflow: hidden;
            transition: all 0.5s ease;
            border: 2px solid rgba(200, 160, 230, 0.3);
            box-shadow: 0 8px 24px rgba(173, 43, 238, 0.15);
        }

        .image-container img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(180, 130, 220, 0.7) 0%, rgba(200, 160, 230, 0.5) 100%);
            mix-blend-mode: multiply;
            pointer-events: none;
            transition: all 0.5s ease;
        }

        .image-container:hover::after {
            opacity: 0;
        }

        .image-container:hover img {
            transform: scale(1.1);
        }

        .filter-btn {
            transition: all 0.3s ease;
        }

        .filter-active {
            background-color: #ad2bee !important;
            color: white !important;
        }

        .blog-item {
            transition: all 0.4s ease;
        }

        .hidden-item {
            display: none;
            opacity: 0;
            transform: scale(0.95);
        }

/* Hero Section - Remove white border effect */
        section.relative.overflow-hidden.rounded-xl {
            border: none !important;
            box-shadow: none !important;
            -webkit-box-shadow: none !important;
            outline: none !important;
        }

        section.relative.overflow-hidden.rounded-xl img {
            border: none !important;
            outline: none !important;
            display: block;
            margin: 0;
            padding: 0;
        }

        .post-it {
            position: relative;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
            will-change: transform;
            font-family: 'Patrick Hand', cursive;
        }

        .post-it:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 20px rgba(173, 43, 238, 0.2);
            z-index: 10;
        }

        /* Cinta adhesiva realista */
        .tape {
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%) rotate(-2deg);
            width: 80px;
            height: 24px;
            background: linear-gradient(135deg,
                    rgba(255, 248, 220, 0.85) 0%,
                    rgba(255, 250, 205, 0.9) 50%,
                    rgba(255, 248, 220, 0.85) 100%);
            border-radius: 2px;
            box-shadow:
                0 1px 2px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
            z-index: 20;
        }

        .tape::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            right: 3px;
            bottom: 3px;
            background: repeating-linear-gradient(90deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 0, 0, 0.02) 2px,
                    rgba(0, 0, 0, 0.02) 4px);
            border-radius: 1px;
        }

        .post-it::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 30px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, transparent 100%);
            border-radius: 0.5rem 0.5rem 0 0;
        }

        /* Animation for post-its when page loads */
        @keyframes floatIn {
            from {
                opacity: 0;
                transform: translateY(20px) rotate(0deg);
            }

            to {
                opacity: 1;
            }
        }

        .post-it {
            animation: floatIn 0.6s ease-out forwards;
        }

        .post-it:nth-child(1) {
            animation-delay: 0.1s;
        }

        .post-it:nth-child(2) {
            animation-delay: 0.2s;
        }

        .post-it:nth-child(3) {
            animation-delay: 0.3s;
        }

        .post-it:nth-child(4) {
            animation-delay: 0.4s;
        }

        .post-it:nth-child(5) {
            animation-delay: 0.5s;
        }

        .post-it:nth-child(6) {
            animation-delay: 0.6s;
        }

        .post-it:nth-child(7) {
            animation-delay: 0.7s;
        }

        .post-it:nth-child(8) {
            animation-delay: 0.8s;
        }

