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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header styles */
header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.conference-badge {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.workshop-title h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.workshop-title p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    max-width: 400px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.nav-menu li a:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-menu li a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu li a:hover::before {
    opacity: 1;
}

.nav-menu li a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-menu li a.active::before {
    opacity: 1;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/oslo-city.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 800;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    hyphens: auto;
    padding: 0 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
    min-width: 280px;
}

.info-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

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

.info-text {
    text-align: left;
}

.info-text .label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.info-text .value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

/* Old countdown styles removed - using new enhanced styles below */

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: 85vh;
        padding: 5rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
        max-width: 1000px;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        max-width: 100%;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }

    .info-card {
        min-width: 100%;
        padding: 1.2rem;
    }
}

/* Section styles */
section {
    padding: 5rem 0;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Scope section */
.scope-section {
    background-color: #f8fafc;
}

.scope-content {
    max-width: 1000px;
    margin: 0 auto;
}

.scope-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Schedule section */
.schedule-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

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

/* Schedule Summary */
.schedule-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.schedule-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    border-radius: 16px 16px 0 0;
}

.schedule-summary::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.summary-item .emoji {
    font-size: 1.25rem;
    min-width: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.summary-item strong {
    color: #1a1a1a;
    font-weight: 700;
    min-width: 80px;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1e40af, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add subtle animation to summary items */
.summary-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.summary-item:nth-child(1) { animation-delay: 0.1s; }
.summary-item:nth-child(2) { animation-delay: 0.2s; }
.summary-item:nth-child(3) { animation-delay: 0.3s; }

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

/* Schedule Card */
.schedule-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.schedule-timeline {
    padding: 0;
}

/* Timeline Items */
.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item:hover {
    background: #f8fafc;
}

.timeline-item.opening {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-left: 4px solid #3b82f6;
}

.timeline-item.tech {
    background: #ffffff;
}

.timeline-item.tech:nth-child(even) {
    background: #fafbfc;
}

.timeline-item.closing {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    border-left: 4px solid #10b981;
}

/* Time Block */
.time-block {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 0.1rem;
}

.time {
    font-weight: 700;
    color: #2563eb;
    font-size: 0.8rem;
    background: #eff6ff;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #dbeafe;
    white-space: nowrap;
    text-align: center;
    min-width: 85px;
}

.timeline-item.opening .time {
    background: #dbeafe;
    color: #1e40af;
}

.timeline-item.closing .time {
    background: #dcfce7;
    color: #047857;
}

/* Event Block */
.event-block {
    flex: 1;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.timeline-item.opening .event-title {
    color: #1e40af;
}

.timeline-item.closing .event-title {
    color: #047857;
}

.event-speaker {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Paper List */
.paper-list {
    margin-top: 0.75rem;
}

.paper-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

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

.paper-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.paper-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.paper-authors {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
    font-style: italic;
}

/* Responsive Design for Schedule */
@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .time-block {
        justify-content: flex-start;
    }
    
    .time {
        min-width: auto;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .event-title {
        font-size: 1rem;
    }
    
    .paper-title {
        font-size: 0.85rem;
    }
    
    .paper-authors {
        font-size: 0.75rem;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        padding: 0.75rem;
    }
    
    .summary-item strong {
        min-width: auto;
        font-size: 0.8rem;
    }
    
    .schedule-summary {
        padding: 1.25rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .summary-item .emoji {
        font-size: 1.1rem;
    }
}

/* CFP section */
.cfp-section {
    background-color: #f8fafc;
}

.cfp-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cfp-description {
    background: #ffffff;
    border-left: 4px solid #2563eb;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cfp-description p {
    color: #374151;
    line-height: 1.7;
    margin: 0;
    font-size: 1.125rem;
}

.important-dates {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.important-dates h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.important-dates ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-dates li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.important-dates li::before {
    content: "📅";
    position: absolute;
    left: 0;
    color: #2563eb;
}

.submission-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.submission-info h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.submission-info p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    background: #2563eb;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.submit-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.submit-button .icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .icon {
    transform: translateX(4px);
}

/* Organizers section */
.organizers-section {
    background-color: #ffffff;
}

.organizer-group {
    margin-bottom: 4rem;
}

.organizer-group h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.organizer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.organizer-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organizer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.profile-info .name {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-info .affiliation {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.profile-info .email {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.profile-info .email:hover {
    color: #1d4ed8;
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

textarea {
    height: 150px;
    resize: vertical;
}

button {
    background: #3498db;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

button:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Enhanced Organizers Section Styles */
.organizer-group {
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 0.5rem auto;
}

/* Enhanced Card Styles */
.organizer-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.organizer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(52, 152, 219, 0.8) 0%,
        rgba(46, 204, 113, 0.8) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image:hover .profile-overlay {
    opacity: 1;
}

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

/* Add this if you want a border effect */
.profile-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #3498db 0%,
        #2ecc71 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.profile-image:hover::before {
    opacity: 1;
}

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

.profile-info .name {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-info .affiliation {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.profile-info .email {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.profile-info .email:hover {
    color: #2980b9;
}

/* Specific Grid Layouts */
.general-chairs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tpc-chairs {
    max-width: 1200px;
    margin: 0 auto;
}

.row-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.first-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.second-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.publicity-chairs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .first-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto 2rem auto;
    }
    
    .second-row {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .second-row .organizer-card:last-child {
        grid-column: 1 / 3;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .first-row,
    .second-row {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .second-row .organizer-card:last-child {
        grid-column: auto;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .publicity-chairs,
    .tpc-chairs {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
}

/* Animation Effects */
.organizer-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

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

/* Staggered animations for cards */
.organizer-card:nth-child(1) { animation-delay: 0.1s; }
.organizer-card:nth-child(2) { animation-delay: 0.2s; }
.organizer-card:nth-child(3) { animation-delay: 0.3s; }
.organizer-card:nth-child(4) { animation-delay: 0.4s; }

/* Header and Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.ieee-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.workshop-title {
    transition: all 0.3s ease;
}

.workshop-title h1 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.workshop-title p {
    font-size: 1rem;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ieee-logo {
        height: 45px;
    }
    
    .workshop-title h1 {
        font-size: 1.6rem;
    }
    
    .workshop-title p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .logo-container {
        padding: 0.6rem 1rem;
        gap: 1rem;
    }
    
    .ieee-logo {
        height: 40px;
    }
    
    .workshop-title h1 {
        font-size: 1.4rem;
    }
    
    .workshop-title p {
        font-size: 0.8rem;
        max-width: 200px; /* Prevent text from getting too wide */
    }
}

/* Small phones */
@media (max-width: 480px) {
    .logo-container {
        padding: 0.5rem 0.8rem;
        gap: 0.8rem;
    }
    
    .ieee-logo {
        height: 35px;
    }
    
    .workshop-title h1 {
        font-size: 1.2rem;
    }
    
    .workshop-title p {
        font-size: 0.75rem;
        max-width: 180px;
    }
}

/* Extra small phones */
/*@media (max-width: 360px) {
    .ieee-logo {
        height: 30px;
    }
    
    .workshop-title h1 {
        font-size: 1.1rem;
    }
    
    .workshop-title p {
        font-size: 0.7rem;
        max-width: 160px;
    }
}*/

@media (max-width: 450px) {
    .logo-container {
        padding: 0.2rem 0.5rem;
        gap: 0.2rem;
    }
    .ieee-logo {
        height: 20px;
    }
    
    .workshop-title h1 {
        font-size: 0.8rem;
    }
    
    .workshop-title p {
        font-size: 0.6rem;
        max-width: 100px;
    }
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.topic-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #ef4444);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.topic-card:hover::before {
    opacity: 1;
}

.topic-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #3b82f6;
}

.topic-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.topic-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.topic-card:nth-child(1) .topic-icon {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.topic-card:nth-child(2) .topic-icon {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.topic-card:nth-child(3) .topic-icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.topic-card:nth-child(4) .topic-icon {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.topic-card:hover .topic-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.topic-card h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    text-align: center;
    background: linear-gradient(135deg, #1e40af, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topic-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-content ul li {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.topic-content ul li:hover {
    color: #1f2937;
    transform: translateX(4px);
}

.topic-content .bullet {
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1rem;
    top: 0.1rem;
}

/* Add staggered animation */
.topic-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.topic-card:nth-child(1) { animation-delay: 0.1s; }
.topic-card:nth-child(2) { animation-delay: 0.2s; }
.topic-card:nth-child(3) { animation-delay: 0.3s; }
.topic-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Responsive Design */
@media (max-width: 1200px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 900px;
    }
    
    .topic-card {
        padding: 1.5rem;
    }
    
    .topic-card h3 {
        font-size: 1.2rem;
    }
    
    .topic-content ul li {
        font-size: 0.85rem;
    }
    
    .topic-icon {
        font-size: 2.5rem;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .topic-card {
        padding: 1.5rem;
    }
    
    .topic-icon {
        font-size: 2.2rem;
        padding: 0.875rem;
    }
    
    .topic-card h3 {
        font-size: 1.1rem;
    }
    
    .topic-content ul li {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .topics-grid {
        max-width: 350px;
    }
    
    .topic-card {
        padding: 1.25rem;
    }
    
    .topic-icon {
        font-size: 2rem;
        padding: 0.75rem;
    }
}

/* Enhanced Animation */
.topic-card {
    opacity: 0;
    animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.topic-card:nth-child(1) { animation-delay: 0.1s; }
.topic-card:nth-child(2) { animation-delay: 0.2s; }
.topic-card:nth-child(3) { animation-delay: 0.3s; }
.topic-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Responsive adjustments for General Co-chairs */
@media (max-width: 1200px) {
    .general-chairs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .general-chairs .organizer-card {
        flex: 0 0 calc(50% - 2rem);
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .general-chairs .organizer-card {
        flex: 0 0 100%;
    }
}

/* Call for Papers Section */
.cfp-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.cfp-description {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.cfp-description p {
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.important-dates {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.important-dates h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.important-dates ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-dates li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.important-dates li::before {
    content: "📅";
    position: absolute;
    left: 0;
    color: #3498db;
}

.submission-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.submission-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.submission-info p {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    background: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.submit-button .icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cfp-content {
        padding: 1rem;
    }

    .important-dates, 
    .submission-info {
        padding: 1.5rem;
    }

    .cfp-description p,
    .submission-info p {
        font-size: 1rem;
    }

    .important-dates h3,
    .submission-info h3 {
        font-size: 1.2rem;
    }
}

/* Specific scaling for Qihao Li's image */
.profile-image img[alt="Qihao Li"] {
    object-fit: cover;
    object-position: center 10%;  /* Adjust vertical position */
    transform: scale(1.0);  /* Slightly larger scale */
}

.profile-image:hover img[alt="Qihao Li"] {
    transform: scale(1.3);  /* Larger scale on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

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

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

    .conference-info {
        flex-direction: column;
        padding: 1.5rem;
    }

    .conference-info > div {
        font-size: 1rem;
    }
}

/* Base responsive settings */
:root {
    --header-height: 80px;
    --mobile-header-height: 70px;
}

/* Mobile navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    color: #374151;
}

.hamburger {
    font-size: 1.5rem;
}

@media (max-width: 1024px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        gap: 0.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        margin: 0.25rem 0;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: #374151;
        font-size: 0.9rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-menu li a:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        color: #ffffff;
        transform: translateX(8px);
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    }

    .nav-brand {
        max-width: 70%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }

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

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

    .hero-info {
        flex-direction: column;
        padding: 0 1rem;
    }

    .info-item {
        width: 100%;
        padding: 1.25rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .schedule-details {
        flex-direction: column;
        align-items: center;
    }

    .schedule-item {
        width: 100%;
        min-width: auto;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }

    .timeline-item .time {
        min-width: auto;
        font-size: 1rem;
    }

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

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

    .organizer-card {
        padding: 1.5rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    h2 {
        font-size: 2rem;
    }

    .scope-description {
        font-size: 1rem;
        text-align: left;
    }
}

/* Responsive Topics Grid */
@media (max-width: 1024px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem;
    }
}

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

    .topic-card {
        padding: 1.5rem;
    }
}

/* Responsive Organizers Section */
@media (max-width: 1024px) {
    .organizer-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .organizer-cards {
        grid-template-columns: 1fr;
    }

    .organizer-card {
        padding: 1.5rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }
}

/* Responsive Call for Papers */
@media (max-width: 768px) {
    .cfp-content {
        padding: 1.5rem;
    }

    .important-dates ul {
        padding-left: 1rem;
    }

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

/* Touch Device Optimizations */
@media (hover: none) {
    .topic-card:hover,
    .organizer-card:hover,
    .info-card:hover {
        transform: none;
    }

    .submit-button:active {
        transform: translateY(-2px);
    }
}

/* Font Size Adjustments for Mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* Better Touch Targets */
@media (max-width: 768px) {
    nav ul li a,
    .submit-button,
    .info-card {
        padding: 0.8rem 1rem;
        min-height: 44px; /* Minimum touch target size */
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .logo-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0.8rem 1rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }

    .logo-container.hidden {
        transform: translateY(-100%);
    }

    /* Adjust header spacing when logo is hidden */
    header {
        padding-top: var(--mobile-header-height);
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .logo-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0.8rem 1rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: transform 0.3s ease;
    }

    .logo-container.scroll-hide {
        transform: translateY(-100%);
    }

    /* Hide elements individually */
    .logo-container.scroll-hide .ieee-logo,
    .logo-container.scroll-hide .workshop-title {
        opacity: 0;
        transform: translateY(-20px);
    }

    /* Adjust header spacing */
    header {
        padding-top: var(--mobile-header-height);
    }
}



/* VTC schedule minor tweaks */
.timeline-item.closing .event-title { color: #0f766e; }
.timeline-item.tech .paper-title { line-height: 1.35; }

/* Enhanced Schedule Styling */
.schedule-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.schedule-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

/* Timeline Visual Enhancement */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e2e8f0, #cbd5e1);
    z-index: 1;
}

.timeline-item:last-child::before {
    height: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 115px;
    top: 1.5rem;
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.timeline-item.opening::after {
    background: #1e40af;
}

.timeline-item.closing::after {
    background: #10b981;
}

/* Paper Item Enhancements */
.paper-item {
    position: relative;
    overflow: hidden;
}

.paper-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.paper-item:hover::before {
    opacity: 1;
}

/* Animation for timeline items */
.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }

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

/* Mobile timeline adjustments */
@media (max-width: 768px) {
    .timeline-item::before {
        left: 15px;
    }
    
    .timeline-item::after {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 2.5rem;
    }
}

/* Enhanced Hero Conference Info Cards */
.conference-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

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

.card-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.card-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.card-detail {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 2rem;
}

.countdown-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover::before {
    opacity: 1;
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Countdown Animation */
.countdown-update {
    animation: countdownPulse 0.3s ease-in-out;
}

@keyframes countdownPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Enhanced Ticker */
.ticker {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.ticker-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-align: center;
}

.ticker-track {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-track li {
    margin-right: 3rem;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
    .conference-info {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .countdown-timer {
        gap: 1.5rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1.25rem 1.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 75vh;
        padding: 3rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.5;
        padding: 0 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .conference-info {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .countdown-timer {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.875rem 1rem;
    }
    
    .countdown-number {
        font-size: 1.6rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .ticker {
        padding: 0.5rem 1rem;
    }
}