* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #181923;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav.nav-scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid #1a1a1a;
    padding: 8px 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    color: #91949a;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    height: 40px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 200px;
}

.nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-grow: 1;
}

.nav-link {
    color: #ffffff;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #91949a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: #91949a;
}

.nav-link.active {
    color: #91949a;
}

.nav-link.cta-link {
    background-color: #91949a;
    color: #181923;
    font-weight: 600;
    margin-left: 10px;
}

.nav-link.cta-link::after {
    display: none;
}

.nav-link.cta-link:hover {
    background-color: #ffffff;
    color: #181923;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.98);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #91949a;
    padding-left: 30px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* Bio Stats */
.bio-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #91949a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: #888888;
    font-weight: 500;
}

@media (max-width: 768px) {
    .bio-stats {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Animations */
.card,
.bio-image,
.about-image,
.travel-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll .card,
.animate-on-scroll .bio-image,
.animate-on-scroll .about-image,
.animate-on-scroll .travel-item {
    opacity: 0;
    transform: translateY(30px);
}

.card.animate-in,
.bio-image.animate-in,
.about-image.animate-in,
.travel-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.2s; }
.card:nth-child(3) { transition-delay: 0.3s; }
.card:nth-child(4) { transition-delay: 0.4s; }
.card:nth-child(5) { transition-delay: 0.5s; }
.card:nth-child(6) { transition-delay: 0.6s; }

/* Hero Header with Background Image */
.hero-header {
    background: linear-gradient(135deg, #181923 0%, #1a1a1a 100%);
    padding: 150px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #91949a;
    margin-bottom: 25px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(145, 148, 154, 0.3);
}

.hero-header h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-header .subtitle {
    font-size: 1.3rem;
    color: #91949a;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #cccccc;
}

/* Bio Section with Image */
.bio-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 800;
}

.bio-text p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.bio-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.bio-image img:hover {
    border-color: #91949a;
    box-shadow: 0 20px 60px rgba(145, 148, 154, 0.15);
}

/* About Section */
.about-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 800;
}

.about-text p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.about-image img:hover {
    border-color: #91949a;
    box-shadow: 0 20px 60px rgba(145, 148, 154, 0.15);
}

/* Philosophy List */
.philosophy-list {
    list-style: none;
    margin-top: 25px;
    padding: 0;
}

.philosophy-list li {
    color: #cccccc;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.95rem;
}

.philosophy-list li:last-child {
    border-bottom: none;
}

.philosophy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #91949a;
    font-weight: bold;
}

.philosophy-list li strong {
    color: #91949a;
}

/* Banner Section */
.banner-section {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Image Feature Section */
.image-feature-section {
    padding: 0;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.image-feature img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.image-feature img:hover {
    border-color: #91949a;
    box-shadow: 0 20px 60px rgba(145, 148, 154, 0.15);
    transform: scale(1.01);
}

/* CTA with Background Image */
.cta {
    background: linear-gradient(135deg, #91949a 0%, #7a7d83 100%);
    padding: 100px 20px;
    text-align: center;
    color: #181923;
    border-radius: 20px;
    margin: 60px 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(145, 148, 154, 0.9) 0%, rgba(122, 125, 131, 0.85) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Travel Gallery Section */
.travel-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.travel-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 800;
}

.travel-section > p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.travel-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.travel-item.large {
    grid-row: span 2;
    height: 100%;
}

.travel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.travel-item:hover img {
    transform: scale(1.1);
}

.travel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    opacity: 0;
    transition: all 0.3s ease;
}

.travel-item:hover .travel-overlay {
    opacity: 1;
}

.travel-overlay span {
    color: #91949a;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Footer with Background */
.footer-with-bg {
    background-color: #181923;
    padding: 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-image {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.footer-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.8;
}

.footer-content {
    padding: 30px 20px;
    font-size: 0.95rem;
    color: #666666;
}

/* Enhanced Footer */
.footer-enhanced {
    position: relative;
    background-color: #181923;
    border-top: 1px solid #1a1a1a;
    overflow: hidden;
}

.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.footer-main-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-subtitle {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #2a2a2a;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-link.discord:hover {
    background-color: #5865F2;
    border-color: #5865F2;
}

.social-link.facebook:hover {
    background-color: #1877F2;
    border-color: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Email */
.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #91949a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 25px;
    background-color: rgba(145, 148, 154, 0.1);
    border: 1px solid #91949a;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.footer-email:hover {
    background-color: #91949a;
    color: #181923;
    transform: translateY(-3px);
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-tagline {
    color: #91949a;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 3;
    padding: 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px 30px;
    }

    .footer-section {
        padding-bottom: 30px;
        border-bottom: 1px solid #1a1a1a;
    }

    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .bio-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        direction: ltr;
    }

    .about-image {
        order: -1;
    }

    .travel-grid {
        grid-template-columns: 1fr;
    }

    .travel-item.large {
        grid-row: span 1;
        height: 300px;
    }

    .hero-header {
        min-height: 60vh;
        padding: 80px 20px 60px;
    }

    .hero-header h1 {
        font-size: 2.5rem;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }
}

/* Header */
header {
    background: linear-gradient(135deg, #181923 0%, #1a1a1a 100%);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(145, 148, 154, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

header h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
}

header .subtitle {
    font-size: 1.3rem;
    color: #91949a;
    font-weight: 600;
    margin-bottom: 20px;
}

header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #cccccc;
    position: relative;
    z-index: 2;
}

/* Tabs Navigation */
.tabs-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tab-btn.active {
    background-color: #91949a;
    color: #181923;
}

.tab-btn.inactive {
    background-color: #1a1a1a;
    color: #ffffff;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(145, 148, 154, 0.2);
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 800;
}

section p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

strong {
    color: #91949a;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Cards */
.card {
    background-color: #0a0a0a;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(145, 148, 154, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    border-color: #91949a;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(145, 148, 154, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.card p {
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #91949a 0%, #7a7d83 100%);
    padding: 100px 20px;
    text-align: center;
    color: #181923;
    border-radius: 20px;
    margin: 60px 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.cta h2 {
    color: #181923;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta p {
    color: #1a1a1a;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta button {
    background-color: #181923;
    color: #91949a;
    border: 2px solid #181923;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cta button:hover {
    background-color: #1a1a1a;
    color: #91949a;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #181923;
    padding: 50px 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #666666;
    border-top: 1px solid #1a1a1a;
}

footer a {
    color: #91949a;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Featured Event */
.featured-event {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #91949a;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.featured-event::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(145, 148, 154, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.featured-event-badge {
    display: inline-block;
    background: linear-gradient(135deg, #91949a 0%, #b0b3b8 100%);
    color: #181923;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.featured-event h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.featured-event-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.featured-event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(145, 148, 154, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(145, 148, 154, 0.2);
}

.detail-icon {
    font-size: 1.5rem;
}

.event-detail span {
    color: #cccccc;
}

.event-detail strong {
    color: #91949a;
}

.featured-event-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #91949a 0%, #b0b3b8 100%);
    color: #181923;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.featured-event-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(145, 148, 154, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

@media (max-width: 768px) {
    .featured-event {
        padding: 25px;
    }
    
    .featured-event h3 {
        font-size: 1.5rem;
    }
    
    .featured-event-details {
        grid-template-columns: 1fr;
    }
    
    .featured-event-btn {
        width: 100%;
        text-align: center;
    }
}

/* Events Table */
.events-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.events-table th {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: #91949a;
    border-bottom: 2px solid #91949a;
}

.events-table td {
    padding: 20px;
    border-bottom: 1px solid #1a1a1a;
    color: #cccccc;
    vertical-align: middle;
}

.events-table tr:hover {
    background-color: #0a0a0a;
}

.event-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: #91949a;
    color: #181923;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.event-link:hover {
    background-color: #ffffff;
    color: #181923;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .events-table {
        display: block;
        overflow-x: auto;
    }
    
    .events-table th,
    .events-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .event-link {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    nav a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Video Gallery */
#video-gallery {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#video-gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 800;
}

#video-gallery > p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 50px;
    line-height: 1.8;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.video-card {
    background-color: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    border-color: #91949a;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(145, 148, 154, 0.15);
}

.video-container {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    background-color: #181923;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666666;
    font-weight: 600;
}

.video-info {
    padding: 25px;
    background-color: #0a0a0a;
}

.video-card h3 {
    margin: 0 0 12px 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.video-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    #video-gallery h2 {
        font-size: 1.8rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

