/* Color Palette Variables */
:root {
    --light-brown: #D3af85;
    --orange: #Eb5819;
    --yellow: #F4b315;
    --brown: #805718;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
    color: var(--light-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(235, 88, 25, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 179, 21, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(211, 175, 133, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Starry background effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 40%, white, transparent),
        radial-gradient(1px 1px at 33% 60%, white, transparent),
        radial-gradient(1px 1px at 55% 20%, white, transparent),
        radial-gradient(2px 2px at 10% 80%, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Top Navigation */
.top-nav {
    position: sticky;
    top: 0;
    background: transparent;
    z-index: 100;
    padding: 20px 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 15px;
    gap: 5px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: auto;
    min-width: fit-content;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 2px;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-logo span {
    display: flex;
    align-items: baseline;
}

.nav-version {
    font-size: 1.1rem;
    color: var(--yellow);
    margin-left: 5px;
}

/* Tubelight effect on navigation container */
.nav-right::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--yellow) 20%,
            var(--orange) 50%,
            var(--yellow) 80%,
            transparent);
    border-radius: 50px 50px 0 0;
    animation: tubelight 3s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes tubelight {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link.active {
    color: var(--light-text);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Indicator above active item */
.nav-link.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--yellow);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--yellow), 0 0 20px var(--yellow);
    animation: indicatorGlow 2s ease-in-out infinite;
}

@keyframes indicatorGlow {

    0%,
    100% {
        opacity: 0.8;
        box-shadow: 0 0 10px var(--yellow), 0 0 20px var(--yellow);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 15px var(--yellow), 0 0 30px var(--yellow), 0 0 40px var(--orange);
    }
}

.coming-soon {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 5px;
    font-style: italic;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px 60px;
    position: relative;
    z-index: 1;
}

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    min-height: 60vh;
}

.content-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-graphic-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(244, 179, 21, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-info {
    padding: 20px;
}

.registration-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.important-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.2);
    border-left: 4px solid #ff4444;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.important-notice i {
    color: #ff4444;
    font-size: 1.5rem;
}

.important-notice span {
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.event-description {
    margin-bottom: 30px;
}

.event-description p {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.social-section {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link.whatsapp {
    background: #25D366;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(244, 179, 21, 0.4);
}

.social-text {
    color: var(--light-text);
    font-size: 1rem;
    flex: 1;
    text-align: center;
}

.download-link {
    display: inline-block;
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 25px;
    border: 2px solid var(--orange);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: var(--orange);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(235, 88, 25, 0.4);
}

/* Countdown Section */
.countdown-section {
    margin-top: 60px;
    padding: 40px 20px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 10px;
    padding: 25px 30px;
    min-width: 100px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 88, 25, 0.3);
    border-color: var(--orange);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--light-brown);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}


/* Footer */
.footer {
    background: var(--dark-bg);
    margin-top: 60px;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 10;
    clear: both;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

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

.footer-links a:hover {
    color: var(--light-text);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--light-text);
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--light-text);
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

.theme-toggle i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch input:checked+.toggle-slider {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(24px);
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    background: var(--dark-bg);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 50px 30px 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 25px 25px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .social-media-icons {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding: 20px 25px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-left {
        order: 2;
    }

    .content-right {
        order: 1;
    }

    .logo-graphic-container {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 10px 15px;
        width: 100%;
        max-width: 100%;
    }

    .nav-logo {
        font-size: 1.3rem;
        padding-right: 10px;
        margin-right: 0;
        border-right: none;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
        margin-bottom: 5px;
    }

    .nav-logo-img {
        height: 40px;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    .nav-link.active::before {
        width: 25px;
        height: 2px;
        top: -6px;
    }

    .registration-headline {
        font-size: 1.6rem;
    }

    .countdown-container {
        gap: 15px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .event-description p {
        font-size: 0.95rem;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .social-text {
        width: 100%;
        order: 3;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.4rem;
        gap: 8px;
    }

    .nav-logo-img {
        height: 40px;
    }

    .nav-version {
        font-size: 1rem;
    }

    .registration-headline {
        font-size: 1.3rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .important-notice span {
        font-size: 0.8rem;
    }
}

/* Animation for countdown numbers */
@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

.countdown-item.updated .countdown-number {
    animation: pulse 0.5s ease;
}

/* Events Page Styles */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.category-intro-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(244, 179, 21, 0.3);
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 45px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.category-intro-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.intro-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.intro-points li {
    flex: 1 1 220px;
    background: rgba(244, 179, 21, 0.1);
    border: 1px solid rgba(244, 179, 21, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-points i {
    color: var(--yellow);
}

.event-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.event-category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.event-category-card:hover::before {
    transform: scaleX(1);
}

.event-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(235, 88, 25, 0.3);
    border-color: var(--orange);
}

.category-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.category-icon-wrapper.scientific {
    background: linear-gradient(135deg, rgba(235, 88, 25, 0.2), rgba(244, 179, 21, 0.2));
    border: 2px solid var(--orange);
    color: var(--orange);
}

.category-icon-wrapper.workshops {
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.2), rgba(211, 175, 133, 0.2));
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.category-icon-wrapper.academic {
    background: linear-gradient(135deg, rgba(211, 175, 133, 0.2), rgba(128, 87, 24, 0.2));
    border: 2px solid var(--light-brown);
    color: var(--light-brown);
}

.event-category-card:hover .category-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(235, 88, 25, 0.4);
}

.category-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--yellow);
    font-size: 1rem;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    align-self: center;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.category-btn:hover::before {
    width: 300px;
    height: 300px;
}

.category-btn span,
.category-btn i {
    position: relative;
    z-index: 1;
}

.category-btn.scientific-btn {
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: var(--light-text);
    border: 2px solid var(--orange);
}

.category-btn.scientific-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(235, 88, 25, 0.5);
}

.category-btn.workshops-btn {
    background: linear-gradient(135deg, var(--yellow), #ffc947);
    color: var(--dark-bg);
    border: 2px solid var(--yellow);
}

.category-btn.workshops-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 179, 21, 0.5);
}

.category-btn.academic-btn {
    background: linear-gradient(135deg, var(--light-brown), #e0c4a0);
    color: var(--dark-bg);
    border: 2px solid var(--light-brown);
}

.category-btn.academic-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 175, 133, 0.5);
}

.events-notice {
    background: rgba(244, 179, 21, 0.1);
    border-left: 4px solid var(--yellow);
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

.events-notice i {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-top: 2px;
}

.notice-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex: 1;
}

.notice-content strong {
    color: var(--yellow);
    font-weight: 600;
}

/* Responsive Design for Events Page */
@media (max-width: 1024px) {
    .event-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .academic-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 900px) {
    .academic-events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .event-categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-category-card {
        padding: 30px 20px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-description {
        font-size: 0.95rem;
    }

    .category-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .category-intro-card {
        padding: 25px;
    }

    .intro-points {
        flex-direction: column;
    }

    .event-detail-wrapper {
        padding: 25px;
    }

    .event-hero-card {
        flex-direction: column;
        text-align: center;
    }

    .event-hero-content h1 {
        font-size: 1.8rem;
    }

    .event-fee-card {
        width: 100%;
    }

    .event-cta-card {
        flex-direction: column;
        text-align: center;
    }

    .event-cta-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .category-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .events-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* Breadcrumb Container */
.breadcrumb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    flex: 1;
}

.breadcrumb a {
    color: var(--light-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--yellow);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: var(--light-text);
    font-weight: 500;
}

/* Category Header Icon */
.category-header-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
}

.category-header-icon.scientific {
    background: linear-gradient(135deg, rgba(235, 88, 25, 0.2), rgba(244, 179, 21, 0.2));
    border: 3px solid var(--orange);
    color: var(--orange);
    box-shadow: 0 10px 30px rgba(235, 88, 25, 0.3);
}

.category-header-icon.workshops {
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.2), rgba(211, 175, 133, 0.2));
    border: 3px solid var(--yellow);
    color: var(--yellow);
    box-shadow: 0 10px 30px rgba(244, 179, 21, 0.3);
}

.category-header-icon.academic {
    background: linear-gradient(135deg, rgba(211, 175, 133, 0.2), rgba(128, 87, 24, 0.2));
    border: 3px solid var(--light-brown);
    color: var(--light-brown);
    box-shadow: 0 10px 30px rgba(211, 175, 133, 0.3);
}

/* Events Grid */
.events-grid,
.event-categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.event-category-card {
    flex: 1 1 300px;
    max-width: 400px;
    min-width: 280px;
}

.scientific-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.academic-events-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(235, 88, 25, 0.3);
    border-color: var(--orange);
}

.event-card-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.event-card-header.scientific {
    background: linear-gradient(135deg, rgba(235, 88, 25, 0.3), rgba(244, 179, 21, 0.3));
    color: var(--orange);
}

.event-card-header.workshops {
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.3), rgba(211, 175, 133, 0.3));
    color: var(--yellow);
}

.event-card-header.academic {
    background: linear-gradient(135deg, rgba(211, 175, 133, 0.3), rgba(128, 87, 24, 0.3));
    color: var(--light-brown);
}

.event-card-body {
    padding: 25px;
    flex: 1;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.event-fee-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(244, 179, 21, 0.15);
    border: 1px solid rgba(244, 179, 21, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--yellow);
}

.event-fee-chip i {
    font-size: 0.85rem;
}

.event-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.event-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-highlights i {
    color: var(--yellow);
    font-size: 0.9rem;
}

.event-category-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-category-badge.scientific {
    background: rgba(235, 88, 25, 0.2);
    color: var(--orange);
    border: 1px solid var(--orange);
}

.event-category-badge.workshops {
    background: rgba(244, 179, 21, 0.2);
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.event-category-badge.academic {
    background: rgba(211, 175, 133, 0.2);
    color: var(--light-brown);
    border: 1px solid var(--light-brown);
}

.event-card-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(211, 175, 133, 0.2);
}

.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 88, 25, 0.5);
}

/* Coming Soon Container */
.coming-soon-container {
    text-align: center;
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(211, 175, 133, 0.3);
    border-radius: 20px;
    margin-bottom: 50px;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.2), rgba(235, 88, 25, 0.2));
    border-radius: 50%;
    border: 3px solid var(--yellow);
    color: var(--yellow);
    font-size: 3.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coming-soon-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.coming-soon-notice {
    background: rgba(244, 179, 21, 0.1);
    border-left: 4px solid var(--yellow);
    border-radius: 8px;
    padding: 20px 25px;
    margin: 30px auto 0;
    max-width: 600px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.coming-soon-notice i {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-top: 2px;
}

.coming-soon-notice p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.coming-soon-notice strong {
    color: var(--yellow);
    font-weight: 600;
}

.event-detail-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(211, 175, 133, 0.4);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 50px;
}

.event-hero-card {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(211, 175, 133, 0.2);
    margin-bottom: 30px;
}

.event-hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.2), rgba(235, 88, 25, 0.2));
    border: 2px solid rgba(244, 179, 21, 0.6);
    color: var(--yellow);
}

.event-hero-icon.academic {
    background: linear-gradient(135deg, rgba(211, 175, 133, 0.2), rgba(128, 87, 24, 0.2));
    border-color: rgba(211, 175, 133, 0.6);
    color: var(--light-brown);
}

.event-hero-icon.scientific {
    background: linear-gradient(135deg, rgba(235, 88, 25, 0.2), rgba(244, 179, 21, 0.2));
    border-color: rgba(235, 88, 25, 0.6);
    color: var(--orange);
}

.event-hero-icon.workshops {
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.2), rgba(235, 88, 25, 0.2));
    border-color: rgba(244, 179, 21, 0.6);
    color: var(--yellow);
}

.event-hero-content {
    flex: 1;
}

.event-hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.event-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.event-fee-card {
    min-width: 200px;
    background: rgba(244, 179, 21, 0.12);
    border: 1px solid rgba(244, 179, 21, 0.4);
    border-radius: 18px;
    padding: 20px 25px;
    text-align: center;
}

.event-fee-card span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.event-fee-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.6rem;
    color: var(--yellow);
    letter-spacing: 1px;
}

.event-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.event-info-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.event-info-chip i {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-top: 4px;
}

.chip-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.chip-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.event-section {
    margin-bottom: 35px;
}

.event-section h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--yellow);
}

.event-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.event-rules-list,
.event-notes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-rules-list li,
.event-notes-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(211, 175, 133, 0.2);
    border-radius: 12px;
    padding: 12px 15px;
}

.event-rules-list i,
.event-notes-list i {
    color: var(--yellow);
    margin-top: 4px;
}

.event-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-domain-pill {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(244, 179, 21, 0.4);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(244, 179, 21, 0.12);
    font-size: 0.9rem;
}

.event-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(244, 179, 21, 0.4);
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.15), rgba(235, 88, 25, 0.15));
}

.event-cta-card h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.event-cta-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.event-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(235, 88, 25, 0.5);
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 800px;
}

.coming-soon-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(211, 175, 133, 0.2);
}

.coming-soon-feature i {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 5px;
}

.coming-soon-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.coming-soon-actions {
    margin-top: 40px;
}

.back-to-events-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.back-to-events-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(235, 88, 25, 0.5);
}

/* Top Back Button */
.top-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(211, 175, 133, 0.3);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    color: var(--yellow);
    transform: translateX(-3px);
}

.top-back-btn i {
    font-size: 0.9rem;
}

/* Back Button Container */
.back-button-container {
    text-align: center;
    margin-bottom: 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(211, 175, 133, 0.3);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    color: var(--yellow);
    transform: translateX(-5px);
}

/* Responsive Design for Event Pages */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .coming-soon-title {
        font-size: 1.8rem;
    }

    .coming-soon-message {
        font-size: 1rem;
        padding: 0 20px;
    }

    .coming-soon-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .coming-soon-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-header-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .breadcrumb-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-back-btn {
        align-self: flex-end;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Day Selector - Flowchart Style */
.day-selector-container {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.day-selector {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.day-selector-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(211, 175, 133, 0.3);
    border-radius: 15px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    font-family: 'Poppins', sans-serif;
}

.day-selector-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(244, 179, 21, 0.5);
    transform: translateY(-3px);
}

.day-selector-btn.active {
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.2), rgba(235, 88, 25, 0.2));
    border-color: var(--yellow);
    box-shadow: 0 8px 25px rgba(244, 179, 21, 0.4);
}

.day-selector-btn.active .day-number {
    color: var(--yellow);
    font-size: 2rem;
}

.day-selector-btn.active .day-label {
    color: var(--yellow);
    font-weight: 600;
}

.day-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.day-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

/* Timeline Container */
.timeline-container {
    margin: 40px 0;
}

.workshop-timeline {
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-day-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.15), rgba(235, 88, 25, 0.15));
    border-radius: 20px;
    border: 2px solid rgba(244, 179, 21, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.day-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.day-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--yellow);
    color: var(--dark-bg);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-day-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Timeline Flow - Vertical */
.timeline-flow-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Timeline Node (Session) */
.timeline-node {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(211, 175, 133, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-node:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(235, 88, 25, 0.2);
    transform: translateY(-5px);
}

.timeline-node-fn {
    border-left: 4px solid var(--yellow);
}

.timeline-node-an {
    border-left: 4px solid var(--orange);
}

.timeline-node-full {
    border-left: 4px solid var(--light-brown);
}

/* Session Header */
.timeline-session-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(211, 175, 133, 0.2);
    flex-wrap: wrap;
    gap: 15px;
}

.session-time-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(244, 179, 21, 0.15);
    border: 1px solid rgba(244, 179, 21, 0.4);
    border-radius: 50px;
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.95rem;
}

.session-time-badge i {
    font-size: 1rem;
}

.session-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.workshop-count {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Timeline Connector - Vertical */
.timeline-connector-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    width: 100%;
    position: relative;
}

.connector-line-vertical {
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, var(--yellow), var(--orange));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(244, 179, 21, 0.6);
}

.connector-arrow-vertical {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 179, 21, 0.2);
    border: 3px solid var(--yellow);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 1.5rem;
    margin-top: -25px;
    animation: pulse-arrow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(244, 179, 21, 0.4);
}

@keyframes pulse-arrow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(244, 179, 21, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(244, 179, 21, 0.6);
    }
}

/* Timeline Workshops Grid */
.timeline-workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Timeline Workshop Card */
.timeline-workshop-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 175, 133, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.timeline-workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(235, 88, 25, 0.3);
    border-color: var(--orange);
}

.full-day-workshop {
    border: 2px solid var(--light-brown);
    position: relative;
}

.full-day-badge-card {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--light-brown);
    color: var(--dark-bg);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(128, 87, 24, 0.4);
}

.workshop-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.1), rgba(235, 88, 25, 0.1));
    border-bottom: 1px solid rgba(211, 175, 133, 0.2);
}

.workshop-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 179, 21, 0.2);
    border: 2px solid var(--yellow);
    border-radius: 12px;
    color: var(--yellow);
    font-size: 1.5rem;
}

.workshop-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--yellow);
}

.workshop-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.workshop-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.workshop-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.meta-item i {
    color: var(--yellow);
    width: 16px;
    font-size: 0.9rem;
}

.workshop-card-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(211, 175, 133, 0.2);
}

.workshop-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.workshop-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 88, 25, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-workshops-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .day-selector {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .day-selector-btn {
        width: 100%;
    }

    .timeline-day-header h2 {
        font-size: 2rem;
    }

    .session-title {
        font-size: 1.4rem;
    }

    .timeline-session-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-workshops-grid {
        grid-template-columns: 1fr;
    }

    .timeline-node {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .day-selector {
        padding: 10px;
    }

    .day-selector-btn {
        padding: 15px 20px;
    }

    .day-number {
        font-size: 1.5rem;
    }

    .timeline-day-header {
        padding: 20px;
    }

    .timeline-day-header h2 {
        font-size: 1.6rem;
    }
}

/* Workshop Details Page Styles */
.workshop-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.loading-state,
.error-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--light-text);
}

.loading-state i,
.error-state i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 20px;
}

.error-state p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.workshop-detail-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(211, 175, 133, 0.4);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.workshop-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(211, 175, 133, 0.2);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.workshop-detail-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.2), rgba(235, 88, 25, 0.2));
    border: 3px solid var(--yellow);
    color: var(--yellow);
    flex-shrink: 0;
}

.workshop-detail-title-section {
    flex: 1;
    min-width: 300px;
}

.full-day-badge-large {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-brown);
    color: var(--dark-bg);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.workshop-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.workshop-detail-meta-header {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.workshop-category-badge {
    padding: 8px 18px;
    background: rgba(244, 179, 21, 0.2);
    border: 1px solid var(--yellow);
    border-radius: 20px;
    color: var(--yellow);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.workshop-day-badge {
    padding: 8px 18px;
    background: rgba(235, 88, 25, 0.2);
    border: 1px solid var(--orange);
    border-radius: 20px;
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 600;
}

.workshop-detail-price-card {
    min-width: 200px;
    background: rgba(244, 179, 21, 0.12);
    border: 2px solid rgba(244, 179, 21, 0.4);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 1px;
}

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

.quick-info-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.quick-info-item i {
    font-size: 1.8rem;
    color: var(--yellow);
    margin-top: 4px;
    flex-shrink: 0;
}

.quick-info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quick-info-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.quick-info-value {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.workshop-detail-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--yellow);
    font-weight: 600;
}

.workshop-description-full {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
}

.workshop-contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.contact-item-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 179, 21, 0.2);
    border: 2px solid var(--yellow);
    border-radius: 12px;
    color: var(--yellow);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 500;
}

.contact-value a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.workshop-notice-card {
    background: rgba(244, 179, 21, 0.15);
    border-left: 4px solid var(--yellow);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

.workshop-notice-card i {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.workshop-notice-card .notice-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex: 1;
}

.workshop-notice-card strong {
    color: var(--yellow);
    font-weight: 600;
}

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

.workshop-back-btn,
.workshop-register-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.workshop-back-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(211, 175, 133, 0.3);
    color: var(--light-text);
}

.workshop-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    color: var(--yellow);
    transform: translateX(-5px);
}

.workshop-register-btn {
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: var(--light-text);
    border: 2px solid var(--orange);
}

.workshop-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(235, 88, 25, 0.5);
}

@media (max-width: 768px) {
    .workshop-detail-wrapper {
        padding: 25px;
    }

    .workshop-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .workshop-detail-icon {
        margin: 0 auto;
    }

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

    .workshop-quick-info-grid {
        grid-template-columns: 1fr;
    }

    .workshop-contact-card {
        grid-template-columns: 1fr;
    }

    .workshop-action-buttons {
        flex-direction: column;
    }

    .workshop-back-btn,
    .workshop-register-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Delegate Pass Page Styles */
.delegate-header-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(244, 179, 21, 0.2), rgba(235, 88, 25, 0.2));
    border: 3px solid var(--yellow);
    color: var(--yellow);
    box-shadow: 0 10px 30px rgba(244, 179, 21, 0.3);
}

.delegate-notice {
    background: rgba(244, 179, 21, 0.15);
    border-left: 4px solid var(--yellow);
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 50px;
}

.delegate-notice i {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-top: 2px;
}

.delegate-notice .notice-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex: 1;
}

.delegate-notice strong {
    color: var(--yellow);
    font-weight: 600;
}

/* Benefits Section */
.delegate-benefits-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(235, 88, 25, 0.3);
    border-color: var(--orange);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(235, 88, 25, 0.2), rgba(244, 179, 21, 0.2));
    border: 2px solid var(--orange);
    color: var(--orange);
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Registration Form Section */
.delegate-registration-section {
    margin-bottom: 60px;
}

.registration-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.registration-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.registration-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.delegate-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--yellow);
    font-size: 0.9rem;
}

.required {
    color: var(--orange);
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--light-text);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(235, 88, 25, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--light-text);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--orange);
}

.terms-link {
    color: var(--yellow);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--orange);
}

.form-actions {
    margin-top: 10px;
}

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(235, 88, 25, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--orange), #ff6b35);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #ff6b35, var(--orange));
}

/* Cart Success Message */
.cart-success-message {
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid rgba(76, 175, 80, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 700px;
    animation: slideIn 0.5s ease-out;
}

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

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

.success-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    flex-shrink: 0;
}

.success-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 8px;
}

.success-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.continue-shopping-btn,
.view-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.continue-shopping-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(211, 175, 133, 0.3);
    color: var(--light-text);
}

.continue-shopping-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    color: var(--yellow);
    transform: translateX(-3px);
}

.view-cart-btn {
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: var(--light-text);
    border: 2px solid var(--orange);
}

.view-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(235, 88, 25, 0.5);
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(235, 88, 25, 0.3);
    border-color: var(--orange);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: var(--yellow);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-text);
}

.pricing-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-feature i {
    color: var(--yellow);
    font-size: 1.1rem;
}

/* Responsive Design for Delegate Pass */
@media (max-width: 768px) {
    .registration-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .registration-title {
        font-size: 1.6rem;
    }

    .delegate-header-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* About Page Styles */
.about-section {
    margin-bottom: 80px;
}

.about-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.about-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-logo-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(211, 175, 133, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.about-logo-emblem {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(244, 179, 21, 0.3));
}

/* JIPMER Section */
.jipmer-section {
    margin-bottom: 80px;
}

.jipmer-header {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.jipmer-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}

.jipmer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jipmer-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
    margin: 0;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-logo-container {
        order: -1;
    }

    .about-logo-placeholder {
        max-width: 300px;
    }

    .jipmer-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .jipmer-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .jipmer-header {
        padding: 0 20px;
    }

    .jipmer-content p {
        font-size: 1rem;
    }
}

/* Authentication Pages Styles */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-page .container {
    flex: 1;
}

.auth-container {
    max-width: 500px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.auth-card {
    width: 100%;
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(211, 175, 133, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
    gap: 15px;
}

.auth-logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(211, 175, 133, 0.3);
}

.auth-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.auth-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    text-align: center;
    letter-spacing: 1px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(211, 175, 133, 0.2);
    border-radius: 12px;
    color: var(--light-text);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

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

.auth-input:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 0 3px rgba(244, 179, 21, 0.1);
}

.forgot-password-link {
    align-self: flex-end;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--yellow);
}

.auth-primary-btn {
    width: 100%;
    padding: 14px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 12px;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-primary-btn:hover {
    background: rgba(30, 30, 30, 0.95);
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 179, 21, 0.2);
}

.auth-primary-btn:active {
    transform: translateY(0);
}

.auth-secondary-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: rgba(235, 88, 25, 0.12);
    border: 1px dashed rgba(244, 179, 21, 0.6);
    color: var(--yellow);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-secondary-btn:hover {
    background: rgba(244, 179, 21, 0.1);
    border-color: rgba(244, 179, 21, 0.9);
    transform: translateY(-1px);
}

/* Forgot Password Modal */
.forgot-password-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.forgot-password-modal-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(211, 175, 133, 0.3);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.forgot-password-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.forgot-password-modal-header h2 {
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.forgot-password-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.forgot-password-close:hover {
    color: var(--yellow);
}

.forgot-password-step {
    animation: fadeIn 0.3s ease;
}

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

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

.form-label {
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.auth-info-alert {
    background: rgba(244, 179, 21, 0.08);
    border: 1px solid rgba(244, 179, 21, 0.3);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 20px;
    color: var(--light-text);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.auth-info-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    opacity: 0.8;
}

.auth-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(211, 175, 133, 0.2);
}

.auth-divider span {
    padding: 0 15px;
}

.auth-google-btn {
    width: 100%;
    padding: 14px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(211, 175, 133, 0.2);
    border-radius: 12px;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.auth-google-btn:hover {
    background: rgba(30, 30, 30, 0.95);
    border-color: rgba(211, 175, 133, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.auth-google-btn:active {
    transform: translateY(0);
}

.google-icon {
    flex-shrink: 0;
}

.auth-footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 10px;
}

.auth-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: var(--yellow);
    text-decoration: underline;
}

.checkbox-group {
    margin: 5px 0;
}

.checkbox-group .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--yellow);
    flex-shrink: 0;
}

.terms-link {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--orange);
    text-decoration: underline;
}

/* Engagement Section */
.auth-engagement {
    width: 100%;
    text-align: left;
    padding: 20px 0;
}

.engagement-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.engagement-text strong {
    color: var(--light-text);
    font-weight: 600;
}

.engagement-avatars {
    display: flex;
    gap: -10px;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    border: 2px solid var(--dark-bg);
    margin-left: -10px;
    position: relative;
    overflow: hidden;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.avatar:nth-child(1) {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.avatar:nth-child(2) {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.avatar:nth-child(3) {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.avatar:nth-child(4) {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
    .auth-container {
        margin: 40px auto;
        padding: 0 15px;
    }

    .auth-card {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .auth-brand {
        font-size: 1.5rem;
    }

    .auth-logo-icon {
        width: 50px;
        height: 50px;
    }

    .auth-input,
    .auth-primary-btn,
    .auth-google-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .engagement-text {
        font-size: 0.9rem;
    }

    .avatar {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 25px 20px;
    }

    .auth-brand {
        font-size: 1.3rem;
    }
}