.landing-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #fff;
    margin-top: 20px;
}

.landing-header {
    background: #0a0000;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.landing-header img {
    width: 250px;
    margin-bottom: 20px;
}

.domain-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.domain-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.domain-input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 16px;
    background-color: white!important;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.access-btn {
    padding: 8px 30px;
    background: linear-gradient(45deg, #b20000, #ff0000, #dc2626, #b20000);
    background-size: 300% 300%;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 17px;
    height: fit-content;
    width: fit-content;
    animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite, glow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(178, 0, 0, 0.6), 0 0 0 0 rgba(255, 0, 0, 0.7);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.access-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(178, 0, 0, 0.6), 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.8), 0 0 15px rgba(255, 0, 0, 0.4);
    }
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.domain-input:hover {
    color: #1a1a1a!important;
}

.access-btn:hover {
    color: white!important;
    background: linear-gradient(45deg, #dc2626, #ff3333, #ff0000, #dc2626);
    background-size: 300% 300%;
    animation: gradientShift 1.5s ease infinite, glow 1s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.7), 0 0 30px rgba(255, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.update-info {
    margin-bottom: 20px;
    color: white;
    font-style: italic;
}

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

.social-links a {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    color: white!important;
}

.social-links a img {
    width: 22px;
    height: 22px;
    max-width: none;
    margin-bottom: 0;
    margin-right: 4px;
}

.manga-updates {
    background: #0a0000;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
}

.manga-updates h2 {
    font-size: 26px;
    margin-bottom: 30px;
    color: white;
}

.manga-slider-container {
    position: relative;
}

.manga-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.manga-grid::-webkit-scrollbar {
    display: none;
}

.manga-item {
    flex: 0 0 180px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.manga-item:hover {
    transform: translateY(-5px);
}

.manga-item img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.9);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.content-section {
    background: #fff;
    color: #1a1a1a;
    border-radius: 12px;
    padding: 60px 40px;
    margin-bottom: 40px;
}

.content-section h1 {
    font-size: 27px;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center
}

.content-section h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-section h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-image {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

.faq-section {
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
}

.faq-question span {
    transition: transform 0.3s ease;
    display: inline-block;
    font-size: 0.8em;
}

.faq-question.active span {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.faq-answer.show {
    max-height: 200px;
    padding: 15px 0 0 30px;
}

.footer-note {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 1.1rem;
}

.footer-links {
    text-align: center;
    margin: 20px 0;
    font-size: 0.95rem;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    margin: 0 5px;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

@media (max-width: 768px) {
    .landing-header {
        padding: 30px 20px;
    }

    .manga-updates {
        padding: 30px 20px;
    }

    .domain-input-group {
        flex-direction: column;
    }

    .domain-input {
        padding: 12px 4px;
        font-size: 14px;
    }

    .manga-item {
        flex: 0 0 120px;
    }

    .content-section {
        padding: 30px 0px;
    }
}
