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

            body {
                background: linear-gradient(135deg, #fef9f3 0%, #fae8d8 50%, #f0e7f5 100%);
                background-attachment: fixed;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
                color: #2d2342;
                overflow-x: hidden;
                position: relative;
            }

            body::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-image:
                    radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
                pointer-events: none;
                animation: gradientShift 20s ease infinite;
            }

            @keyframes gradientShift {

                0%,
                100% {
                    opacity: 1;
                }

                50% {
                    opacity: 0.7;
                }
            }

            /* Navigation */
            .nav-wrapper {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                background: rgba(254, 249, 243, 0.85);
                -webkit-backdrop-filter: blur(12px);
                backdrop-filter: blur(12px);
                z-index: 1000;
                border-bottom: 1px solid rgba(147, 51, 234, 0.1);
                box-shadow: 0 2px 20px rgba(147, 51, 234, 0.05);
            }

            .nav {
                max-width: 1400px;
                margin: 0 auto;
                padding: 1rem 2rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
            }

            .nav-brand {
                font-size: 1.5rem;
                font-weight: 700;
                color: #6b21a8;
                text-decoration: none;
                letter-spacing: -0.02em;
            }

            .nav-section {
                font-size: 0.9rem;
                font-weight: 500;
                margin-top: 0.2rem;
                color: #9333ea;
            }

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

            .nav-section a:hover {
                color: #7c3aed;
            }

            .nav-links {
                display: flex;
                list-style: none;
                gap: 2rem;
                flex-wrap: wrap;
            }

            .nav-links a {
                color: #6b21a8;
                text-decoration: none;
                font-size: 0.95rem;
                font-weight: 500;
                transition: all 0.3s ease;
                position: relative;
                padding: 0.5rem 0;
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, #9333ea, #ec4899);
                transition: width 0.3s ease;
            }

            .nav-links a:hover {
                color: #9333ea;
            }

            .nav-links a:hover::after {
                width: 100%;
            }

            /* Hero Section */
            .hero {
                margin-top: 100px;
                padding: 4rem 2rem 3rem;
                text-align: center;
                max-width: 1400px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero h1 {
                font-size: clamp(2.5rem, 5vw, 4.5rem);
                font-weight: 800;
                margin-bottom: 1.5rem;
                background: linear-gradient(135deg, #6b21a8 0%, #9333ea 50%, #ec4899 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                letter-spacing: -0.03em;
                animation: fadeInUp 0.8s ease;
            }

            .hero-svg-container {
                margin: 2.5rem auto;
                display: flex;
                justify-content: center;
                animation: fadeInUp 0.8s ease 0.2s backwards;
            }

            .hero-description {
                max-width: 850px;
                margin: 0 auto 2.5rem;
                line-height: 1.8;
                font-size: 1.15rem;
                color: #5a3e6c;
                animation: fadeInUp 0.8s ease 0.4s backwards;
                background: rgba(255, 255, 255, 0.5);
                padding: 2rem;
                border-radius: 20px;
                border: 1px solid rgba(147, 51, 234, 0.1);
            }

            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Language Selector */
            .lang-selector {
                display: inline-flex;
                gap: 0.5rem;
                background: rgba(255, 255, 255, 0.6);
                padding: 0.5rem;
                border-radius: 50px;
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(147, 51, 234, 0.15);
                animation: fadeInUp 0.8s ease 0.6s backwards;
            }

            .lang-selector a {
                color: #6b21a8;
                text-decoration: none;
                padding: 0.6rem 1.5rem;
                border-radius: 50px;
                transition: all 0.3s ease;
                font-weight: 500;
            }

            .lang-selector a.active {
                background: linear-gradient(135deg, #9333ea, #ec4899);
                color: #ffffff;
                box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
            }

            .lang-selector a:hover:not(.active) {
                background: rgba(147, 51, 234, 0.1);
                color: #7c3aed;
            }

            /* Content Section */
            .content-section {
                max-width: 1400px;
                margin: 0 auto;
                padding: 3rem 2rem;
            }

            .section-title {
                font-size: 2.5rem;
                margin-bottom: 3.5rem;
                text-align: center;
                font-weight: 700;
                color: #6b21a8;
                letter-spacing: -0.02em;
                position: relative;
            }

            .section-title::before {
                content: '◆';
                display: block;
                font-size: 1.5rem;
                color: #ec4899;
                margin-bottom: 1rem;
                animation: float 3s ease-in-out infinite;
            }

            .section-title::after {
                content: '';
                display: block;
                width: 120px;
                height: 3px;
                background: linear-gradient(90deg, transparent, #9333ea, #ec4899, transparent);
                margin: 1.5rem auto 0;
                border-radius: 2px;
            }

            @keyframes float {

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

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

            /* Bento Grid */
            .articles-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
                position: relative;
            }

            .article-card {
                background: rgba(255, 255, 255, 0.7);
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
                border-radius: 24px;
                padding: 2.5rem;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                border: 1px solid rgba(147, 51, 234, 0.15);
                position: relative;
                overflow: hidden;
                animation: cardEntry 0.6s ease backwards;
            }

            .article-card:nth-child(1) {
                animation-delay: 0.1s;
            }

            .article-card:nth-child(2) {
                animation-delay: 0.15s;
            }

            .article-card:nth-child(3) {
                animation-delay: 0.2s;
            }

            .article-card:nth-child(4) {
                animation-delay: 0.25s;
            }

            .article-card:nth-child(5) {
                animation-delay: 0.3s;
            }

            .article-card:nth-child(6) {
                animation-delay: 0.35s;
            }

            .article-card:nth-child(7) {
                animation-delay: 0.4s;
            }

            .article-card:nth-child(8) {
                animation-delay: 0.45s;
            }

            @keyframes cardEntry {
                from {
                    opacity: 0;
                    transform: translateY(40px) scale(0.95);
                }

                to {
                    opacity: 1;
                    transform: translateY(0) scale(1);
                }
            }

            .article-card::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
                opacity: 0;
                transition: opacity 0.4s ease;
                pointer-events: none;
            }

            .article-card::after {
                content: '';
                position: absolute;
                inset: 0;
                border-radius: 24px;
                padding: 1px;
                background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
                -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                -webkit-mask-composite: xor;
                mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                mask-composite: exclude;
                opacity: 0;
                transition: opacity 0.4s ease;
                pointer-events: none;
            }

            .article-card:hover {
                transform: translateY(-12px) scale(1.02);
                box-shadow:
                    0 20px 40px rgba(147, 51, 234, 0.15),
                    0 10px 20px rgba(236, 72, 153, 0.1);
                border-color: rgba(147, 51, 234, 0.3);
            }

            .article-card:hover::before,
            .article-card:hover::after {
                opacity: 1;
            }

            .card-icon {
                width: 90px;
                height: 90px;
                background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
                border-radius: 50% 40% 50% 40%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 1.5rem;
                font-size: 2.5rem;
                border: 2px solid rgba(147, 51, 234, 0.2);
                transition: all 0.5s ease;
                animation: morph 6s ease-in-out infinite;
            }

            @keyframes morph {

                0%,
                100% {
                    border-radius: 50% 40% 50% 40%;
                    transform: rotate(0deg);
                }

                25% {
                    border-radius: 40% 50% 40% 50%;
                }

                50% {
                    border-radius: 50% 40% 60% 30%;
                    transform: rotate(5deg);
                }

                75% {
                    border-radius: 30% 60% 40% 50%;
                }
            }

            .article-card:hover .card-icon {
                transform: scale(1.15) rotate(10deg);
                background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
                box-shadow: 0 8px 25px rgba(147, 51, 234, 0.2);
            }

            .card-link {
                text-decoration: none;
                color: inherit;
                display: block;
            }

            .card-title {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                font-weight: 700;
                line-height: 1.4;
                color: #6b21a8;
                letter-spacing: -0.01em;
                transition: all 0.3s ease;
            }

            .article-card:hover .card-title {
                background: linear-gradient(135deg, #7c3aed, #ec4899);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .card-description {
                color: #5a3e6c;
                line-height: 1.7;
                font-size: 1.05rem;
            }

            /* Footer */
            .footer {
                text-align: center;
                padding: 3rem 2rem;
                margin-top: 4rem;
                border-top: 1px solid rgba(147, 51, 234, 0.1);
                background: rgba(255, 255, 255, 0.3);
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
            }

            .footer p {
                color: #6b21a8;
                margin-bottom: 1rem;
            }

            .footer a {
                color: #7c3aed;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .footer a:hover {
                color: #9333ea;
            }

            .license-badge {
                display: inline-block;
                margin-top: 1rem;
                opacity: 0.8;
                transition: all 0.3s ease;
            }

            .license-badge:hover {
                opacity: 1;
                transform: scale(1.05);
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .nav {
                    flex-direction: column;
                    gap: 1rem;
                }

                .nav-links {
                    gap: 1rem;
                    font-size: 0.9rem;
                }

                .hero {
                    padding: 3rem 1.5rem 2rem;
                    margin-top: 120px;
                }

                .hero h1 {
                    font-size: 2.25rem;
                }

                .hero-description {
                    font-size: 1rem;
                    padding: 1.5rem;
                }

                .articles-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                .content-section {
                    padding: 2rem 1.5rem;
                }

                .section-title {
                    font-size: 1.8rem;
                }

                .card-icon {
                    width: 70px;
                    height: 70px;
                    font-size: 2rem;
                }

                .card-title {
                    font-size: 1.3rem;
                }
            }

            @media (max-width: 480px) {
                .nav-links {
                    gap: 0.5rem;
                    justify-content: center;
                }

                .lang-selector {
                    flex-direction: column;
                    gap: 0.5rem;
                }

                .article-card {
                    padding: 2rem;
                }
            }
/* Shared language-version footer */
.language-switcher { margin: 0 auto 1.5rem; }
.language-switcher-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; padding: 0; list-style: none; }
.language-switcher a { display: inline-block; padding: 0.45rem 0.75rem; border: 1px solid currentColor; border-radius: 999px; color: inherit; text-decoration: none; opacity: 0.8; }
.language-switcher a:hover, .language-switcher a:focus-visible, .language-switcher a[aria-current="page"] { opacity: 1; text-decoration: underline; }
