/* About Section */
.about {
    position: relative;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.8) 20%, 
        var(--black) 40%
    );
    padding-top: 80px;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.9) 30%,
        transparent 100%
    );
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

/* Global Styles */
:root {
    --black: #000000;
    --neon-pink: #FF00B8;
    --neon-yellow: #FFE600;
    --white: #FFFFFF;
    --dark-gray: #121212;
    --light-gray: #333333;
    --dark-blue: #0A0A20;
    --gradient-pink: linear-gradient(135deg, var(--neon-pink) 0%, rgba(255, 0, 184, 0.7) 100%);
    --gradient-yellow: linear-gradient(135deg, var(--neon-yellow) 0%, rgba(255, 230, 0, 0.7) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

section {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.mt-40 {
    margin-top: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    border: none;
    text-decoration: none; /* Dla linków */
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.5s ease;
    transform: scale(0);
    border-radius: 50px;
}

.btn.primary,
.btn-primary {
    background-color: var(--neon-pink);
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 0, 184, 0.5);
}

.btn.primary:hover,
.btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.8);
    transform: translateY(-3px);
    color: var(--white); /* Zachowanie koloru dla linków */
}

.btn.primary::before,
.btn-primary::before {
    background-color: rgba(255, 230, 0, 0.2);
}

.btn.secondary,
.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--neon-yellow);
    box-shadow: 0 0 15px rgba(255, 230, 0, 0.3);
}

.btn.secondary:hover,
.btn-secondary:hover {
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.6);
    transform: translateY(-3px);
    color: var(--white); /* Zachowanie koloru dla linków */
}

.btn.secondary::before,
.btn-secondary::before {
    background-color: rgba(255, 230, 0, 0.1);
}

.btn:hover::before {
    transform: scale(1);
}

.btn:active {
    transform: scale(0.95);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-menu li {
    margin-left: 25px;
}

.nav-menu li a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--neon-pink);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-pink);
    transition: width 0.3s ease;
}

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

.nav-menu li.active a {
    color: var(--neon-pink);
}

/* Navigation Button Styling */
.nav-btn {
    background: var(--gradient-pink) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 0 15px rgba(255, 0, 184, 0.4) !important;
    transition: all 0.3s ease !important;
    margin-left: 15px !important;
}

.nav-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(255, 0, 184, 0.6) !important;
    color: var(--white) !important;
}

.nav-btn::after {
    display: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible; /* Zmienione z hidden na visible */
    background-color: var(--black);
    left: 0;
    right: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 40%;
    background: linear-gradient(135deg, transparent 50%, var(--neon-pink) 150%);
    opacity: 0.2;
    filter: blur(50px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 40%;
    background: linear-gradient(135deg, var(--neon-yellow) 0%, transparent 150%);
    opacity: 0.2;
    filter: blur(50px);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: 
                /* Kolorowe gradienty dla efektu */
                radial-gradient(circle at 30% 30%, rgba(255, 0, 184, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 230, 0, 0.1) 0%, transparent 50%),
                /* Gradientowe ściemnianie na górze i dole - zwiększone do 15% */
                linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, transparent 15%),
                linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 15%);
    z-index: 1;
}

.hero-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

.circle1 {
    width: 600px;
    height: 600px;
    border-color: rgba(255, 0, 184, 0.2);
    top: -200px;
    left: -200px;
    box-shadow: inset 0 0 50px rgba(255, 0, 184, 0.1);
    animation: rotate 60s linear infinite;
}

.circle2 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 230, 0, 0.15);
    bottom: -100px;
    right: -100px;
    box-shadow: inset 0 0 30px rgba(255, 230, 0, 0.1);
    animation: rotate 40s linear infinite reverse;
}

.decor-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.line1 {
    width: 1px;
    height: 100%;
    right: 15%;
    top: 0;
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.2);
}

.line2 {
    height: 1px;
    width: 100%;
    top: 25%;
    left: 0;
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.neon-line {
    position: absolute;
    background-color: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--neon-pink);
    opacity: 0.4;
}

.horizontal {
    height: 1px;
    width: 100%;
    top: 80px;
}

.vertical {
    width: 1px;
    height: 100%;
    right: 80px;
}

.neon-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border-style: solid;
    border-color: var(--neon-yellow);
    border-width: 0;
    box-shadow: 0 0 15px var(--neon-yellow), 0 0 30px rgba(255, 230, 0, 0.3);
    opacity: 0.6;
}

.top-left {
    top: 30px;
    left: 30px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.top-right {
    top: 30px;
    right: 30px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.bottom-left {
    bottom: 30px;
    left: 30px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.bottom-right {
    bottom: 30px;
    right: 30px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--neon-pink) }
}

/* Hero Content Layout */
/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    padding: 8rem 2rem 0 2rem;
    margin: 0 auto;
    min-height: 80vh;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 3rem;
}

.main-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 0, 184, 0.7));
}

/* Hero Title */
.hero-text-container {
    margin-bottom: 3rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin: 2rem 0 1.5rem;
    position: relative;
    text-align: center;
}

.hero-title .highlight {
    color: var(--white);
    position: relative;
    display: block;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.hero-title .highlight-pink {
    color: var(--neon-pink);
    position: relative;
    display: block;
    text-shadow: 0 0 15px rgba(255, 0, 184, 0.6);
}

.hero-subtitle {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-yellow);
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.4);
}

/* Cities Section */
.cities {
    position: relative;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 60px 0;
    background-color: var(--black);
    z-index: 2;
    overflow: hidden;
}

.cities::before {
    content: '';
    position: absolute;
    top: -100px; /* Nakładka z sekcją hero */
    left: 0;
    width: 100vw;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--black));
    z-index: 10;
}

/* Event Info */
.hero-event-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.event-date, .event-location {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.event-divider {
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 1.5rem;
}

/* City Selection */
.hero-cities {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-city {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-city::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--neon-pink);
    transition: height 0.3s ease;
}

.hero-city:hover {
    transform: translateY(-10px);
    border-left-color: var(--neon-pink);
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 184, 0.3);
}

.hero-city:hover .city-number {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.4);
}

.hero-city:hover::before {
    height: 100%;
    box-shadow: 0 0 15px rgba(255, 0, 184, 0.5);
}

.city-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
}

.city-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.city-date {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    color: var(--neon-yellow);
    letter-spacing: 1px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Hero Buttons */
.hero-btn {
    font-family: 'Space Grotesk', sans-serif;
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background-color: var(--neon-pink);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 0, 184, 0.3);
}

.hero-btn.primary:hover {
    background-color: #ff00c2;
    box-shadow: 0 8px 25px rgba(255, 0, 184, 0.5);
    transform: translateY(-3px);
}

.hero-btn.secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: 0 5px 15px rgba(255, 230, 0, 0.2);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--neon-pink);
    animation: scrollDown 1.5s ease infinite;
}

.scroll-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(330%); }
}

.city-btn:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 0, 184, 0.1);
    border-color: var(--neon-pink);
    box-shadow: 0 5px 15px rgba(255, 0, 184, 0.3);
}

.city-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, #FF00B8, #FFE600, #FF00B8);
    background-size: 400%;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.city-btn:hover::before {
    opacity: 1;
    animation: glowing 1.5s linear infinite;
}

.city-date {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--neon-pink);
    font-weight: 400;
}

/* City Specific Styles */
.city-event-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.city-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 0, 184, 0.5);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.city-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 184, 0.7);
}

.event-date {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 230, 0, 0.5);
}

.other-cities {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.other-cities-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-right: 0.5rem;
}

.mini-city-btn {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 184, 0.3);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mini-city-btn:hover {
    background-color: rgba(255, 0, 184, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 184, 0.2);
}

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

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0.7;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--neon-yellow);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-arrows {
    margin-top: 10px;
}

.scroll-arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    margin: 0 auto 5px;
    animation: arrow-down 2s infinite;
}

.scroll-arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

@keyframes arrow-down {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 0, 184, 0.3);
    }
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
}

/* Cities Section */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.city-card {
    background-color: rgba(18, 18, 18, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.city-card:nth-child(1) {
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.2);
}

.city-card:nth-child(2) {
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

.city-card:nth-child(3) {
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.2);
}

.city-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 0, 184, 0.4);
}

.city-header {
    background: linear-gradient(45deg, rgba(18, 18, 18, 0.9), rgba(51, 51, 51, 0.8));
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.city-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.date {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--neon-pink);
    font-weight: 500;
}

.city-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.city-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.city-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.city-content li {
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.city-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-yellow);
}

.city-details-btn {
    background: none;
    border: none;
    color: var(--neon-yellow);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

.city-details-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.city-details-btn:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--neon-yellow);
}

.city-details-btn:hover i {
    transform: translateX(5px);
}

.city-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    background-color: var(--neon-pink);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    z-index: 3;
    box-shadow: 0 0 10px rgba(255, 0, 184, 0.5);
}

.city-tag:hover {
    background-color: var(--neon-yellow);
    color: var(--black);
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.5);
}

/* Venue Section */
.venue-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.venue-info {
    background-color: rgba(18, 18, 18, 0.5);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.2);
}

.venue-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
}

.venue-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.venue-info i {
    color: var(--neon-yellow);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.venue-description {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    border-left: 3px solid var(--neon-pink);
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.venue-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.venue-map {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.venue-map iframe {
    display: block;
}

/* About Section */
.about {
    position: relative;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 184, 0.1) 0%, rgba(255, 230, 0, 0.1) 100%);
    border-radius: 10px;
}

.about .highlight {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Speakers Section */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cities-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.speaker-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
}

.city-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    background-color: var(--neon-pink);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    z-index: 3;
    box-shadow: 0 0 10px rgba(255, 0, 184, 0.5);
}

.speaker-card:nth-child(even) .city-tag {
    background-color: var(--neon-yellow);
    color: var(--black);
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.5);
}

.speaker-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.speaker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(0);
    transition: transform 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.speaker-info h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.speaker-info .speaker-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s ease;
}

.speaker-info .speaker-bio {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s ease;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.speaker-card:nth-child(odd) {
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.3);
    border: 1px solid rgba(255, 0, 184, 0.1);
}

.speaker-card:nth-child(even) {
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.3);
    border: 1px solid rgba(255, 230, 0, 0.1);
}

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

/* Agenda Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-pink), var(--neon-yellow));
}

.timeline-item {
    padding-left: 90px;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 44px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    top: 5px;
}

.timeline-content {
    background-color: rgba(18, 18, 18, 0.5);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(255, 0, 184, 0.2);
}

.timeline-content .time {
    color: var(--neon-yellow);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-content h3 {
    margin-bottom: 0;
}

/* Agenda Tabs */
.agenda-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.agenda-tab {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agenda-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-pink);
    transition: left 0.3s ease;
    z-index: -1;
}

.agenda-tab:hover::before,
.agenda-tab.active::before {
    left: 0;
}

.agenda-tab:hover,
.agenda-tab.active {
    border-color: var(--neon-pink);
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.agenda-content {
    display: none;
}

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

.agenda-tba {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-tba .tba-message {
    max-width: 400px;
    margin: 0 auto;
}

.agenda-tba .tba-message i {
    font-size: 3rem;
    color: var(--neon-yellow);
    margin-bottom: 1rem;
}

.agenda-tba .tba-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.agenda-tba .tba-message p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.agenda-tba .tba-badge {
    display: inline-block;
    background: var(--gradient-yellow);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Agenda Tabs */
@media (max-width: 768px) {
    .agenda-tabs {
        gap: 15px;
        margin-bottom: 2rem;
    }
    
    .agenda-tab {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .agenda-tba {
        padding: 3rem 1.5rem;
    }
    
    .agenda-tba .tba-message i {
        font-size: 2.5rem;
    }
    
    .agenda-tba .tba-message h3 {
        font-size: 1.3rem;
    }
}

/* Navigation */
.main-nav, .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navbar .container, .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
}

/* Registration Form Section */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(18, 18, 18, 0.5);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.registration-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 184, 0.3);
}

.checkbox-group input[type="checkbox"]:checked {
    background: var(--gradient-pink);
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 184, 0.5);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group label a {
    color: var(--neon-pink);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.checkbox-group label a:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--neon-pink);
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    text-align: center;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 184, 0.5);
}

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

.form-group select option {
    background-color: var(--dark-gray);
    color: var(--white);
}

.register .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* FAQ Section */
.hero-description {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-description p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.other-cities {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-city-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--white);
    font-size: 0.9rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-city-btn:hover {
    background-color: rgba(255, 0, 184, 0.1);
    border-color: var(--neon-pink);
    transform: translateY(-3px);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(18, 18, 18, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 0, 184, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1rem;
    color: var(--neon-yellow);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: var(--black);
    position: relative;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

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

.partner-logo img {
    max-width: 300px;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.partner-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.4);
}

/* Location TBA Styles */
.location-tba {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 0, 184, 0.05), rgba(255, 230, 0, 0.05));
    border: 2px solid rgba(255, 0, 184, 0.2);
}

.tba-message {
    text-align: center;
    padding: 40px 20px;
}

.tba-message i {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    opacity: 0.7;
}

.tba-message p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.tba-label {
    display: inline-block;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 0, 184, 0.3);
}

/* Responsive Partners */
@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }
    
    .partner-logo img {
        max-width: 150px;
    }
    
    .tba-message {
        padding: 30px 15px;
    }
    
    .tba-message i {
        font-size: 2.5rem;
    }
    
    .tba-message p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 60px 0 30px;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-yellow), transparent);
    animation: pulseLine 3s infinite;
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

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

.footer-logo h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-pink);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 0, 184, 0.5);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--dark-gray);
    margin: 10% auto;
    padding: 30px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255, 0, 184, 0.3);
    position: relative;
    animation: modalOpen 0.5s ease;
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
        z-index: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 1;
        padding: 50px 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    .nav-logo {
        z-index: 2;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu li a {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-event-info {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .event-divider {
        display: none;
    }
    
    .hero-cities {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-city {
        margin-bottom: 1rem;
        width: 100%;
        padding: 1.2rem;
    }
    
    .city-name {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .decor-line {
        display: none;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 24px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-title .highlight {
        display: block;
        margin: 0.3rem 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .event-date, .event-location {
        font-size: 1rem;
    }
    
    .hero-scroll {
        display: none;
    }
}

/* City Switcher */
.city-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.city-switch-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.city-switch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.city-switch-btn:hover::before {
    left: 100%;
}

.city-switch-btn.active {
    background: rgba(255, 0, 184, 0.2);
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.3);
}

.city-switch-btn:hover {
    transform: translateY(-3px);
    border-color: var(--neon-pink);
    box-shadow: 0 5px 15px rgba(255, 0, 184, 0.2);
}

.city-switch-btn .city-number {
    font-size: 0.8rem;
    color: var(--neon-pink);
    font-weight: 600;
}

.city-switch-btn .city-name {
    font-size: 1rem;
    font-weight: 600;
}

.city-switch-btn .city-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-description {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Events Section */
.events {
    position: relative;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.95) 15%,
        rgba(0, 0, 0, 0.85) 30%, 
        var(--black) 50%
    );
    padding-top: 100px;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.98) 20%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(255, 0, 184, 0.02) 80%,
        transparent 100%
    );
    z-index: 1;
}

.events .container {
    position: relative;
    z-index: 2;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.8s ease;
}

.event-card:hover::before {
    left: 100%;
}

.event-card.active {
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 184, 0.2);
    background: rgba(255, 0, 184, 0.1);
}

.event-card.tba {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.event-card.coming-soon {
    border-color: var(--neon-yellow);
    box-shadow: 0 10px 30px rgba(255, 230, 0, 0.2);
    background: rgba(255, 230, 0, 0.05);
}

.event-card.coming-soon:hover {
    box-shadow: 0 15px 40px rgba(255, 230, 0, 0.3);
    transform: translateY(-5px);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-city h3 {
    font-size: 2rem;
    margin: 0;
    color: var(--white);
}

.event-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-status.active {
    background: var(--gradient-pink);
    color: var(--white);
}

.event-status.tba {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.event-status.coming-soon {
    background: var(--gradient-yellow);
    color: var(--black);
    font-weight: 700;
}

.event-date {
    text-align: right;
}

.date-main {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.time {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

.event-venue {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.event-venue i {
    color: var(--neon-pink);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.event-venue h4 {
    margin: 0 0 0.3rem 0;
    color: var(--white);
}

.event-venue p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.event-highlights h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.event-highlights ul {
    list-style: none;
    padding: 0;
}

.event-highlights li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.event-highlights li i {
    color: var(--neon-pink);
    width: 20px;
}

.event-teaser {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.event-teaser p {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 0;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.event-actions .btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* About Section Redesign */
.about {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.8) 20%, 
        var(--black) 40%
    );
    padding-top: 80px;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.9) 30%,
        transparent 100%
    );
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex: 0 1 300px;
    max-width: 350px;
}

.about-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 25px rgba(255, 0, 184, 0.2);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.about-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.about-cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.about-cta h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.target-audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.audience-item:hover {
    background: rgba(255, 0, 184, 0.1);
    transform: translateX(5px);
}

.audience-item i {
    color: var(--neon-pink);
    font-size: 1.2rem;
    min-width: 20px;
}

.audience-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Speakers Tabs */
.speakers-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8rem 2rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.tab-btn.active {
    background: var(--gradient-pink);
    border-color: var(--neon-pink);
    box-shadow: 0 5px 15px rgba(255, 0, 184, 0.3);
}

.tab-btn:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 184, 0.1);
}

.speakers-content {
    display: none;
}

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

/* Speaker Cards Redesign */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.speaker-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 184, 0.15);
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 184, 0.1), transparent);
    transition: left 0.8s ease;
}

.speaker-card:hover::before {
    left: 100%;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 184, 0.3);
}

.speaker-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.speaker-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.speaker-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.speaker-topic {
    display: inline-block;
    background: rgba(255, 0, 184, 0.2);
    color: var(--neon-pink);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Speakers TBA */
.speakers-tba {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.tba-message {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

.tba-message i {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
}

.tba-message h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tba-message p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .city-switcher {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }

    .city-switch-btn {
        min-width: 100px;
        padding: 0.8rem 1rem;
    }

    .city-switch-btn .city-name {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .event-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .event-date {
        text-align: left;
    }

    .event-city h3 {
        font-size: 1.5rem;
    }

    .event-venue {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-venue i {
        margin-top: 0;
    }

    .event-actions {
        flex-direction: column;
    }

    .event-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .about-item {
        padding: 1.5rem;
    }

    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .target-audience {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .audience-item {
        padding: 0.8rem;
    }

    .speakers-tabs {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .tab-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .speaker-card {
        padding: 1.2rem;
    }

    .speaker-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .avatar-placeholder {
        font-size: 2.5rem;
    }

    .tba-message {
        padding: 2rem 1.5rem;
    }

    .tba-message i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .city-switcher {
        flex-direction: column;
        align-items: center;
    }

    .city-switch-btn {
        width: 200px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .event-card {
        padding: 1rem;
    }

    .event-city h3 {
        font-size: 1.3rem;
    }

    .speakers-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
        max-width: 100%;
        text-align: center;
    }
}

/* City Switcher Styles - REPLACED WITH EVENTS CTA */
.events-cta {
    display: flex;
    justify-content: center;
    margin: 2rem 0 3rem 0;
    z-index: 2;
    position: relative;
}

.events-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 20, 147, 0.1));
    border: 2px solid rgba(255, 20, 147, 0.3);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.events-btn:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(255, 20, 147, 0.2));
    border-color: rgba(255, 20, 147, 0.5);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

.events-btn i {
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.events-btn-text {
    font-weight: 700;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .events-cta {
        margin: 1.5rem 0 2rem 0;
    }

    .events-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .events-btn-text {
        font-size: 0.85rem;
    }
}

/* Highlight Text Effects */
.highlight {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.highlight-yellow {
    color: var(--neon-yellow);
    font-weight: 700;
}

.highlight-pink {
    color: var(--neon-pink);
    font-weight: 800;
    text-shadow: 
        0 0 5px var(--neon-pink),
        0 0 10px var(--neon-pink), 
        0 0 15px var(--neon-pink),
        0 0 20px rgba(255, 0, 184, 0.5);
    animation: glow-pink 2s ease-in-out infinite alternate;
}

.highlight-pink-simple {
    color: var(--neon-pink);
    font-weight: 700;
}

@keyframes glow-pink {
    from {
        text-shadow: 
            0 0 5px var(--neon-pink),
            0 0 10px var(--neon-pink), 
            0 0 15px var(--neon-pink),
            0 0 20px rgba(255, 0, 184, 0.5);
    }
    to {
        text-shadow: 
            0 0 8px var(--neon-pink),
            0 0 15px var(--neon-pink), 
            0 0 25px var(--neon-pink),
            0 0 35px rgba(255, 0, 184, 0.8);
    }
}

/* Highlight Text Effects - END */

/* EVENEA Registration Styles */
.evenea-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 184, 0.3);
}

.availability-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid #FFA500;
    border-radius: 10px;
    color: #FFA500;
}

.availability-warning i {
    font-size: 1.2rem;
    animation: blink 2s infinite;
}

.availability-warning p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

.evenea-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(255, 0, 184, 0.3);
    border: 2px solid transparent;
}

.evenea-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 184, 0.5);
    border-color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.evenea-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.evenea-btn:hover i {
    transform: translateX(5px);
}

.evenea-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .evenea-wrapper {
        padding: 1.5rem;
        margin: 0 15px;
    }
    
    .evenea-btn {
        padding: 15px 30px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .availability-warning {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .availability-warning p {
        font-size: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .location-card {
        margin-bottom: 0;
        padding: 1.2rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 184, 0.2);
    border-color: rgba(255, 0, 184, 0.3);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 0, 184, 0.4);
}

.contact-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-details p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-pink);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--neon-pink);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .contact-details h3 {
        font-size: 1.3rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
}

/* Call for Papers Section */
.call-for-papers {
    padding: 100px 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.9) 50%, 
        var(--black) 100%
    );
    position: relative;
}

.call-for-papers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.9) 50%,
        transparent 100%
    );
    z-index: 1;
}

.call-for-papers .container {
    position: relative;
    z-index: 2;
}

.cfp-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cfp-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cfp-info h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.cfp-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.cfp-topic {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cfp-topic:hover {
    background: rgba(255, 0, 184, 0.1);
    border-color: var(--neon-pink);
    transform: translateY(-3px);
}

.cfp-topic i {
    color: var(--neon-pink);
    font-size: 1.5rem;
    min-width: 24px;
}

.cfp-topic span {
    color: var(--white);
    font-weight: 500;
}

.cfp-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 0, 184, 0.1);
}

.cfp-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 18px 40px;
}

.cfp-submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Call for Papers */
@media (max-width: 768px) {
    .call-for-papers {
        padding: 80px 0;
    }
    
    .cfp-wrapper {
        margin: 0 15px;
    }
    
    .cfp-info {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cfp-topics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cfp-topic {
        padding: 0.8rem;
    }
    
    .cfp-topic i {
        font-size: 1.2rem;
    }
    
    .cfp-form {
        padding: 2rem 1.5rem;
    }
    
    .cfp-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cfp-form .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .cfp-submit-btn {
        font-size: 1rem;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .cfp-info h3 {
        font-size: 1.3rem;
    }
    
    .cfp-topic {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cfp-form {
        padding: 1.5rem 1rem;
    }
}

/* Call for Papers Success Message */
.cfp-success {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 4rem;
    color: #28a745;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cfp-success h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cfp-success p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-details h4 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.success-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.success-details li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.success-details li:last-child {
    border-bottom: none;
}

.success-details strong {
    color: var(--white);
    font-weight: 600;
}

.success-note {
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid var(--neon-yellow);
    border-radius: 10px;
    padding: 1rem;
    color: var(--neon-yellow);
    font-weight: 600;
    margin-top: 2rem;
}

/* Responsive Success Message */
@media (max-width: 768px) {
    .cfp-success {
        padding: 2rem 1.5rem;
    }
    
    .success-icon i {
        font-size: 3rem;
    }
    
    .cfp-success h3 {
        font-size: 1.5rem;
    }
    
    .cfp-success p {
        font-size: 1rem;
    }
    
    .success-details {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .success-details h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
.cfp-success {
    padding: 1.5rem 1rem;
}

.success-icon i {
    font-size: 2.5rem;
}

.cfp-success h3 {
    font-size: 1.3rem;
}

.success-details {
    padding: 1rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section h4 {
    color: var(--neon-pink);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 0, 184, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-pink);
    border-radius: 2px;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    transition: color 0.3s ease;
}

.char-counter.warning {
    color: #FFA500;
}

.char-counter.error {
    color: #FF4444;
}

/* File Input Styling */
.form-group input[type="file"] {
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.form-group input[type="file"]:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 184, 0.1);
}

.form-group input[type="file"]:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 184, 0.5);
}

.file-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    font-style: italic;
}

/* Enhanced Form Validation */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
    border-color: #FF4444;
}

.form-group input:valid,
.form-group textarea:valid,
.form-group select:valid {
    border-color: #28a745;
}

/* Form Error Messages */
.error-message {
    color: #FF4444;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #FF4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

/* Success Messages */
.success-message {
    color: #28a745;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.form-group.success .success-message {
    display: block;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

/* Loading State */
.cfp-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.cfp-submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

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

/* Responsive Form Sections */
@media (max-width: 768px) {
    .form-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .form-group input[type="file"] {
        padding: 10px 12px;
    }
}

/* CFP Deadlines - FORCED STYLES */
.call-for-papers .cfp-deadlines,
.cfp-form .cfp-deadlines,
#cfp-form .cfp-deadlines,
.cfp-wrapper .cfp-deadlines,
div.cfp-deadlines {
    margin-top: 80px !important;
    padding: 18px !important;
    background: linear-gradient(135deg, rgba(255, 0, 184, 0.1), rgba(255, 230, 0, 0.05)) !important;
    border-radius: 15px !important;
    border: 2px solid rgba(255, 0, 184, 0.2) !important;
    box-shadow: 0 5px 15px rgba(255, 0, 184, 0.1) !important;
}

.call-for-papers .cfp-deadlines h5,
.cfp-form .cfp-deadlines h5,
#cfp-form .cfp-deadlines h5 {
    color: var(--neon-pink) !important;
    font-size: 0.6rem !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.call-for-papers .cfp-deadlines h5::before,
.cfp-form .cfp-deadlines h5::before,
#cfp-form .cfp-deadlines h5::before {
    content: '⏰' !important;
    font-size: 0.6rem !important;
}

.call-for-papers .cfp-deadlines ul,
.cfp-form .cfp-deadlines ul,
#cfp-form .cfp-deadlines ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    gap: 6px !important;
}

.call-for-papers .cfp-deadlines li,
.cfp-form .cfp-deadlines li,
#cfp-form .cfp-deadlines li,
.cfp-wrapper .cfp-deadlines li,
div.cfp-deadlines li {
    padding: 6px 8px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.3s ease !important;
    font-size: 0.45rem !important;
    line-height: 1.2 !important;
}

.call-for-papers .cfp-deadlines li:hover,
.cfp-form .cfp-deadlines li:hover,
#cfp-form .cfp-deadlines li:hover {
    background: rgba(255, 0, 184, 0.1) !important;
    border-color: var(--neon-pink) !important;
    transform: translateX(3px) !important;
}

.call-for-papers .cfp-deadlines li::before,
.cfp-form .cfp-deadlines li::before,
#cfp-form .cfp-deadlines li::before {
    content: '📍' !important;
    font-size: 8px !important;
    min-width: 12px !important;
    text-align: center !important;
}

.call-for-papers .cfp-deadlines strong,
.cfp-form .cfp-deadlines strong,
#cfp-form .cfp-deadlines strong,
.cfp-wrapper .cfp-deadlines strong,
div.cfp-deadlines strong {
    font-weight: 700 !important;
    min-width: 50px !important;
    font-size: 0.45rem !important;
    color: #FFE600 !important;
    text-shadow: 0 0 5px rgba(255, 230, 0, 0.5) !important;
}

.call-for-papers .cfp-deadlines li span,
.cfp-form .cfp-deadlines li span,
#cfp-form .cfp-deadlines li span,
.cfp-wrapper .cfp-deadlines li span,
div.cfp-deadlines li span {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    font-size: 0.45rem !important;
}

@media (max-width: 480px) {
    .form-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .form-section h4 {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .form-section h4::before {
        width: 100%;
        height: 2px;
    }
    
    .cfp-deadlines {
        margin-top: 10px;
        padding: 12px;
    }
    
    .cfp-deadlines h5 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .cfp-deadlines li {
        padding: 6px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .cfp-deadlines strong {
        min-width: auto;
    }
}
}
