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

:root {
    --primary-color: #e50914;
    --secondary-color: #141414;
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
    --background-dark: #000000;
    --background-card: #1a1a1a;
    --accent-gold: #ffd700;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.site-header {
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.main-nav {
    padding: 1rem 2rem;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hero-banner {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(229,9,20,0.4);
}

.cta-button:hover {
    background: #b20710;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229,9,20,0.6);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

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

.movie-card {
    background: var(--background-card);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

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

.movie-card img {
    width: 100%;
    display: block;
}

.movie-info {
    padding: 1.5rem;
}

.movie-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.quiz-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quiz-block {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.quiz-block:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.quiz-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.quiz-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.quiz-link:hover {
    color: var(--accent-gold);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.posts-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.post-preview {
    background: var(--background-card);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.post-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(229,9,20,0.4);
}

.post-preview img {
    width: 100%;
    display: block;
}

.post-preview h3 {
    padding: 1rem 1.5rem 0.5rem;
    color: var(--accent-gold);
}

.post-preview p {
    padding: 0 1.5rem 1rem;
    color: var(--text-secondary);
}

.read-more {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-gold);
}

.site-footer {
    background: var(--secondary-color);
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.registration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: var(--text-secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    padding: 2rem;
    z-index: 10000;
    border-top: 3px solid var(--primary-color);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content h3 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.customize {
    background: #555;
    color: white;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.cookie-policy-link {
    display: block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
}

.page-header {
    background: linear-gradient(135deg, var(--secondary-color), #1a1a1a);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.header-content h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    gap: 3rem;
}

.blog-article {
    background: var(--background-card);
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    transition: var(--transition);
}

.blog-article:hover {
    box-shadow: 0 10px 30px rgba(229,9,20,0.4);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 2rem 2rem 2rem 0;
}

.article-content h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.article-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-meta span {
    margin-right: 1rem;
}

.article-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.article-link:hover {
    color: var(--accent-gold);
}

.quizzes-container {
    display: grid;
    gap: 3rem;
}

.quiz-item-large {
    background: var(--background-card);
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.quiz-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    width: fit-content;
}

.quiz-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.start-quiz-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.start-quiz-btn:hover {
    background: #b20710;
    transform: translateY(-2px);
}

.quiz-cta {
    background: linear-gradient(135deg, var(--primary-color), #b20710);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-quiz-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 3rem;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.featured-quiz-btn:hover {
    background: var(--accent-gold);
    color: var(--secondary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--background-card);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(229,9,20,0.4);
}

.team-member img {
    width: 100%;
    display: block;
}

.team-member h3 {
    color: var(--accent-gold);
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.role {
    color: var(--primary-color);
    font-weight: 700;
    padding: 0 1.5rem;
}

.team-member p {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.mission-content {
    background: var(--background-card);
    padding: 3rem;
    border-radius: 10px;
    line-height: 1.8;
}

.mission-content h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.value-item {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    border: 2px solid var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 80px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
}

.timeline-content {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 10px;
    margin-left: 2rem;
}

.timeline-content h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #333;
    background: var(--background-card);
    color: white;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

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

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background: var(--background-card);
    padding: 1.5rem;
    border-radius: 10px;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.info-block h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: var(--background-card);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

.post-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.post-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-gold);
}

.post-header h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-author {
    color: var(--text-secondary);
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.post-featured-image {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    display: block;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-content h2 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.tag {
    background: var(--background-card);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.related-posts {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

.related-posts h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

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

.related-item {
    background: var(--background-card);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(229,9,20,0.4);
}

.related-item img {
    width: 100%;
    display: block;
}

.related-item h4 {
    padding: 1rem;
    color: var(--accent-gold);
}

@media (max-width: 1024px) {
    .blog-article,
    .quiz-item-large,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    .timeline-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .movie-grid,
    .posts-preview,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .quiz-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}