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

            :root { 
            --primary-color: #8B756C;
            --secondary-color: #A08B7F;
            --accent-color: #7BA098;
            --accent-secondary: #6B9489;
            --text-dark: #5D4E47;
            --text-light: #F5F3F0;
            --bg-light: #FAF8F5;
            --border-color: #E8E3DF;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .magazine-container {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--bg-light);
            position: center;
            box-shadow: 0 0 50px rgba(123, 160, 152, 0.08);
        }

        .header {
            background-image: url('images/IMG_0033.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 117, 108, 0.75), rgba(160, 139, 127, 0.65), rgba(123, 160, 152, 0.45));
            z-index: 1;
        }

        /* Custom image placeholder for the beautiful artwork */
        .header::after {
            content: ;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 40%, rgba(123, 160, 152, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 75% 60%, rgba(107, 148, 137, 0.15) 0%, transparent 50%),
                linear-gradient(135deg, rgba(160, 139, 127, 0.1) 0%, rgba(123, 160, 152, 0.15) 100%);
            z-index: 0;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .date {
            font-size: 0.9rem;
            font-weight: 300;
        }

        .issue {
            font-size: 0.8rem;
            background: rgba(245, 243, 240, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            border: 1px solid rgba(245, 243, 240, 0.3);
        }

        .main-title {
            font-family: "sedgwick", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 5rem;
            letter-spacing: -0.05em;
            position: relative;
            z-index: 2;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            margin-top: 3rem;
            margin-bottom: -5rem;
        }

        .subtitle {
            font-size: 1rem;
            font-weight: 300;
            position: relative;
            z-index: 2;
            opacity: 0.9;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem;
        }

        .main-content {
            position: relative;
        }

        .featured-section {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .featured-section::before {
            content: 'FEATURED';
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--accent-color);
            color: white;
            padding: 0.5rem 2rem;
            font-size: 0.8rem;
            font-weight: 700;
            transform: rotate(45deg);
            transform-origin: center;
        }

        .featured-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .featured-desc {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .featured-desc-cn {
            font-size: 0.8rem;
            font-weight: 300;
            line-height: 1.6;
        }


        .projects-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .project-card {
            background: rgba(248, 246, 243, 0.8);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(139, 117, 108, 0.1);
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(123, 160, 152, 0.08), transparent);
            transition: left 0.5s ease;
        }

        .project-card:hover::before {
            left: 100%;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(123, 160, 152, 0.15);
            border-left-color: var(--accent-color);
        }

        .project-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 0.5rem;
            opacity: 0.4;
        }

        .project-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .project-desc {
            font-size: 0.9rem;
            color: #8A7A70;
            line-height: 1.5;
        }

        .project-desc-cn {
            font-size: 0.7rem;
            color: #8A7A70;
            line-height: 1.5;
        }

        .sidebar {
            position: sticky;
            top: 2rem;
            height: fit-content;
        }

        .sidebar-section {
            background: rgba(248, 246, 243, 0.6);
            margin-bottom: 2rem;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .sidebar-header {
            background: var(--text-dark);
            color: var(--text-light);
            padding: 1rem;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .sidebar-content {
            padding: 1.5rem;
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-label {
            font-weight: 700;
            color: #333;
        }

        .info-value {
            color: #666;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .tag {
            background: var(--primary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .decorative-element {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
            opacity: 0.08;
            transform: rotate(45deg);
        }

        .decorative-1 {
            top: 10%;
            right: 5%;
        }

        .decorative-2 {
            bottom: 20%;
            left: 10%;
            width: 150px;
            height: 150px;
        }

        .footer {
            background: var(--text-dark);
            color: var(--text-light);
            padding: 2rem;
            text-align: center;
            position: relative;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .footer-text {
            font-size: 0.9rem;
            color: rgba(245, 243, 240, 0.7);
        }

        .footer a {
            color: var(--accent-color);
            text-decoration: none;
        }

        /* Japanese typography effects */
        .vertical-text {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            font-weight: 300;
            color: rgba(245, 243, 240, 0.8);
            z-index: 2;
        }

        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
                padding: 1rem;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
            
            .header {
                padding: 1rem;
            }
            
            .projects-section {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                position: static;
            }
            
            .vertical-text {
                display: none;
            }
        }

        /* Animation effects */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: slideIn 0.6s ease-out;
        }

        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.2s; }
        .project-card:nth-child(3) { animation-delay: 0.3s; }
        .project-card:nth-child(4) { animation-delay: 0.4s; }
        .project-card:nth-child(5) { animation-delay: 0.5s; }

        /* Print-style elements */
        .crop-marks {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(93, 78, 71, 0.6); 
        }

        .crop-top-left {
            top: 10px;
            left: 10px;
            border-right: none;
            border-bottom: none;
        }

        .crop-top-right {
            top: 10px;
            right: 10px;
            border-left: none;
            border-bottom: none;
        }

        .crop-bottom-left {
            bottom: 10px;
            left: 10px;
            border-right: none;
            border-top: none;
        }

        .crop-bottom-right {
            bottom: 10px;
            right: 10px;
            border-left: none;
            border-top: none;
        }