        body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
        .magazine-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2rem; }
        .hero-gradient { background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.1)); }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -2px; left: 0; background-color: #FF5C8D; transition: width 0.3s; }
        .nav-link:hover::after { width: 100%; }
        .custom-scrollbar::-webkit-scrollbar { width: 4px; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #D6C4B5; }
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .page-transition { animation: fadeIn 0.5s ease-in; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .btn-glow:hover { box-shadow: 0 0 20px rgba(255, 92, 141, 0.4); }
    