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

:root {
    --primary-pink: #FF69B4;
    --light-pink: #FFB6C1;
    --dark-text: #333;
    --light-text: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #FFE5F1 0%, #FFF0F5 25%, #FFE0EC 50%, #FFD6E8 75%, #FFCCE5 100%);
    color: var(--dark-text);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--dark-text);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo span {
    font-weight: 700;
    color: var(--primary-pink);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-pink);
}

/* Hero Section */
.hero {
    padding: 140px 40px 80px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -3px;
    animation: fadeInUp 0.8s ease-out;
    overflow: visible;
    padding: 10px 0;
}

.hero h1 span {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-style: italic;
    line-height: 1.2;
    padding: 5px 0;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Latest Issue Section */
.latest-issue {
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.latest-issue-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.issue-cover {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.issue-cover img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.issue-cover:hover img {
    transform: scale(1.02);
}

.issue-label {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-pink);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.issue-details {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.issue-number {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-pink);
    margin-bottom: 16px;
    font-weight: 600;
}

.issue-details h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.issue-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 32px;
}

.issue-actions {
    display: flex;
    gap: 20px;
}

.read-online-btn {
    background: var(--primary-pink);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.read-online-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.order-print-btn {
    background: transparent;
    color: var(--primary-pink);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.order-print-btn:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
}

/* Featured Articles */
.featured-articles {
    padding: 80px 40px;
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header h2 span {
    font-weight: 700;
    color: var(--primary-pink);
}

.articles-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.article-image {
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--primary-pink);
}

.article-content {
    padding: 30px;
}

.article-author {
    font-size: 14px;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 12px;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.article-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 20px;
}

.article-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.article-link:hover {
    gap: 12px;
}

.issue-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.issue-actions .article-link {
    gap: 4px;
}

/* Past Issues */
.past-issues {
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.issues-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.issue-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
}

.issue-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.issue-card:hover img {
    transform: scale(1.05);
}

.issue-info {
    padding: 24px;
}

.issue-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.issue-date {
    color: var(--light-text);
    font-size: 14px;
}

.issue-hover-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.issue-card:hover .issue-hover-actions {
    transform: translateY(0);
}

.issue-hover-actions a {
    display: inline-block;
    margin: 0 8px;
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.issue-hover-actions a:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 60px 40px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 300;
}

.footer-brand h3 span {
    font-weight: 700;
    color: var(--primary-pink);
}

.footer-brand p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--light-text);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: clamp(36px, 10vw, 56px);
        letter-spacing: -2px;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .latest-issue-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .issue-actions {
        justify-content: center;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating elements */
.floating-shape {
    position: fixed;
    opacity: 0.1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s ease-in-out infinite;
}

.floating-shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
}

.floating-shape-2 {
    bottom: 20%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--light-pink) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}