* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-neon: #f5f5f0;
    --secondary-neon: #e8e8e0;
    --tertiary-neon: #d4d4cc;
    --accent-orange: #c0c0b8;
    --dark-bg: #1a1a18;
    --darker-bg: #0f0f0d;
    --text-primary: #ffffff;
    --text-secondary: #d9d9d0;
    --grid-color: rgba(245, 245, 240, 0.08);
    --neon-glow: rgba(245, 245, 240, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', monospace;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Cyberpunk Overlays */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, var(--grid-color) 25%, var(--grid-color) 26%, transparent 27%, transparent 74%, var(--grid-color) 75%, var(--grid-color) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, var(--grid-color) 25%, var(--grid-color) 26%, transparent 27%, transparent 74%, var(--grid-color) 75%, var(--grid-color) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
}

.scan-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(245, 245, 240, 0.01),
        rgba(245, 245, 240, 0.01) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-neon);
    z-index: 100;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 0 20px rgba(245, 245, 240, 0.15);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    gap: 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon), 0 0 20px rgba(245, 245, 240, 0.5);
    letter-spacing: 3px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 10px var(--primary-neon), 0 0 20px rgba(245, 245, 240, 0.5);
        color: var(--primary-neon);
    }
    50% {
        text-shadow: 0 0 20px var(--primary-neon), 0 0 40px rgba(245, 245, 240, 0.8), 0 0 60px rgba(245, 102, 0, 0.6);
        color: var(--secondary-neon);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-neon);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-neon);
}

.nav-links a:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(245, 245, 240, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
    position: relative;
    padding-bottom: 6rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-logo {
    width: 512px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 30px rgba(245, 245, 240, 0.6)) brightness(1.1);
    border-radius: 20px;
    padding: 10px;
}


@keyframes logo-glitch {
    0%, 100% {
        transform: translate(0, 0);
        filter: drop-shadow(0 0 30px rgba(245, 245, 240, 0.6)) brightness(1.1);
    }
    25% {
        transform: translate(-3px, 2px);
        filter: drop-shadow(0 0 30px rgba(255, 27, 68, 0.8)) brightness(1.2);
    }
    50% {
        transform: translate(3px, -2px);
        filter: drop-shadow(0 0 30px rgba(245, 102, 0, 0.8)) brightness(1.2);
    }
    75% {
        transform: translate(-2px, 3px);
        filter: drop-shadow(0 0 30px rgba(245, 245, 240, 0.8)) brightness(1.1);
    }
}

/* Countdown Container */
.countdown-container {
    margin: 0.5rem 0;
}

.countdown-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-neon);
    text-shadow: 0 0 20px var(--primary-neon), 0 0 40px rgba(245, 245, 240, 0.5);
    letter-spacing: 3px;
    animation: glitch-anim 3s ease-in-out infinite;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

@keyframes glitch-anim {
    0%, 100% {
        text-shadow: 0 0 20px var(--primary-neon), 0 0 40px rgba(245, 245, 240, 0.5);
    }
    50% {
        text-shadow: 0 0 30px var(--secondary-neon), 0 0 60px rgba(245, 102, 0, 0.8);
    }
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scaleIn 0.6s ease-out;
}

.countdown-separator {
    font-size: 3rem;
    color: var(--primary-neon);
    text-shadow: 0 0 20px var(--primary-neon);
    margin: 0 0.5rem;
    animation: pulse-neon 1s ease-in-out infinite;
}

@keyframes pulse-neon {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-neon);
    text-shadow: 0 0 20px var(--primary-neon), 0 0 40px rgba(245, 245, 240, 0.3);
    min-width: 120px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-family: 'Courier New', monospace;
    border: 2px solid var(--primary-neon);
    background: rgba(245, 245, 240, 0.03);
    box-shadow: inset 0 0 20px rgba(245, 245, 240, 0.1), 0 0 20px rgba(245, 245, 240, 0.2);
}

.countdown-number.glitch:hover {
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 0 0 20px var(--primary-neon), 0 0 40px rgba(245, 245, 240, 0.6);
    }
    25% {
        text-shadow: -2px 0 var(--tertiary-neon), 2px 0 var(--secondary-neon), 0 0 20px var(--primary-neon);
        transform: translateX(-2px);
    }
    50% {
        text-shadow: 2px 0 var(--secondary-neon), -2px 0 var(--tertiary-neon), 0 0 20px var(--primary-neon);
        transform: translateX(2px);
    }
    75% {
        text-shadow: -2px 0 var(--secondary-neon), 2px 0 var(--tertiary-neon), 0 0 20px var(--primary-neon);
        transform: translateX(-2px);
    }
}

.countdown-label {
    font-size: 1rem;
    color: var(--secondary-neon);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-shadow: 0 0 10px var(--secondary-neon);
}

.event-time {
    font-size: 1.2rem;
    color: var(--secondary-neon);
    text-shadow: 0 0 15px var(--secondary-neon);
    margin-top: 2rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Register Button */
.register-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--primary-neon);
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px var(--primary-neon), inset 0 0 10px rgba(245, 245, 240, 0.2);
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon));
    transition: left 0.3s ease;
    z-index: -1;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-neon), 0 20px 40px rgba(245, 245, 240, 0.2), inset 0 0 20px rgba(245, 245, 240, 0.2);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.register-btn:active {
    transform: translateY(-1px);
}

/* Sections */
section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    box-shadow: 0 0 20px var(--primary-neon);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-neon);
    text-shadow: 0 0 20px var(--primary-neon), 0 0 40px rgba(245, 245, 240, 0.5);
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out;
    font-family: 'Courier New', monospace;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.03), rgba(232, 232, 224, 0.02));
    border-top: 2px solid rgba(245, 245, 240, 0.2);
}

/* Schedule Section */
.schedule {
    background: var(--darker-bg);
    border-top: 2px solid rgba(245, 245, 240, 0.2);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-item {
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.08), rgba(232, 232, 224, 0.04));
    border: 2px solid var(--primary-neon);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out;
    box-shadow: 0 0 20px rgba(245, 245, 240, 0.1);
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule-item:hover {
    border-color: var(--secondary-neon);
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.12), rgba(232, 232, 224, 0.08));
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--primary-neon), 0 10px 30px rgba(245, 245, 240, 0.15);
}

.schedule-item .time {
    display: block;
    color: var(--secondary-neon);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 0 0 10px var(--secondary-neon);
}

.schedule-item h3 {
    margin: 0.5rem 0;
    font-size: 1.3rem;
    color: var(--primary-neon);
}

.schedule-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Speakers Section */
.speakers {
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.03), rgba(232, 232, 224, 0.02));
    border-top: 2px solid rgba(245, 245, 240, 0.2);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.speaker-card {
    text-align: center;
    animation: slideInUp 0.6s ease-out;
}

.speaker-card img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid var(--primary-neon);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    filter: brightness(0.9);
    box-shadow: 0 0 20px var(--primary-neon);
}

.speaker-card:hover img {
    transform: scale(1.05);
    filter: brightness(1) drop-shadow(0 0 30px rgba(245, 245, 240, 0.5));
    box-shadow: 0 0 40px var(--primary-neon), inset 0 0 20px rgba(245, 245, 240, 0.2);
}

.speaker-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem;
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.speaker-card p {
    color: var(--secondary-neon);
    font-size: 0.9rem;
    text-shadow: 0 0 5px var(--secondary-neon);
}

/* Contact Section */
.contact {
    background: var(--darker-bg);
    border-top: 2px solid rgba(245, 245, 240, 0.2);
    text-align: center;
}

.contact-content {
    animation: fadeInUp 0.8s ease-out;
}

.contact-content p {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: var(--text-secondary);
}

.contact-email,
.contact-phone {
    color: var(--primary-neon) !important;
    font-size: 1.2rem !important;
    text-shadow: 0 0 10px var(--primary-neon) !important;
}

/* Social Media Section */
.social-media {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 245, 240, 0.2);
}

.social-title {
    font-size: 1.1rem;
    color: var(--primary-neon);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-neon);
    font-weight: bold;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.1), rgba(232, 232, 224, 0.05));
    border: 2px solid var(--primary-neon);
    border-radius: 8px;
    color: var(--primary-neon);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    text-shadow: 0 0 5px var(--primary-neon);
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(245, 245, 240, 0.15), rgba(232, 232, 224, 0.1));
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--primary-neon), 0 5px 15px rgba(245, 245, 240, 0.2);
}

.social-link:active {
    transform: translateY(-1px);
}

.social-link span {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 767px) {
    .social-links {
        gap: 1rem;
    }

    .social-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .social-link span {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .social-link span {
        font-size: 1rem;
    }

    .social-media {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .social-title {
        font-size: 1rem;
    }
}

@media (max-width: 374px) {
    .social-links {
        gap: 0.5rem;
        flex-direction: column;
    }

    .social-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .social-link span {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--primary-neon);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    box-shadow: 0 0 20px rgba(245, 245, 240, 0.1);
}

.footer-cipher {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 1rem;
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

/* Page Glitch Effect */
body.glitch-active {
    animation: page-glitch 0.15s ease-in-out infinite;
}

@keyframes page-glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

body.glitch-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(245, 245, 240, 0.03) 0%,
        rgba(245, 245, 240, 0.05) 50%,
        rgba(245, 245, 240, 0.03) 100%
    );
    pointer-events: none;
    z-index: 9999;
    animation: glitch-overlay 0.15s ease-in-out infinite;
}

@keyframes glitch-overlay {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%);
    }
    20% {
        clip-path: polygon(0 30%, 100% 30%, 100% 60%, 0 60%);
    }
    40% {
        clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
    }
    60% {
        clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    }
    80% {
        clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Responsive Design */
/* Extra Large Screens (1200px and up) */
@media (min-width: 1200px) {
    .event-logo {
        width: 512px;
        height: 100px;
    }
}

/* Large Screens (992px to 1199px) */
@media (max-width: 1199px) {
    .event-logo {
        width: 400px;
        height: 80px;
    }

    .nav-content {
        gap: 1.5rem;
    }

    .countdown-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .nav-content {
        padding: 0.8rem 1.5rem;
        gap: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .event-logo {
        width: 400px;
        height: 80px;
    }

    .countdown-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .countdown-number {
        font-size: 2.5rem;
        min-width: 80px;
        padding: 8px;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-separator {
        font-size: 2rem;
        margin: 0 0.3rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .event-time {
        font-size: 1rem;
    }

    .register-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .schedule-item {
        padding: 1.5rem;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .speaker-card img {
        width: 150px;
        height: 150px;
    }

    .speaker-card h3 {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 1.5rem;
        padding-bottom: 4rem;
    }
}


/* Small Tablets / Large Phones (576px to 767px) */
@media (max-width: 767px) {
    .nav-content {
        padding: 0.7rem 1rem;
        gap: 0.8rem;
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .nav-links {
        display: none;
    }

    .event-logo {
        width: 400px;
        height: 80px;
    }

    .hero-content {
        padding: 1rem;
        padding-bottom: 3rem;
    }

    .countdown-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .countdown-number {
        font-size: 2rem;
        min-width: 65px;
        padding: 6px;
        border-radius: 6px;
    }

    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 0.2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .event-time {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    .register-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    section {
        padding: 2.5rem 1rem;
    }

    section::before {
        height: 1px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .schedule-item {
        padding: 1.2rem;
    }

    .schedule-item h3 {
        font-size: 1.1rem;
    }

    .schedule-item p {
        font-size: 0.85rem;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .speaker-card img {
        width: 120px;
        height: 120px;
    }

    .speaker-card h3 {
        font-size: 1rem;
        margin: 0.8rem 0 0.3rem;
    }

    .speaker-card p {
        font-size: 0.8rem;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .contact-email,
    .contact-phone {
        font-size: 0.95rem !important;
    }

    .footer {
        padding: 1.5rem;
    }

    .footer-cipher {
        font-size: 0.7rem;
    }
}

/* Mobile Phones (375px to 575px) */
@media (max-width: 575px) {
    .nav-content {
        padding: 0.6rem 0.8rem;
    }

    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .event-logo {
        width: 400px;
        height: 80px;
    }

    .hero-content {
        padding: 0.8rem;
        padding-bottom: 2rem;
    }

    .countdown-container {
        margin: 0.3rem 0;
    }

    .countdown-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .countdown {
        gap: 0.3rem;
        margin-bottom: 1.5rem;
    }

    .countdown-number {
        font-size: 1.6rem;
        min-width: 55px;
        padding: 5px;
        border-radius: 5px;
        border: 1px solid var(--primary-neon);
    }

    .countdown-separator {
        font-size: 1.2rem;
        margin: 0 0.15rem;
    }

    .countdown-item {
        min-width: 50px;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        margin-top: 0.2rem;
    }

    .event-time {
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .register-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-top: 1rem;
        border-radius: 8px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        letter-spacing: 1px;
    }

    .section-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    section {
        padding: 2rem 0.8rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .schedule-item {
        padding: 1rem;
        border-radius: 8px;
    }

    .schedule-item .time {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .schedule-item h3 {
        font-size: 1rem;
        margin: 0.3rem 0;
    }

    .schedule-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .speaker-card img {
        width: 100px;
        height: 100px;
        border-radius: 8px;
    }

    .speaker-card h3 {
        font-size: 0.95rem;
        margin: 0.6rem 0 0.2rem;
    }

    .speaker-card p {
        font-size: 0.75rem;
    }

    .contact-content p {
        font-size: 0.95rem;
        margin: 0.8rem 0;
    }

    .contact-email,
    .contact-phone {
        font-size: 0.9rem !important;
    }

    .footer {
        padding: 1.2rem 0.8rem;
    }

    .footer-cipher {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

/* Extra Small Phones (320px to 374px) */
@media (max-width: 374px) {
    .nav-content {
        padding: 0.5rem 0.6rem;
    }

    .logo-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .event-logo {
        width: 400px;
        height: 80px;
    }

    .hero-content {
        padding: 0.5rem;
        padding-bottom: 1.5rem;
    }

    .countdown-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .countdown {
        gap: 0.2rem;
        margin-bottom: 1rem;
    }

    .countdown-number {
        font-size: 1.4rem;
        min-width: 45px;
        padding: 4px;
        border: 1px solid var(--primary-neon);
    }

    .countdown-separator {
        font-size: 1rem;
        margin: 0 0.1rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 0px;
        margin-top: 0.1rem;
    }

    .event-time {
        font-size: 0.75rem;
        margin-top: 0.8rem;
    }

    .register-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-top: 0.8rem;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .section-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    section {
        padding: 1.5rem 0.6rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .schedule-item {
        padding: 0.8rem;
    }

    .schedule-item .time {
        font-size: 0.75rem;
    }

    .schedule-item h3 {
        font-size: 0.9rem;
    }

    .schedule-item p {
        font-size: 0.75rem;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .speaker-card img {
        width: 80px;
        height: 80px;
    }

    .speaker-card h3 {
        font-size: 0.85rem;
        margin: 0.5rem 0 0.2rem;
    }

    .speaker-card p {
        font-size: 0.7rem;
    }

    .footer {
        padding: 1rem 0.6rem;
    }
}

/* About Section and below */
#about,
#schedule,
#speakers,
#contact {
    position: relative;
    z-index: 2;
}
