@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

/* ========== FUTURISTIC CUSTOM CURSOR ========== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: screen;
}

/* Main cursor - geometric diamond shape */
.cursor-main {
    width: 24px;
    height: 24px;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-diamond {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #dc143c 100%);
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 40px rgba(255, 69, 0, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: cursorBreathing 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes cursorBreathing {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 107, 53, 0.6),
            0 0 40px rgba(255, 69, 0, 0.4),
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 107, 53, 0.8),
            0 0 60px rgba(255, 69, 0, 0.6),
            inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

/* Trailing follower cursor */
.cursor-follower {
    width: 40px;
    height: 40px;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 3px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

/* Orbiting particles */
.cursor-orbit {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
    animation: orbit 2s linear infinite;
    opacity: 0.8;
}

.cursor-orbit:nth-child(2) {
    animation-delay: -0.5s;
}

.cursor-orbit:nth-child(3) {
    animation-delay: -1s;
}

.cursor-orbit:nth-child(4) {
    animation-delay: -1.5s;
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(30px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Hover state - expand and glow */
.cursor-hover .cursor-main {
    width: 32px;
    height: 32px;
}

.cursor-hover .cursor-diamond {
    background: linear-gradient(135deg, #ff8c42 0%, #ff4500 50%, #ff1744 100%);
    box-shadow:
        0 0 30px rgba(255, 140, 66, 0.8),
        0 0 60px rgba(255, 69, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 140, 66, 0.5);
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
}

/* Click state - pulse ripple */
.cursor-clicking .cursor-main {
    width: 20px;
    height: 20px;
}

.cursor-clicking .cursor-follower {
    width: 50px;
    height: 50px;
}

/* Click ripple effect */
.cursor-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    animation: rippleEffect 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Text/Link hover - color shift to deeper red */
.cursor-text .cursor-diamond {
    background: linear-gradient(135deg, #ff3c00 0%, #e91e63 50%, #c62828 100%);
    box-shadow:
        0 0 30px rgba(255, 60, 0, 0.8),
        0 0 60px rgba(233, 30, 99, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.cursor-text .cursor-follower {
    border-color: rgba(255, 60, 0, 0.5);
    background: radial-gradient(circle, rgba(255, 60, 0, 0.15) 0%, transparent 70%);
}

/* Mobile - hide custom cursor */
@media (max-width: 768px),
(hover: none) {
    .custom-cursor {
        display: none !important;
    }
}

html {
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    background: #000000;
    background-attachment: fixed;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: white;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* ========== BACKGROUND ANIMATIONS ========== */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
    top: -250px;
    left: -250px;
    animation: floatOrb1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent);
    top: 50%;
    right: -200px;
    animation: floatOrb2 25s ease-in-out infinite;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    bottom: -300px;
    left: 30%;
    animation: floatOrb3 30s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent);
    top: 20%;
    right: 20%;
    animation: floatOrb4 22s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 150px) scale(1.2);
    }

    66% {
        transform: translate(-80px, 100px) scale(0.9);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-120px, -100px) scale(1.1);
    }

    66% {
        transform: translate(80px, 120px) scale(0.95);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-150px, -80px) scale(1.15);
    }

    66% {
        transform: translate(100px, -120px) scale(0.9);
    }
}

@keyframes floatOrb4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(90px, 110px) scale(1.25);
    }

    66% {
        transform: translate(-100px, -90px) scale(0.85);
    }
}

.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

/* Floating Dots */
.floating-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

/* Optimize animations on mobile for performance */
@media (max-width: 968px) {

    .bg-orb {
        opacity: 0.3 !important;
        filter: blur(80px) !important;
        animation-duration: 30s !important;
        display: block !important;
    }
    
    .grid-lines {
        opacity: 0.8 !important;
        background-size: 40px 40px !important;
        animation-duration: 30s !important;
        background-image:
            linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px) !important;
        display: block !important;
    }
    
    .floating-dots {
        opacity: 0.6 !important;
        display: block !important;
    }
}

/* ========== NAVBAR ========== */
.glass-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@keyframes navSlideDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scale(0.95);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
    }
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: logoRotate 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

@keyframes logoRotate {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.1) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar-menu li:nth-child(1) {
    animation-delay: 0.3s;
}

.navbar-menu li:nth-child(2) {
    animation-delay: 0.4s;
}

.navbar-menu li:nth-child(3) {
    animation-delay: 0.5s;
}

.navbar-menu li:nth-child(4) {
    animation-delay: 0.6s;
}

.navbar-menu li:nth-child(5) {
    animation-delay: 0.7s;
}

.navbar-menu li:nth-child(6) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.navbar-menu a:hover {
    color: white;
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.navbar-menu a.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.navbar-cta {
    display: flex;
    gap: 10px;
    opacity: 0;
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.nav-btn-outline {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.navbar-toggle {
    display: none;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 10px 14px;
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.navbar-toggle:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.navbar-toggle:active {
    transform: scale(0.95);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    padding: 150px 50px 80px;
    text-align: center;
    z-index: 1;
}

.blog-label {
    display: inline-block;
    font-size: 0.9rem;
    color: #8B5CF6;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 10px 25px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== TABS ========== */
.tabs-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 50px;
}

.tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.tab-btn {
    padding: 15px 40px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    width: 300%;
    height: 300%;
}

.tab-btn.active {
    border-color: #8B5CF6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.tab-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.tab-btn:hover img,
.tab-btn.active img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* ========== CONTENT SECTIONS ========== */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px 100px;
}

/* ========== COMING SOON SECTION ========== */
.coming-soon-container {
    text-align: center;
    padding: 150px 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.coming-soon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-icon img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
    transition: all 0.4s ease;
}

.coming-soon-icon img:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 15px 40px rgba(139, 92, 246, 0.6));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.coming-soon-container:hover .coming-soon-title {
    letter-spacing: 2px;
}

.coming-soon-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.coming-soon-container:hover .coming-soon-description {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== BLOG GRID ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #8B5CF6;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card:hover .blog-image::after {
    opacity: 0;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #8B5CF6;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1.4;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    flex-wrap: wrap;
}

.blog-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.blog-read-more {
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
}

.blog-card:hover .blog-read-more {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* ========== EVENTS GRID ========== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.event-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    z-index: 0;
    transition: all 0.4s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: #8B5CF6;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
}

.event-card:hover::before {
    height: 100%;
    opacity: 0.3;
}

.event-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 1;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.event-card-header {
    position: relative;
    z-index: 1;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.event-date-box {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 90px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.event-day {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.event-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.event-time-badge {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.85rem;
    color: #8B5CF6;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-card-body {
    position: relative;
    z-index: 1;
    padding: 0 30px 30px;
}

.event-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    line-height: 1.3;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    width: fit-content;
}

.event-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.event-card-footer {
    position: relative;
    z-index: 1;
    padding: 0 30px 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.event-buttons {
    display: flex;
    gap: 10px;
}

.event-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.event-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.event-btn-secondary {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.event-btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8B5CF6;
    transform: translateY(-3px);
}

.event-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(168, 85, 247, 0.9);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 8, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 21, 53, 0.98), rgba(15, 12, 41, 0.98));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(139, 92, 246, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

@media (max-width: 968px) {

    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px;
        padding: 14px 18px;
    }
}

@media (max-width: 480px) {

    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px;
        padding: 13px 16px;
    }
}

.form-file {
    width: 100%;
    padding: 15px 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-file::file-selector-button {
    padding: 8px 20px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    margin-right: 15px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.form-file:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select option {
    background: #1a1535;
    color: white;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit,
.btn-cancel {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.btn-cancel {
    background: rgba(139, 92, 246, 0.1);
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.btn-cancel:hover {
    background: rgba(139, 92, 246, 0.2);
}

/* ========== BLOG DETAIL MODAL ========== */
#blogDetailContent {
    padding: 20px 0;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#blogDetailContent::-webkit-scrollbar {
    width: 10px;
}

#blogDetailContent::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    margin: 10px 0;
}

#blogDetailContent::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-radius: 10px;
    border: 2px solid rgba(26, 21, 53, 0.98);
}

#blogDetailContent::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #9D6EFF, #4B92FF);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* For Firefox */
#blogDetailContent {
    scrollbar-width: thin;
    scrollbar-color: #8B5CF6 rgba(139, 92, 246, 0.15);
}

.blog-detail-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease;
}

.blog-detail-image:hover {
    transform: scale(1.02);
}

.blog-detail-placeholder {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.blog-detail-category {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.blog-detail-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e0d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.blog-detail-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-detail-date::before {
    content: '📅';
    font-size: 1.2rem;
}

.blog-detail-content {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 2;
    text-align: left;
    padding: 30px 40px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.1);
}

.blog-detail-content p {
    margin-bottom: 25px;
    text-indent: 30px;
}

.blog-detail-content p:first-child {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    text-indent: 0;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid #8B5CF6;
}

.blog-detail-content p:first-child::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 10px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-detail-content strong {
    color: #ffffff;
    font-weight: 700;
}

.blog-detail-content em {
    color: #e0d5ff;
    font-style: italic;
}

.blog-detail-content a {
    color: #8B5CF6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-detail-content a:hover {
    color: #3B82F6;
}

/* ========== EVENT DETAIL MODAL ========== */
#eventDetailContent {
    padding: 20px 0;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#eventDetailContent::-webkit-scrollbar {
    width: 10px;
}

#eventDetailContent::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    margin: 10px 0;
}

#eventDetailContent::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-radius: 10px;
    border: 2px solid rgba(26, 21, 53, 0.98);
}

#eventDetailContent::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #9D6EFF, #4B92FF);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

#eventDetailContent {
    scrollbar-width: thin;
    scrollbar-color: #8B5CF6 rgba(139, 92, 246, 0.15);
}

.event-detail-header {
    margin-bottom: 40px;
    text-align: center;
}

.event-detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease;
}

.event-detail-image:hover {
    transform: scale(1.02);
}

.event-detail-placeholder {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.event-detail-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #e0d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.event-detail-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.event-detail-info-item {
    background: rgba(139, 92, 246, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
}

.event-detail-info-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.event-detail-info-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.event-detail-info-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.event-detail-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 2;
    text-align: left;
    padding: 30px 40px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.1);
}

.event-detail-description p {
    margin-bottom: 25px;
}

.event-detail-description p:first-child::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 10px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ========== FOOTER ========== */
.footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #0a0814);
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 100px;
    z-index: 1;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #8B5CF6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #3B82F6);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #8B5CF6;
    transform: translateX(5px);
}

.footer-newsletter {
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-message {
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-message.show {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #8B5CF6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    * {
        -webkit-tap-highlight-color: rgba(139, 92, 246, 0.15);
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.6;
        padding: 0 20px;
    }

    .tabs-container,
    .content-container {
        padding: 0 20px;
    }

    .tabs {
        gap: 12px;
        padding: 0 10px;
    }

    .tab-btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 48px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .blog-card {
        border-radius: 20px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .blog-read-more {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        min-height: 50px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .event-card {
        border-radius: 20px;
    }

    .event-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .event-card-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .event-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .event-btn,
    .event-btn-secondary {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
        min-height: 50px;
    }

    .event-location {
        margin: 0 auto;
    }

    .glass-navbar {
        top: max(10px, env(safe-area-inset-top));
        width: 95%;
        padding: 12px max(20px, env(safe-area-inset-right)) 12px max(20px, env(safe-area-inset-left));
        border-radius: 18px;
    }

    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        animation: fadeInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        min-width: 44px;
        min-height: 44px;
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(20px) scale(0.8);
        }

        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .navbar-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(26, 21, 53, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(139, 92, 246, 0.3);
        border-radius: 18px;
        padding: 20px;
        gap: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.4s ease,
            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    }

    .navbar-menu.active {
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-menu li {
        opacity: 0;
        transform: translateX(-20px);
        animation: none;
    }

    .navbar-menu.active li {
        animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .navbar-menu.active li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .navbar-menu.active li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .navbar-menu.active li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .navbar-menu.active li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .navbar-menu.active li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .navbar-menu.active li:nth-child(6) {
        animation-delay: 0.3s;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .navbar-menu a {
        padding: 16px 18px;
        text-align: left;
        font-size: 1rem;
        border-radius: 12px;
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.1);
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .navbar-menu a:hover {
        background: rgba(139, 92, 246, 0.2);
        border-color: rgba(139, 92, 246, 0.3);
        transform: translateX(5px);
    }

    .navbar-menu a.active {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
        border-color: rgba(139, 92, 246, 0.5);
    }

    .navbar-cta {
        flex-direction: column;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        gap: 10px;
        opacity: 1;
        animation: none;
    }

    .nav-btn {
        text-align: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .nav-btn-primary {
        background: linear-gradient(135deg, #8B5CF6, #3B82F6);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    }

    .nav-btn-outline {
        background: rgba(139, 92, 246, 0.15);
        border: 1.5px solid rgba(139, 92, 246, 0.4);
    }

    .footer {
        padding: 60px 25px 30px !important;
        background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #050309);
    }

    .footer-container {
        padding: 0 !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
        margin-bottom: 40px !important;
        padding-bottom: 40px !important;
        border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    }

    .footer-brand {
        max-width: 100% !important;
        text-align: center !important;
        padding: 0 10px;
    }

    .footer-logo {
        font-size: 2.5rem !important;
        text-align: center !important;
        display: block !important;
        margin-bottom: 18px !important;
        background: linear-gradient(135deg, #a78bfa, #60a5fa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    }

    .footer-brand p {
        font-size: 1rem !important;
        text-align: center !important;
        line-height: 1.8 !important;
        color: rgba(255, 255, 255, 0.75) !important;
        max-width: 500px;
        margin: 0 auto 25px !important;
    }

    .footer-social {
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: wrap;
    }

    .social-link {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.4rem !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        backdrop-filter: blur(10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .social-link:hover {
        transform: translateY(-5px) scale(1.05) !important;
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4) !important;
    }

    .footer-column {
        text-align: center !important;
        padding: 20px 15px;
        background: rgba(139, 92, 246, 0.03);
        border-radius: 16px;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .footer-column h3 {
        font-size: 1.2rem !important;
        text-align: center !important;
        margin-bottom: 22px !important;
        letter-spacing: 0.5px;
    }

    .footer-column h3::after {
        left: 50% !important;
        transform: translateX(-50%);
        width: 50px !important;
        height: 3px !important;
    }

    .footer-links {
        align-items: center !important;
    }

    .footer-links li {
        margin-bottom: 12px !important;
    }

    .footer-links a {
        font-size: 1rem !important;
        padding: 10px 0 !important;
        display: inline-block !important;
        color: rgba(255, 255, 255, 0.75) !important;
        position: relative;
    }

    .footer-links a::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #8B5CF6, #3B82F6);
        transition: width 0.3s ease;
    }

    .footer-links a:hover::after {
        width: 80%;
    }

    .footer-newsletter {
        max-width: 100% !important;
        margin-top: 0 !important;
    }

    .newsletter-input {
        padding: 16px 20px !important;
        font-size: 16px !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        margin-bottom: 12px !important;
    }

    .newsletter-input:focus {
        background: rgba(139, 92, 246, 0.12) !important;
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
    }

    .newsletter-btn {
        padding: 16px 30px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #8B5CF6, #3B82F6);
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        min-height: 50px !important;
    }

    .newsletter-btn:hover {
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5) !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 18px !important;
        padding-top: 30px !important;
        border-top: 1px solid rgba(139, 92, 246, 0.1);
    }

    .footer-copyright {
        font-size: 0.95rem !important;
        order: 2 !important;
        color: rgba(255, 255, 255, 0.65) !important;
        letter-spacing: 0.3px;
    }

    .footer-links-bottom {
        gap: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        order: 1 !important;
        flex-direction: row !important;
    }

    .footer-links-bottom a {
        font-size: 0.95rem !important;
        padding: 8px 12px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        border-radius: 8px;
        transition: all 0.3s ease !important;
    }

    .footer-links-bottom a:hover {
        background: rgba(139, 92, 246, 0.1);
        color: #a78bfa !important;
    }

    .blog-detail-image,
    .blog-detail-placeholder {
        height: 300px;
    }

    .blog-detail-title {
        font-size: 2rem;
    }

    .blog-detail-content {
        font-size: 1.05rem;
        padding: 25px 30px;
        line-height: 1.9;
    }

    .blog-detail-content p:first-child {
        font-size: 1.15rem;
    }

    .blog-detail-content p:first-child::first-letter {
        font-size: 2.8rem;
    }

    .event-detail-image,
    .event-detail-placeholder {
        height: 300px;
    }

    .event-detail-title {
        font-size: 2rem;
    }

    .event-detail-info {
        grid-template-columns: 1fr 1fr;
    }

    .event-detail-description {
        font-size: 1.05rem;
        padding: 25px 30px;
        line-height: 1.9;
    }

    .event-detail-description p:first-child::first-letter {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 15px;
    }

    .tabs {
        flex-direction: column;
        gap: 15px;
        padding: 0 5px;
    }

    .tab-btn {
        padding: 14px 30px;
        font-size: 1rem;
        min-height: 50px;
    }

    .blog-grid,
    .events-grid {
        padding: 0 5px;
    }

    .blog-card,
    .event-card {
        border-radius: 18px;
    }

    .blog-read-more,
    .event-btn,
    .event-btn-secondary {
        min-height: 48px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 50px 15px 25px !important;
    }

    .footer-top {
        gap: 35px !important;
    }

    .footer-logo {
        font-size: 2.2rem !important;
    }

    .footer-brand p {
        font-size: 0.95rem !important;
    }

    .social-link {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
    }

    .footer-column {
        padding: 15px 10px !important;
    }

    .footer-column h3 {
        font-size: 1.1rem !important;
    }

    .footer-links a {
        font-size: 0.95rem !important;
    }

    .newsletter-input,
    .newsletter-btn {
        padding: 14px 18px !important;
        font-size: 16px !important;
    }

    .footer-copyright,
    .footer-links-bottom a {
        font-size: 0.9rem !important;
    }

    .blog-detail-image,
    .blog-detail-placeholder {
        height: 200px;
    }

    .blog-detail-placeholder {
        font-size: 80px;
    }

    .blog-detail-title {
        font-size: 1.6rem;
    }

    .blog-detail-category {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .blog-detail-content {
        font-size: 1rem;
        padding: 20px;
        line-height: 1.8;
    }

    .blog-detail-content p {
        text-indent: 0;
        margin-bottom: 20px;
    }

    .blog-detail-content p:first-child {
        font-size: 1.1rem;
        padding-left: 15px;
    }

    .blog-detail-content p:first-child::first-letter {
        font-size: 2.5rem;
        margin-right: 5px;
    }

    .event-detail-image,
    .event-detail-placeholder {
        height: 200px;
    }

    .event-detail-placeholder {
        font-size: 80px;
    }

    .event-detail-title {
        font-size: 1.6rem;
    }

    .event-detail-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .event-detail-info-item {
        padding: 15px;
    }

    .event-detail-info-icon {
        font-size: 1.5rem;
    }

    .event-detail-description {
        font-size: 1rem;
        padding: 20px;
        line-height: 1.8;
    }

    .event-detail-description p {
        margin-bottom: 20px;
    }

    .event-detail-description p:first-child::first-letter {
        font-size: 2.5rem;
        margin-right: 5px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}