:root {
    --primary-color: #233886;
    --primary-dark: #1a2a65;
    --primary-light: #2e4aa8;
    --accent-color: #ff0037;
    --accent-orange: #1bb7ff;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
    --light-text: #ffffff;
    --gray-text: #b8c1ec;
    --border-color: #2e3856;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--darker-bg);
    color: var(--light-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    background: transparent;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: transparent;
    backdrop-filter: blur(10px);
}

.navbar-brand .brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    width: auto;
    height: auto;
}

.navbar-brand .navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

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

.navbar.scrolled .navbar-logo {
    height: 50px;
}

.navbar-brand .highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-color);
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.nav-link.btn-register {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-orange));
    border-radius: 25px;
    padding: 0.6rem 1.5rem !important;
    color: var(--darker-bg) !important;
    font-weight: 700;
}

.nav-link.btn-register:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--accent-orange),var(--accent-color));
    color: var(--light-text) !important;
    box-shadow: 0 5px 20px rgba(255, 0, 64, 0.5);
}

.social-links-menu {
    background: var(--primary-dark);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
    color: var(--light-text);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    padding-left: 1.5rem;
}

/* ===================================
   Hero Section - Code Blue Style
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    background: #000000;
    overflow: hidden;
    padding: 0;
}

/* Hero Slideshow Background */
.hero-slideshow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow-bg .slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
}

.hero-slideshow-bg .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    left: 100%;
    transition: left 1.5s ease-in-out;
}

.hero-slideshow-bg .slide.active {
    left: 0;
    z-index: 1;
}

.hero-slideshow-bg .slide.slide-out {
    left: -100%;
}

.hero-slideshow-bg .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 4rem;
    color: #ffffff;
}

/* Main Hero Title */
.hero-main-title {
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

/* Event Info */
.hero-event-info {
    margin-bottom: 3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-family: 'Rajdhani', sans-serif;
}

.hero-dates {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    font-family: 'Rajdhani', sans-serif;
}

/* Hero Social Links */
.hero-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Slideshow Navigation Buttons */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.slide-nav.prev {
    left: 2rem;
}

.slide-nav.next {
    right: 2rem;
}

.slide-nav i {
    font-size: 1.2rem;
}

/* Slideshow Indicators */
.slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-dates {
        font-size: 1rem;
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
    }
    
    .slide-nav.prev {
        left: 1rem;
    }
    
    .slide-nav.next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-dates {
        font-size: 0.95rem;
    }
    
    .hero-content {
        padding-bottom: 3rem;
    }
    
    .hero-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .social-icons a {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-dates {
        font-size: 0.9rem;
    }
    
    .slide-nav {
        width: 35px;
        height: 35px;
    }
    
    .slide-nav i {
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Slideshow Navigation Buttons */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev {
    left: 1rem;
}

.slide-nav.next {
    right: 1rem;
}

/* Slideshow Indicators */
.slide-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}

/* Responsive Slideshow */
@media (max-width: 768px) {
    .slideshow-wrapper {
        height: 60vh;
        min-height: 350px;
    }
    
    .slide-nav {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
    }
    
    .slide-nav.prev {
        left: 0.5rem;
    }
    
    .slide-nav.next {
        right: 0.5rem;
    }
}

@media (max-width: 576px) {
    .slideshow-wrapper {
        height: 50vh;
        min-height: 300px;
    }
    
    .slide-nav {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
}

.hero-main-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    transition: all 0.5s ease;
    animation: fadeInScale 1.5s ease-in-out;
}

.hero-main-image:hover {
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
    transform: scale(1.05);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Old styles - keeping for compatibility */
.hero-title {
    display: none;
}

.hero-title .year {
    display: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.detail-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    z-index: 3;
    position: relative;
}

.btn-primary-custom {
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 3rem;
    border: 2px solid #ffffff;
    border-radius: 0;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.btn-primary-custom:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: transparent;
    color: #ffffff;
    padding: 1.2rem 3rem;
    border: 2px solid #ffffff;
    border-radius: 0;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.btn-outline-custom:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

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

/* ===================================
   Section Styles
   =================================== */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-orange));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

/* ===================================
   Theme Section
   =================================== */
.theme-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--darker-bg) 100%);
    padding: 6rem 0;
}

.theme-title {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.theme-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.theme-highlights {
    margin-top: 3rem;
}

.highlight-card {
    background: rgba(35, 56, 134, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    background: rgba(35, 56, 134, 0.5);
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.highlight-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--gray-text);
    font-size: 1rem;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(27, 183, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(27, 183, 255, 0.4);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.about-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(27, 183, 255, 0.2);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(27, 183, 255, 0.3);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.expectation-card {
    background: linear-gradient(135deg, rgba(35, 56, 134, 0.3), rgba(10, 14, 39, 0.5));
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.expectation-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-orange));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.expectation-card:hover::before {
    opacity: 0.3;
}

.expectation-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 40px rgba(27, 183, 255, 0.3);
}

.expectation-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.expectation-card:hover .expectation-icon {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.expectation-card h4 {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.expectation-card p {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
}

.legacy-box {
    background: linear-gradient(135deg, rgba(255, 0, 55, 0.1), rgba(35, 56, 134, 0.2));
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(255, 0, 55, 0.2);
}

.legacy-box p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legacy-box p:last-child {
    margin-bottom: 0;
}

.about-cta {
    background: linear-gradient(135deg, rgba(27, 183, 255, 0.1), rgba(35, 56, 134, 0.2));
    border: 2px solid var(--accent-orange);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(27, 183, 255, 0.2);
}

.about-cta h3 {
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
}

.about-cta strong {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cyber-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    border: 3px solid var(--accent-color);
    color: var(--light-text) !important;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 0, 55, 0.4);
}

.cyber-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color)) !important;
    border-color: var(--accent-orange);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 0, 55, 0.6);
}

.cyber-btn i {
    margin-right: 10px;
}

.organizer-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.organizer-info p {
    color: var(--gray-text);
    font-size: 1rem;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-subtitle {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .expectation-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .legacy-box, .about-cta {
        padding: 2rem 1.5rem;
    }
    
    .cyber-btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

/* ===================================
   News Section
   =================================== */
.news-section {
    background: var(--dark-bg);
}

.news-card {
    background: rgba(35, 56, 134, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    border-color: var(--accent-color);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--darker-bg);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.news-content p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    color: var(--accent-orange);
}

/* ===================================
   Speakers Section
   =================================== */
.speakers-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--primary-dark) 100%);
}

.speaker-card {
    background: rgba(35, 56, 134, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

.speaker-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

.speaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.speaker-card:hover .speaker-overlay {
    opacity: 0.85;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 55px;
    height: 55px;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.speaker-info {
    padding: 1.5rem;
    text-align: center;
}

.speaker-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.speaker-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.speaker-company {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* ===================================
   Villages Section
   =================================== */
.villages-section {
    background: var(--dark-bg);
}

.village-card {
    background: rgba(35, 56, 134, 0.2);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.village-card:hover {
    background: rgba(35, 56, 134, 0.4);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.village-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.village-card:hover .village-icon {
    transform: rotate(360deg);
    box-shadow: 0 0 30px var(--accent-color);
}

.village-icon i {
    font-size: 2.5rem;
    color: var(--darker-bg);
}

.village-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.village-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* ===================================
   Schedule Section
   =================================== */
.schedule-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--darker-bg) 100%);
}

.schedule-tabs .nav-pills .nav-link {
    background: rgba(35, 56, 134, 0.3);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.schedule-tabs .nav-pills .nav-link:hover {
    background: rgba(35, 56, 134, 0.5);
    border-color: var(--accent-color);
}

.schedule-tabs .nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.schedule-item {
    background: rgba(35, 56, 134, 0.2);
    border-left: 4px solid var(--accent-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(35, 56, 134, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.schedule-time {
    min-width: 120px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
}

.schedule-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.speaker-name {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.schedule-content p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* ===================================
   Sponsors Section
   =================================== */
.sponsors-section {
    background: var(--dark-bg);
}

.sponsor-tier {
    margin-bottom: 3rem;
}

.tier-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.sponsor-card.platinum {
    border: 3px solid #E5E4E2;
    box-shadow: 0 5px 20px rgba(229, 228, 226, 0.3);
}

.sponsor-card.gold {
    border: 3px solid #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.sponsor-card.silver {
    border: 3px solid #C0C0C0;
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.3);
}

/* ===================================
   Registration Section
   =================================== */
.register-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--primary-dark) 100%);
}

.pricing-card {
    background: rgba(35, 56, 134, 0.2);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.4);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    background: rgba(35, 56, 134, 0.4);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-orange), #ff4500);
    color: var(--light-text);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gray-text);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(46, 56, 86, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li i {
    font-size: 1.2rem;
}

.pricing-features li .fa-check {
    color: #00ff88;
}

.pricing-features li .fa-times {
    color: #ff4444;
}

.btn-pricing {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    color: var(--light-text);
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
    color: var(--light-text);
    text-decoration: none;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--dark-bg);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--gray-text);
    margin: 0;
}

.contact-section .social-links {
    display: flex;
    gap: 1rem;
}

.contact-section .social-links a {
    width: 50px;
    height: 50px;
    background: rgba(35, 56, 134, 0.3);
    border: 1px solid var(--border-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.contact-section .social-links a:hover {
    background: var(--accent-color);
    color: var(--darker-bg);
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.contact-form .form-control {
    background: rgba(35, 56, 134, 0.2);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(35, 56, 134, 0.3);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    color: var(--light-text);
}

.contact-form .form-control::placeholder {
    color: var(--gray-text);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--darker-bg) 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer hr {
    border-color: var(--border-color);
    margin: 2rem 0;
}

.copyright {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin: 0;
}
.footer-logo {
    max-width: 250px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}
/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    color: var(--light-text);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-title .year {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .theme-title {
        font-size: 2.5rem;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .year {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .theme-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .schedule-tabs .nav-pills .nav-link {
        margin: 0.25rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand .brand-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .year {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

/* ===================================
   Animations
   =================================== */

/* Glitch Effect */
@keyframes glitchText {
    0%, 90%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitchTop {
    0%, 90%, 100% {
        transform: translate(0);
    }
    10% {
        transform: translate(-5px, -5px);
    }
    20% {
        transform: translate(5px, 5px);
    }
    30% {
        transform: translate(-3px, 3px);
    }
    40% {
        transform: translate(3px, -3px);
    }
}

@keyframes glitchBottom {
    0%, 90%, 100% {
        transform: translate(0);
    }
    15% {
        transform: translate(5px, -5px);
    }
    25% {
        transform: translate(-5px, 5px);
    }
    35% {
        transform: translate(3px, 3px);
    }
    45% {
        transform: translate(-3px, -3px);
    }
}

/* Neon Pulse Effect */
@keyframes neonPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--accent-color),
            0 0 20px var(--accent-color),
            0 0 30px var(--accent-color),
            0 0 40px var(--primary-color),
            0 0 70px var(--primary-color);
    }
    50% {
        text-shadow: 
            0 0 20px var(--accent-color),
            0 0 30px var(--accent-color),
            0 0 40px var(--accent-color),
            0 0 50px var(--primary-color),
            0 0 80px var(--primary-color),
            0 0 100px var(--primary-color);
    }
}

/* Neon Glow for Year */
@keyframes neonGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--accent-orange),
            0 0 20px var(--accent-orange),
            0 0 30px var(--accent-color);
    }
    50% {
        text-shadow: 
            0 0 20px var(--accent-orange),
            0 0 30px var(--accent-orange),
            0 0 40px var(--accent-color),
            0 0 50px var(--accent-color);
    }
}

/* Typewriter Effect */
@keyframes typing {
    from { 
        width: 0;
    }
    to { 
        width: 100%;
    }
}

/* Typewriter Effect for Year */
@keyframes typing-year {
    from { 
        width: 0;
    }
    to { 
        width: 100%;
    }
}

/* The typewriter cursor blink effect */
@keyframes blink-caret {
    from, to { 
        border-color: transparent;
    }
    50% { 
        border-color: #0047AB;
    }
}

/* Existing animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.typewrite {
  color: #fff;
  text-shadow: 0 0 20px #0047AB, 0 0 40px #0047AB, 0 0 60px #0047AB;
  font-size: 4rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: .15em;
  border: none;
  background: none;
  text-transform: uppercase;
  line-height: 1.3;
}

.typewrite > .wrap {
  border-right: 0.1em solid #fff;
  color: #fff;
  text-shadow: 0 0 20px #0047AB, 0 0 40px #0047AB, 0 0 60px #0047AB;
  animation: blink-caret 1s step-end infinite;
}

@keyframes blink-caret {
  from, to { 
    border-color: transparent;
  }
  50% { 
    border-color: #fff;
  }
}

/* ===================================
   Enhanced Registration Form Theme
   =================================== */
.registration-form-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.registration-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(35, 56, 134, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.registration-form-container {
    /* background: rgba(35, 56, 134, 0.2); */
    backdrop-filter: blur(20px);
    /* border: 1px solid var(--border-color); */
    /* box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6); */
    padding: 50px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.form-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 55, 0.2);
    border: 2px solid #ff0037;
    color: #ff0037;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.form-close-btn:hover {
    background: #ff0037;
    color: #fff;
    transform: rotate(90deg);
}

.form-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 55, 0.5);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 35px;
}

.registration-form-section .form-label {
    color: var(--light-text);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.registration-form-section .form-control,
.registration-form-section .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.registration-form-section .form-control:hover,
.registration-form-section .form-select:hover {
    border-color: var(--accent-color);
}

.registration-form-section .form-control:focus,
.registration-form-section .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 0, 55, 0.3);
    color: #fff;
    outline: none;
}

.registration-form-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.registration-form-section .form-control[readonly] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    cursor: not-allowed;
}

.payment-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
}

.section-heading {
    color: #ff0037;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 55, 0.5);
}

.registration-form-section .alert-info {
    background: rgba(35, 56, 134, 0.3);
    border: 1px solid var(--accent-orange);
    color: var(--light-text);
    font-family: 'Rajdhani', sans-serif;
    border-radius: 10px;
    padding: 15px 20px;
}

.btn-register-cybercon {
    background: linear-gradient(135deg, #233886, #ff0037) !important;
    border: 3px solid #ff0037;
    color: #fff !important;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 60px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 0, 55, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

.btn-register-cybercon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-register-cybercon:hover::before {
    left: 100%;
}

.btn-register-cybercon:hover {
    background: linear-gradient(135deg, #ff0037, #233886) !important;
    border-color: #00ffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 0, 55, 0.6);
    color: #fff !important;
}

.btn-register-cybercon:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-register-cybercon i {
    margin-right: 10px;
}

#form-alert-container .alert {
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
    }
    
    .registration-form-container {
        padding: 30px 20px;
    }
    
    .form-close-btn {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .registration-form-section .form-label {
        font-size: 0.9rem;
    }
    
    .registration-form-section .form-control,
    .registration-form-section .form-select {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    
    .section-heading {
        font-size: 1.2rem;
    }
    
    .btn-register-cybercon {
        padding: 15px 30px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .payment-section {
        padding: 20px 15px;
    }
    
    .alert-info {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 1.3rem;
    }
    
    .registration-form-container {
        padding: 25px 15px;
    }
    
    .registration-form-section .form-control,
    .registration-form-section .form-select {
        font-size: 0.9rem;
    }
    
    .btn-register-cybercon {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* ===================================
   Success Modal Styling
   =================================== */
.success-modal-content {
    background: linear-gradient(135deg, #0a0e27, #1a1f3a);
    border: 2px solid #ff0037;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(255, 0, 55, 0.3), 0 0 50px rgba(255, 0, 55, 0.1);
    overflow: hidden;
}

.success-modal-header {
    background: linear-gradient(135deg, #233886, #b31d4a);
    border-bottom: none;
    padding: 25px 35px;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.success-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 0;
}

.success-modal-title i {
    color: #00ff88;
    margin-right: 10px;
    animation: pulse-success 2s infinite;
}

.success-modal-body {
    background: rgba(10, 14, 39, 0.98);
    padding: 50px 40px !important;
}

.ticket-display-box {
    background: rgba(27, 183, 255, 0.03);
    border: 2px solid var(--accent-orange);
    border-radius: 15px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 4px 20px rgba(27, 183, 255, 0.1);
}

.ticket-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ticket-number-display {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 25px rgba(255, 0, 55, 0.5), 0 0 50px rgba(255, 0, 55, 0.2);
    letter-spacing: 4px;
    margin: 0;
}

.success-message-box {
    margin: 35px 0 30px 0;
}

.success-text-main {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.success-text-email {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.email-highlight {
    color: var(--accent-orange);
    font-weight: 700;
}

.alert-save-ticket {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid #ffa500;
    border-radius: 10px;
    padding: 16px 24px;
    color: #ffa500;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.alert-save-ticket i {
    color: #ffa500;
    font-size: 1.2rem;
}

.success-modal-footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 2px solid var(--accent-orange);
    padding: 25px 35px;
    justify-content: center;
}

.btn-close-modal {
    background: linear-gradient(135deg, #ff0037, #233886);
    border: none;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 55, 0.3);
}

.btn-close-modal:hover {
    background: linear-gradient(135deg, #233886, #ff0037);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 55, 0.5);
}

.btn-close-modal i {
    margin-right: 10px;
}

/* ===================================
   Payment Processing Overlay
   =================================== */
.payment-processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.payment-processing-content {
    text-align: center;
    max-width: 500px;
    padding: 60px 40px;
    background: rgba(10, 14, 39, 0.9);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(255, 0, 55, 0.4);
    position: relative;
}

.payment-processing-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color), var(--accent-orange), var(--accent-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
    animation: rotate-gradient 4s linear infinite;
}

.payment-loader {
    margin-bottom: 30px;
}

.payment-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 6px solid rgba(255, 255, 255, 0.1);
    border-top: 6px solid var(--accent-color);
    border-right: 6px solid var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.payment-processing-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 0, 55, 0.6);
}

.payment-processing-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.payment-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.payment-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--accent-orange));
    border-radius: 10px;
    animation: progress-fill 3s ease-in-out infinite;
}

.payment-warning-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 20px;
}

.payment-warning-text i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Animations */
@keyframes pulse-success {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes glow-border {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes progress-fill {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* Floating Register Button */
.floating-register-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 55, 0.4), 0 0 30px rgba(255, 0, 55, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float-pulse 2s ease-in-out infinite;
}

.floating-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 0, 55, 0.6), 0 0 40px rgba(255, 0, 55, 0.4);
    border-color: var(--accent-orange);
}

.floating-register-btn i {
    font-size: 1.2rem;
}

@keyframes float-pulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Mobile responsive for floating button */
@media (max-width: 768px) {
    .floating-register-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .floating-register-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .floating-register-btn i {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .success-modal-title {
        font-size: 1.2rem;
    }
    
    .ticket-number-display {
        font-size: 2.5rem;
    }
    
    .payment-processing-content {
        padding: 40px 25px;
        max-width: 90%;
    }
    
    .payment-processing-title {
        font-size: 1.5rem;
    }
    
    .payment-spinner {
        width: 60px;
        height: 60px;
    }
}

/* ===================================
   Contributors Section
   =================================== */
.contributors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contributor-item {
    position: relative;
    transition: all 0.3s ease;
}

.contributor-item:hover {
    transform: translateY(-10px);
}

.contributor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #34495e;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contributor-item:hover .contributor-avatar {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.contributor-stats-badge {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 31, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 8px 15px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.contributor-item:hover .contributor-stats-badge {
    opacity: 1;
    visibility: visible;
    bottom: -55px;
}

.stat-line {
    font-size: 0.85rem;
    color: #ecf0f1;
    margin: 3px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-line i {
    color: #3b82f6;
    font-size: 0.9rem;
}

/* ===================================
   Footer Contributors Section
   =================================== */
.contributors-footer-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.contributors-footer-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contributor-footer-item {
    position: relative;
}

.contributor-footer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.contributor-footer-item a:hover .contributor-footer-avatar {
    border-color: var(--accent-orange);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.4);
}

.contributor-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 31, 42, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 6px;
    padding: 8px 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.contributor-footer-item:hover .contributor-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 65px;
}

.tooltip-username {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 6px;
    text-align: center;
}

.tooltip-stats {
    font-size: 0.75rem;
    color: #ecf0f1;
}

.tooltip-stats > div {
    margin: 3px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tooltip-stats i {
    color: #3b82f6;
    font-size: 0.7rem;
}

.text-success {
    color: #22c55e;
    font-weight: 600;
}

.text-danger {
    color: #ef4444;
    font-weight: 600;
}

.website-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    margin-bottom: 0;
}

.website-credit a {
    color: rgba(59, 130, 246, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-credit a:hover {
    color: var(--accent-orange);
}

/* Contributors Responsive */
@media (max-width: 768px) {
    .contributor-avatar {
        width: 60px;
        height: 60px;
    }
    .contributors-grid {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contributors-footer-title {
        font-size: 0.85rem;
    }
    .contributor-footer-avatar {
        width: 40px;
        height: 40px;
    }
    .contributor-tooltip {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}
