/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #111;
    color: #fff;
    line-height: 1.6;
    padding-top: 60px;
}

a {
    text-decoration: none;
    color: #fff;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    background: #ce1126;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.4s ease;
    margin: 8px 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.3), rgba(0, 151, 54, 0.3), rgba(255, 255, 255, 0.3));
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    background: #a50d1e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(206, 17, 38, 0.4);
}

.btn-small {
    background: #009736;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.3), rgba(0, 151, 54, 0.3), rgba(255, 255, 255, 0.3));
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-small:hover::before {
    width: 100%;
}

.btn-small:hover {
    background: #007a29;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 151, 54, 0.4);
}

/* Navigation - COMPACT VERSION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    min-height: 60px;
}

.logo a {
    font-weight: bold;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
}

.logo span span {
    color: #009736;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 8px 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ce1126;
}

/* Dropdown Menu - HIDDEN BY DEFAULT */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #333;
    border-radius: 5px;
    min-width: 200px;
    z-index: 1001;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.2), rgba(0, 151, 54, 0.2), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

.dropdown-menu a:hover::before {
    width: 100%;
}

.dropdown-menu a:hover {
    background: #ce1126;
    color: #fff;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-menu {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 10px 0;
    padding: 10px 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    list-style: none;
    margin: 0;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.2), rgba(0, 151, 54, 0.2), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

.mobile-dropdown-menu a:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: #fff;
    padding: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.3), rgba(0, 151, 54, 0.3), rgba(255, 255, 255, 0.3));
    transition: all 0.5s ease;
    z-index: -1;
}

.hamburger:hover::before {
    width: 100%;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    width: 100%;
}

.mobile-nav li {
    margin: 12px 0;
    width: 100%;
}

.mobile-nav a {
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.2), rgba(0, 151, 54, 0.2), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

.mobile-nav a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    height: calc(100vh - 60px);
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url(/assets/images/Fawzi_al_Juneidi_2017OWB.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ce1126, #009736, #ffffff);
    opacity: 0.1;
    z-index: -1;
    animation: gradientShift 20s ease infinite;
    background-size: 300% 300%;
}

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

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.6s ease;
}

.hero-content h1:hover::after {
    width: 100%;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #e0e0e0;
    transition: all 0.4s ease;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 60px 5%;
}

.section-alt {
    background: #1a1a1a;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #009736;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    margin: 10px auto 0;
    border-radius: 3px;
    transition: all 0.4s ease;
}

h2:hover::after {
    width: 100px;
}

h3 {
    color: #009736;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

h3:hover::after {
    width: 100%;
}

/* Stats */
.history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.stat-card {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 5px solid #ce1126;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.1), rgba(0, 151, 54, 0.1), rgba(255, 255, 255, 0.1));
    transition: all 0.6s ease;
    z-index: -1;
}

.stat-card:hover::before {
    width: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #009736;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ce1126;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.stat-number:hover::after {
    width: 100%;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

/* Methods Grid */
.resistance-methods, .betrayal-list, .action-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.method, .betrayal-item, .option {
    background: #222;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.method::before, .betrayal-item::before, .option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.1), rgba(0, 151, 54, 0.1), rgba(255, 255, 255, 0.1));
    transition: all 0.6s ease;
    z-index: -1;
}

.method:hover::before, .betrayal-item:hover::before, .option:hover::before {
    width: 100%;
}

.method:hover, .option:hover, .betrayal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #009736;
}

.method i, .option i {
    font-size: 2.2rem;
    color: #009736;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.method i::after, .option i::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.method:hover i::after, .option:hover i::after {
    width: 100%;
}

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

.resource-card {
    background: #222;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.1), rgba(0, 151, 54, 0.1), rgba(255, 255, 255, 0.1));
    transition: all 0.6s ease;
    z-index: -1;
}

.resource-card:hover::before {
    width: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #009736;
}

.resource-icon {
    font-size: 2.2rem;
    color: #009736;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.resource-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.resource-card:hover .resource-icon::after {
    width: 100%;
}

.resource-link {
    display: inline-block;
    margin-top: 12px;
    color: #00e676;
    text-decoration: underline;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.resource-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.2), rgba(0, 151, 54, 0.2), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

.resource-link:hover::before {
    width: 100%;
}

.resource-link:hover {
    color: #fff;
}

/* Culture */
.culture-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.culture-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.highlight {
    background: #222;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.1), rgba(0, 151, 54, 0.1), rgba(255, 255, 255, 0.1));
    transition: all 0.6s ease;
    z-index: -1;
}

.highlight:hover::before {
    width: 100%;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #009736;
}

.highlight i {
    font-size: 1.8rem;
    color: #009736;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.highlight i::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.highlight:hover i::after {
    width: 100%;
}

/* Future Goals */
.future-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.future-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.goal-card {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.1), rgba(0, 151, 54, 0.1), rgba(255, 255, 255, 0.1));
    transition: all 0.6s ease;
    z-index: -1;
}

.goal-card:hover::before {
    width: 100%;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #009736;
}

.goal-card i {
    font-size: 1.8rem;
    color: #009736;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.goal-card i::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.goal-card:hover i::after {
    width: 100%;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    padding: 12px;
    transform: translateY(100%);
    transition: all 0.4s ease;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-text {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.gallery-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.gallery-overlay:hover .gallery-text::after {
    width: 100%;
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: #222;
    padding: 25px;
    border-radius: 8px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.1), rgba(0, 151, 54, 0.1), rgba(255, 255, 255, 0.1));
    transition: all 0.6s ease;
    z-index: -1;
}

.testimonial:hover::before {
    width: 100%;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #ce1126;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-weight: bold;
    color: #009736;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.author-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.author-name:hover::after {
    width: 100%;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 5% 20px;
    margin-top: 40px;
}

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

.footer-section h3 {
    color: #009736;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.footer-section h3:hover::after {
    width: 100%;
}

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

.footer-section li {
    margin: 8px 0;
}

.footer-section a {
    color: #ccc;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
}

.footer-section a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.2), rgba(0, 151, 54, 0.2), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a:hover {
    color: #009736;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    font-size: 1.3rem;
    color: #009736;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.2), rgba(0, 151, 54, 0.2), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

.social-links a:hover::before {
    width: 100%;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 0.9rem;
}

/* Timeline Popup */
.timeline-popup {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.timeline-popup-content {
    background-color: #222;
    color: #fff;
    margin: 5% auto;
    padding: 25px;
    border: 1px solid #444;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    position: relative;
    animation: popupSlide 0.5s ease;
}

@keyframes popupSlide {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-timeline {
    color: #aaa;
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
}

.close-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.2), rgba(0, 151, 54, 0.2), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

.close-timeline:hover::before {
    width: 100%;
}

.close-timeline:hover {
    color: #ce1126;
}

.timeline-container {
    margin-top: 25px;
    max-height: 70vh;
    overflow-y: auto;
}

.timeline-event {
    display: flex;
    border-left: 3px solid #ce1126;
    padding: 12px 15px;
    margin: 12px 0;
    background: #1a1a1a;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.timeline-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.1), rgba(0, 151, 54, 0.1), rgba(255, 255, 255, 0.1));
    transition: all 0.6s ease;
    z-index: -1;
}

.timeline-event:hover::before {
    width: 100%;
}

.timeline-event:hover {
    background: #2a2a2a;
    transform: translateX(5px);
    border-left: 3px solid #009736;
}

.event-date {
    width: 70px;
    font-weight: bold;
    color: #ce1126;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.event-date::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.event-date:hover::after {
    width: 100%;
}

.event-content h3 {
    color: #009736;
    margin-bottom: 8px;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.event-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ce1126, #009736, #ffffff);
    transition: all 0.4s ease;
}

.event-content h3:hover::after {
    width: 100%;
}

.event-content p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Donate Menu */
#donateMenu {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    min-width: 280px;
    max-width: 90%;
    border: 1px solid #444;
    animation: popupSlide 0.5s ease;
}

#donateMenu .close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1.5rem;
    color: #aaa;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
}

#donateMenu .close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.2), rgba(0, 151, 54, 0.2), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

#donateMenu .close:hover::before {
    width: 100%;
}

#donateMenu .close:hover {
    color: #fff;
}

#donateMenu ul {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

#donateMenu li {
    margin-bottom: 12px;
}

#donateMenu li a {
    color: #00e676;
    text-decoration: underline;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
}

#donateMenu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(206, 17, 38, 0.2), rgba(0, 151, 54, 0.2), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

#donateMenu li a:hover::before {
    width: 100%;
}

#donateMenu li a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    body {
        padding-top: 60px;
    }
    
    .hero {
        height: calc(100vh - 60px);
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .timeline-event {
        flex-direction: column;
    }
    
    .timeline-event::before {
        display: none;
    }
    
    .event-date {
        margin-bottom: 8px;
        width: auto;
    }
    
    .event-content {
        padding-left: 0;
    }
    
    .history-stats {
        grid-template-columns: 1fr;
    }
    
    .culture-content, .future-content {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 40px 5%;
    }
    
    /* Mobile dropdown toggle */
    .mobile-dropdown > a::after {
        content: " ▼";
        font-size: 0.8rem;
        margin-left: 5px;
    }
    
    .mobile-nav li {
        margin: 0;
    }
    
    .mobile-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #333;
    }
    
    .mobile-dropdown-menu a {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

/* Mobile Nav Active */
.mobile-nav.active {
    display: flex;
}