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

body {
    background-color: #0a0a0a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background-color: #333333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555555;
}

/* Firefox scrollbar */
* {
    scrollbar-color: #333333 #0a0a0a;
    scrollbar-width: thin;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-embed div {
    width: 100% !important;
    height: 100% !important;
}

.hero-text {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

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

.hero-text h1 {
    font-family: 'EB Garamond', serif;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-text h1 span {
    display: block;
}

.hero-text h1 .line-1 {
    font-size: 64px;
}

.hero-text h1 .line-2 {
    font-size: 64px;
}

.hero-text p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-section {
    width: 100%;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.page-label {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.manga-page {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 9 / 16;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 1rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: default;
    position: relative;
}

.manga-page::after {
    content: 'THESE IMAGES WERE GENERATED BY AI';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 5;
}

/* Prevent image context menu and interactions */
.manga-page {
    pointer-events: auto;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Credits section */
.credits {
    text-align: center;
    padding: 2rem 1rem;
    color: #666666;
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
}

.credits a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.credits a:hover {
    color: #aaaaaa;
}

.credits i {
    font-size: 14px;
    margin-left: 4px;
}

/* Scroll animation */
.page-section.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 0.75rem;
    }

    .manga-page {
        max-width: 100%;
    }

    .hero-text {
        bottom: 30px;
        left: 30px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .page-label {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 0.5rem;
    }

    .hero-text {
        bottom: 20px;
        left: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .page-label {
        font-size: 20px;
    }
}

/* Prevent dragging */
img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}


