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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #2d1b69 100%);
    min-height: 100vh;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffaa66 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1,
.logo .logo-text {
    color: #ff6600;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff6600;
    text-shadow: 0 0 5px rgba(255, 102, 0, 0.5);
}

/* Advertisement Containers */
.ad-left, .ad-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #e50914;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.3);
    border-radius: 10px;
}

.ad-left {
    left: 10px;
}

.ad-right {
    right: 10px;
}

.ad-placeholder {
    text-align: center;
    color: #ff6b35;
    font-family: Arial, sans-serif;
}

.ad-placeholder p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}

.ad-placeholder span {
    font-size: 12px;
    color: #ccc;
}

/* Hide ads on smaller screens */
@media (max-width: 1400px) {
    .ad-left, .ad-right {
        display: none;
    }
}

/* Main Content Styles */
main {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* Search Section */
.search-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 15px;
    border: 1px solid #e50914;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.search-container h2 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.search-box {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 8px;
    background: #222;
    color: #fff;
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    border-color: #e50914;
}

.search-box button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e50914;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.update-info {
    background: rgba(229, 9, 20, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #e50914;
}

.movie-banner {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    border: 1px solid #333;
}

/* Movie Gallery */
.movie-gallery {
    margin: 3rem 0;
}

.movie-gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.movie-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    cursor: pointer;
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
    border-color: #e50914;
}

.movie-card h3 {
    color: #e50914;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.movie-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

.watch-btn {
    background: linear-gradient(45deg, #e50914, #ff6b6b);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

/* Content Sections */
.content-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    border: 1px solid #333;
}

.content-section h2 {
    color: #e50914;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-section h3 {
    color: #ff6b6b;
    margin: 1.5rem 0 1rem 0;
}

.content-section p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    color: #cccccc;
    margin-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section a {
    color: #e50914;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* How to Start Section */
.how-to-start {
    background: linear-gradient(135deg, #0f3460, #1a1a2e);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid #e50914;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    border: 1px solid #333;
}

.step h3 {
    color: #e50914;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: #cccccc;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: rgba(229, 9, 20, 0.1);
    cursor: pointer;
    font-weight: bold;
    color: #e50914;
    border-bottom: 1px solid #333;
}

.faq-answer {
    padding: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    border-top: 2px solid #e50914;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.footer-links a:hover {
    color: #e50914;
}

footer p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .movie-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

.logo img {
    height: 40px;
    filter: brightness(1.2);
}

.search-section {
    text-align: center;
    margin: 40px 0;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px 0 0 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 0 25px 25px 0;
    background: #ff6b35;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #e55a2b;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-section {
    text-align: center;
    margin: 60px 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.update-info {
    color: #ffd700;
}

.anime-banner {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.anime-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.overview, .how-to-section, .watch-section, .why-section, .faq-section, .conclusion {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.features {
    list-style: none;
    margin: 20px 0;
}

.features li {
    padding: 8px 0;
    font-size: 1.1rem;
}

ol {
    padding-left: 20px;
}

ol li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.watch-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.watch-btn {
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    margin-top: 20px;
}

.watch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Anime Gallery Styles */
.anime-gallery {
    margin: 40px 0;
    text-align: center;
}

.anime-gallery h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
    padding: 0 20px;
}

.anime-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.anime-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.anime-poster {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.anime-card:hover .anime-poster {
    transform: scale(1.05);
}

.anime-card h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 10px 0 5px 0;
    font-weight: bold;
}

.anime-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: #333;
    color: white;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    margin: 15% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ff6b35;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.1);
    color: #ffd700;
}

.modal-content h2 {
    color: #ff6b35;
    margin-bottom: 30px;
    font-size: 1.8rem;
    margin-top: 20px;
}

.timer-display {
    font-size: 4rem;
    font-weight: bold;
    color: #ffd700;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.modal-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.loading-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 20px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 4px;
}

/* Article Section Styles */
.article-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-section article {
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}

.article-section h2 {
    font-size: 2.5em;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.article-content h3 {
    font-size: 1.8em;
    color: #ffd700;
    margin: 30px 0 15px 0;
    font-weight: 600;
    border-left: 4px solid #ff6b35;
    padding-left: 15px;
}

.article-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.article-section a {
    color: #ff6b35;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.article-section a:hover {
    color: #ff8c42;
    border-bottom-color: #ff6b35;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

.article-section a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.8em;
    opacity: 0.7;
    margin-left: 2px;
}

.article-content p:first-of-type {
    font-size: 1.2em;
    color: #fff;
    font-weight: 500;
}

/* Page Layouts */
.page-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-section,
.story-section,
.features-section,
.community-section,
.commitment-section,
.future-section {
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.value-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.value-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    background: #f8f9fa;
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-methods {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.contact-method h3 {
    color: #333;
    margin-bottom: 15px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.quick-help-grid,
.support-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.help-item,
.support-info-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

/* Privacy and Terms Page Styles */
.privacy-content,
.terms-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-intro,
.terms-intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid #667eea;
}

.privacy-section,
.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e1e5e9;
}

.privacy-section:last-child,
.terms-section:last-child {
    border-bottom: none;
}

.privacy-section h2,
.terms-section h2 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.privacy-section h3,
.terms-section h3 {
    color: #555;
    margin: 25px 0 15px;
}

.privacy-section ul,
.terms-section ul {
    padding-left: 20px;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.privacy-summary,
.terms-summary {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.summary-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.summary-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    header nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .values-grid,
    .quick-help-grid,
    .support-info-grid,
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .search-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .timer-display {
        font-size: 3rem;
    }
    
    /* Anime Gallery Mobile Responsive */
    .anime-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }
    
    .anime-card {
        padding: 15px;
    }
    
    .anime-gallery h3 {
        font-size: 1.5rem;
    }
    
    .anime-card h4 {
        font-size: 1rem;
    }
    
    .anime-card p {
        font-size: 0.9em;
    }
    
    /* Article Section Mobile Styles */
    .article-section {
        padding: 40px 15px;
        margin: 20px 0;
    }
    
    .article-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    .article-content h3 {
        font-size: 1.5em;
        margin: 25px 0 12px 0;
    }
    
    .article-content p {
        font-size: 1em;
        line-height: 1.6;
        text-align: left;
    }
    
    .article-content p:first-of-type {
        font-size: 1.1em;
    }
    
    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .search-container {
        flex-direction: column;
    }
    
    .search-input {
        border-radius: 25px;
        margin-bottom: 10px;
    }
    
    .search-btn {
        border-radius: 25px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .timer-display {
        font-size: 2.5rem;
    }
}