:root {
    --ivory: #edebdd;
    --deep-crimson: #810100;
    --dark-maroon: #630000;
    --charcoal: #1b1717;
    --muted-ivory: #c9c7bc;
    --red-accent: #E10600; /* Added this variable based on usage in diff */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, var(--charcoal) 0%, #2a1f1f 50%, var(--dark-maroon) 100%);
    background-attachment: fixed;
    color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="4" fill="%23E10600"/></svg>') 10 10, auto; /* Added from diff */
}

a, button { /* Added from diff */
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="6" fill="%23FF1E1E" opacity="0.7"/></svg>') 10 10, pointer;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" fill="%231b1717" filter="url(%23noise)" opacity="0.03"/></svg>');
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

body::after {
    content: '';
    position: fixed;
    top: -40%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(129, 1, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(27, 23, 23, 0.92);
    border-bottom: 1px solid rgba(129, 1, 0, 0.3);
    display: flex;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    color: var(--deep-crimson);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--deep-crimson);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--deep-crimson);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-crimson);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(27, 23, 23, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid var(--dark-maroon);
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(129, 1, 0, 0.05) 0%, transparent 70%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    filter: blur(1px); /* Updated from diff */
    pointer-events: none;
    opacity: 0.6;
    animation: parallaxMove 20s ease-in-out infinite, heroBreathe 8s ease-in-out infinite; /* Added from diff */
}

@keyframes parallaxMove { /* Added from diff */
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes heroBreathe { /* Added from diff */
    0%, 100% {
        opacity: 0.7;
        filter: blur(1px);
    }
    50% {
        opacity: 0.9;
        filter: blur(2px);
    }
}

.grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(230, 57, 70, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 57, 70, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.circuit {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid var(--deep-crimson);
    border-radius: 50%;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    transform: translateY(-40px);
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
    transform: translateY(-40px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.accent-bar {
    width: 4px;
    height: 40px;
    background: var(--deep-crimson);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-title img { /* Added from diff */
    animation: glitchEffect 3s ease-in-out;
    max-width: 350px;
    width: 100%;
    height: auto;
}

@keyframes glitchEffect { /* Added from diff */
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}

.hero-title img:hover { /* Added from diff */
    animation: glitchHover 0.3s ease-in-out;
}

@keyframes glitchHover { /* Added from diff */
    0%, 100% { transform: skewX(0deg); }
    25% { transform: skewX(-0.5deg); }
    75% { transform: skewX(0.5deg); }
}

.red-dot {
    color: var(--deep-crimson);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-tagline {
    font-size: 20px;
    color: var(--deep-crimson);
    margin-bottom: 15px;
    font-weight: 600;
    animation: rotatingText 6s ease-in-out infinite; /* Added from diff */
    min-height: 30px; /* Added from diff */
}

@keyframes rotatingText { /* Added from diff */
    0%, 10% { opacity: 1; }
    20%, 30% { opacity: 0; }
    40%, 50% { opacity: 1; }
    60%, 70% { opacity: 0; }
    80%, 100% { opacity: 1; }
}

.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted-ivory);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    flex: 1;
    min-width: 0;
}

.btn-red {
    background: var(--deep-crimson);
    color: var(--ivory);
    border: 1px solid var(--deep-crimson);
    position: relative; /* Added from diff */
    border: 2px solid transparent; /* Updated from diff */
    transition: all 0.3s ease; /* Updated from diff */
}

.btn-red::before { /* Added from diff */
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--red-accent);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 0 20px rgba(255, 30, 30, 0.6), inset 0 0 20px rgba(255, 30, 30, 0.1);
}

.btn-red:hover {
    background: rgba(129, 1, 0, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--ivory);
    transform: scale(1.03); /* Updated from diff */
}

.btn-red:hover::before { /* Added from diff */
    opacity: 1;
}

.btn-red:active {
    transform: translateY(0px);
}

.btn-black {
    background: transparent;
    color: var(--ivory);
    border: 2px solid var(--ivory);
}

.btn-black:hover {
    background: var(--ivory);
    color: var(--charcoal);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-element {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--deep-crimson), var(--dark-red)); /* Note: var(--dark-red) is not defined, assuming it should be var(--dark-maroon) or a new var */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        display: none;
    }
    .hero-title {
        font-size: 48px;
    }
}

/* EVENTS SECTION */
.events-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 0, 0, 0.08) 100%);
    position: relative;
    z-index: 2;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--deep-crimson);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ivory);
}

.events-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 280px;
}

.event-card {
    background: rgba(27, 23, 23, 0.85); /* Updated from diff */
    border: 1px solid var(--dark-maroon); /* Updated from diff */
    padding: 24px; /* Updated from diff */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease; /* Updated from diff */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    backdrop-filter: blur(10px); /* Added from diff */
    -webkit-backdrop-filter: blur(10px); /* Added from diff */
    border-radius: 4px; /* Added from diff */
}

.event-card::before {
    content: '';
    position: absolute;
    inset: 0; /* Updated from diff */
    background: repeating-linear-gradient( /* Updated from diff */
            0deg,
            rgba(225, 6, 0, 0.03) 1px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none; /* Added from diff */
    opacity: 0; /* Updated from diff */
    transition: opacity 0.3s;
    z-index: -1;
}

.event-card:hover {
    border-color: var(--deep-crimson);
    transform: translateY(-4px); /* Updated from diff */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(129, 1, 0, 0.05); /* Updated from diff */
    background: rgba(27, 23, 23, 0.95); /* Updated from diff */
}

.event-card:hover::before {
    opacity: 1; /* Updated from diff */
}

.event-card.large {
    grid-column: auto;
    grid-row: auto;
}

.event-card.wide {
    grid-column: auto;
}

.badge {
    background: rgba(129, 1, 0, 0.2);
    color: var(--ivory);
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid var(--dark-maroon);
}

.event-card h3 {
    font-size: 19px; /* Original value. There was a duplicate entry for h3 further down. Merged. */
    font-weight: 700;
    margin-bottom: 12px; /* Original value. There was a duplicate entry for h3 further down. Merged. */
    color: var(--ivory);
    text-transform: uppercase; /* Merged from duplicate h3 */
}

.event-card p {
    font-size: 14px; /* Original value. There was a duplicate entry for p further down. Merged. */
    color: var(--muted-ivory); /* Original value. Merged with #999 and updated */
    line-height: 1.6; /* Merged from duplicate p */
    margin-bottom: 15px; /* Merged from duplicate p */
}

.difficulty {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    margin-top: auto;
}

.beginner {
    background: #10B981;
    color: var(--charcoal);
}

.intermediate {
    background: #F59E0B;
    color: var(--charcoal);
}

.advanced {
    background: var(--deep-crimson);
    color: var(--charcoal);
}

.btn-card {
    color: var(--red-accent); /* Updated from diff */
    transition: all 0.3s ease; /* Updated from diff */
    background: none; /* Updated from diff */
    border: none; /* Updated from diff */
    padding: 0; /* Updated from diff */
    font-weight: 700;
    cursor: pointer;
    /* font-size: 14px; Removed from original, already handled by the above rule */
    margin-top: 15px; /* Original value. Kept to ensure margin. */
}

.event-card:hover .btn-card { /* Added from diff */
    color: var(--ivory);
    position: relative;
}

.event-card:hover .btn-card::after { /* Added from diff */
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--ivory);
    animation: underlineDraw 0.3s ease forwards;
}

@keyframes underlineDraw { /* Added from diff */
    to { width: 100%; }
}

@media (max-width: 1024px) {
    .events-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 15px;
    }
    
    .navbar {
        height: 60px;
    }
    
    .nav-logo img {
        height: 32px;
    }
    
    .nav-menu li {
        padding: 12px 14px;
    }
    
    .hero {
        padding: 55px 0 35px;
    }
    
    .hero-wrapper {
        padding: 0 16px;
        gap: 14px;
    }
    
    .hero-title {
        font-size: 34px;
        margin-bottom: 10px;
    }
    
    .hero-title img {
        max-width: 260px;
        width: 100%;
        height: auto;
    }
    
    .hero-tagline {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 12px;
        margin-bottom: 14px;
        line-height: 1.5;
    }
    
    .cta-buttons {
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .btn-red,
    .btn-secondary {
        padding: 13px 18px;
        font-size: 12px;
        box-sizing: border-box;
        flex: none;
        width: 100%;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 28px;
        letter-spacing: 1.5px;
    }
    
    .section-label {
        font-size: 10px;
    }
    
    .events-section,
    .speakers-section,
    .schedule-section,
    .register-section,
    .why-cogniverge {
        padding: 45px 16px;
    }
    
    .events-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 14px;
    }
    
    .event-card {
        padding: 16px;
    }
    
    .event-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .event-card p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .badge {
        font-size: 9px;
        padding: 5px 10px;
    }
    
    .speakers-container {
        gap: 14px;
    }
    
    .speaker-card {
        padding: 20px 16px;
        min-height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .speaker-card-inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .speaker-front,
    .speaker-back {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
    
    .speaker-card h4 {
        font-size: 14px;
        text-align: center;
        margin-bottom: 0;
    }
    
    .speaker-photo {
        font-size: 50px;
        margin-bottom: 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 50px;
        flex-shrink: 0;
    }
    
    .schedule-days {
        gap: 8px;
        padding: 0 16px 14px 0;
        margin: 0 -16px 20px -16px;
    }
    
    .day-tab {
        min-width: 100px;
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .day-tab:first-child {
        margin-left: 16px;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 12px;
        padding: 16px 0;
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -11px;
    }
    
    .time {
        font-size: 10px;
    }
    
    .timeline-item h4 {
        font-size: 14px;
    }
    
    .timeline-item p {
        font-size: 11px;
    }
    
    .event-options {
        gap: 12px;
    }
    
    .event-option {
        padding: 16px;
    }
    
    .event-option span {
        font-size: 13px;
    }
    
    .event-option p {
        font-size: 11px;
    }
    
    .features-grid {
        gap: 16px;
    }
    
    .feature-block {
        padding: 20px 16px;
    }
    
    .feature-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .feature-counter {
        font-size: 26px;
        margin: 8px 0;
    }
    
    .feature-label {
        font-size: 10px;
    }
    
    .footer {
        padding: 35px 16px 20px;
    }
    
    .footer-brand h3 {
        font-size: 16px;
    }
    
    .footer-nav {
        gap: 12px 10px;
        margin: 15px 0;
    }
    
    .footer-nav a {
        font-size: 11px;
    }
}
/* SCHEDULE SECTION */
.schedule-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 0, 0, 0.08) 100%);
    position: relative;
    z-index: 2;
}

.schedule-days {
    display: flex;
    gap: 20px;
    margin: 50px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.day-tab {
    flex: 1;
    padding: 14px 18px;
    background: rgba(27, 23, 23, 0.85);
    border: 1px solid var(--dark-maroon);
    color: var(--ivory);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
}

.day-tab.active {
    background: var(--deep-crimson);
    border-color: var(--deep-crimson);
    color: var(--ivory);
}

.day-number {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
}

.schedule-display {
    max-width: 1400px;
    margin: 0 auto;
}

.day-schedule {
    display: none;
}

.day-schedule.active {
    display: block;
    animation: fadeIn 0.3s ease-out; /* Updated from diff */
}

/* This was a duplicate timeline-item block that was incorrectly positioned and overriding. Consolidated with the main timeline-item. */
/*
.day-schedule .timeline-item {
    background: linear-gradient(135deg, rgba(26, 10, 10, 0.3) 0%, rgba(50, 15, 15, 0.2) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 20px 25px 20px 50px;
    border-left: 2px solid rgba(255, 30, 30, 0.4);
}
*/

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 25px 0;
    padding-left: 40px; /* Updated from diff */
    margin-left: 0;
    border-left: 2px solid var(--dark-maroon);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 30px; /* Added from diff */
    /* background, backdrop-filter, border-radius moved to day-schedule .timeline-item if needed specific for active schedules */
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px; /* Updated from diff */
    top: 0; /* Updated from diff */
    width: 18px; /* Updated from diff */
    height: 18px; /* Updated from diff */
    background: var(--charcoal);
    border: 2px solid var(--red-accent); /* Updated from diff */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(129, 1, 0, 0.5); /* Kept original box-shadow to override/combine */
    animation: pulseNode 2s ease-in-out infinite;
}

.timeline-item:hover {
    border-left-color: var(--red-accent);
    padding-left: 50px;
}

.timeline-item:hover::before {
    animation: pulseNodeActive 0.6s ease-in-out;
}

@keyframes pulseNode {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 30, 30, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 30, 30, 0); /* Updated from diff */
    }
}

@keyframes pulseNodeActive {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.timeline-item:last-child {
    border-left: 2px solid var(--dark-maroon);
}

.time {
    font-weight: 700;
    color: var(--red-accent); /* Updated from diff */
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.timeline-item .event {
    padding-bottom: 0;
}

.timeline-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--ivory);
}

.timeline-item p {
    color: var(--red-accent);
    font-size: 14px;
}

/* SPEAKERS SECTION */
.speakers-section {
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.speakers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.speaker-card {
    background: linear-gradient(180deg, var(--charcoal) 0%, rgba(99, 0, 0, 0.2) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--dark-maroon);
    transition: transform 0.6s; /* Updated from diff */
    cursor: pointer;
    position: relative;
    min-height: 280px;
    /* display: flex; Removed from diff */
    /* flex-direction: column; Removed from diff */
    /* justify-content: center; Removed from diff */
    perspective: 1000px; /* Updated from diff */
    border-radius: 4px;
    height: 280px; /* Added from diff */
    transform-style: preserve-3d; /* Added from diff */
}

.speaker-card-inner { /* Added from diff */
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.speaker-front,
.speaker-back { /* Added from diff */
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.speaker-back { /* Added from diff */
    transform: rotateY(180deg);
    background: rgba(225, 6, 0, 0.1);
    border: 2px solid var(--red-accent);
}

.speaker-card:hover {
    border-color: var(--deep-crimson); /* Kept original */
    transform: rotateY(180deg); /* Updated from diff */
    box-shadow: 0 0 30px rgba(225, 6, 0, 0.5); /* Updated from diff */
    /* background: linear-gradient(180deg, rgba(27, 23, 23, 0.95) 0%, rgba(99, 0, 0, 0.3) 100%); Removed, handled by speaker-back */
}

.speaker-photo {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s;
    animation: photoFloat 3s ease-in-out infinite;
}

@keyframes photoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.speaker-card:hover .speaker-photo {
    transform: scale(1.2);
    animation: none;
}

.speaker-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.role {
    color: var(--red-accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.role::before {
    content: '';
    margin-right: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.speaker-card:hover .role {
    color: var(--deep-crimson);
}

@media (max-width: 768px) {
    .speakers-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .speakers-container {
        grid-template-columns: 1fr;
    }
}

/* REGISTRATION SECTION */
.register-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 0, 0, 0.1) 100%);
    position: relative;
    z-index: 2;
}

.register-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.register-header {
    margin-bottom: 50px;
}

.register-header h2 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.register-header p {
    color: #999;
    font-size: 16px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--red-accent);
}

.event-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.event-option {
    background: rgba(27, 23, 23, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--dark-maroon);
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 4px;
}

.event-option:hover {
    border-color: var(--deep-crimson);
    background: rgba(27, 23, 23, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(129, 1, 0, 0.05);
}

.event-option span {
    font-weight: 600;
    font-size: 15px;
    color: var(--ivory);
}

.event-option p {
    font-size: 12px;
    color: var(--muted-ivory); /* Corrected from var(#999) */
}

.form-note {
    font-size: 12px;
    color: var(--muted-ivory); /* Corrected from var(#999) */
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 768px) {
    .event-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .event-options {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    background: rgba(27, 23, 23, 0.8);
    padding: 50px 40px 20px;
    border-top: 1px solid var(--dark-maroon);
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.footer::before { /* Added from diff */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        var(--deep-crimson),
        var(--deep-crimson) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: circuitFlow 3s linear infinite;
}

@keyframes circuitFlow { /* Added from diff */
    from {
        background-position: 0;
    }
    to {
        background-position: 20px;
    }
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--ivory);
}

.footer-brand p {
    font-size: 13px;
    color: var(--muted-ivory); /* Original value. There was a duplicate entry for p further down. Merged. */
    font-weight: 600; /* Merged from duplicate p */
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.footer-nav a {
    position: relative; /* Added from diff */
    transition: all 0.3s ease; /* Updated from diff */
    color: var(--ivory); /* Added from diff */
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.footer-nav a::after { /* Added from diff */
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--deep-crimson);
    box-shadow: none;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--deep-crimson);
}

.footer-nav a:hover::after { /* Added from diff */
    width: 100%;
}

.footer-line {
    height: 1px;
    background: var(--dark-maroon);
    margin-bottom: 30px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    font-size: 13px;
    position: relative; /* Added from diff */
    z-index: 1; /* Added from diff */
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--dark-gray);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid var(--deep-crimson);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--deep-crimson);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--ivory);
}

#modalBody h2 {
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#modalBody p {
    color: #999;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* TABLET & MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    body {
        background: linear-gradient(180deg, var(--charcoal) 0%, #2a1f1f 50%, var(--dark-maroon) 100%);
        background-attachment: scroll;
    }
    
    .nav-wrapper {
        padding: 0 16px;
        justify-content: space-between;
    }
    
    .nav-logo img {
        height: 35px;
        width: auto;
    }
    
    .nav-menu {
        padding: 20px 0;
    }
    
    .nav-menu li {
        padding: 12px 16px;
    }
    
    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-wrapper {
        padding: 0 18px;
        grid-template-columns: 1fr;
        gap: 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transform: translateY(-20px);
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    .hero-title img {
        max-width: 280px;
        width: 100%;
        height: auto;
    }
    
    .hero-tagline {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        display: flex;
        box-sizing: border-box;
        padding: 0;
    }
    
    .btn-red,
    .btn-secondary {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        letter-spacing: 1px;
        box-sizing: border-box;
        flex: none;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
        font-weight: 700;
        letter-spacing: 2px;
        line-height: 1.3;
    }
    
    .section-label {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }
    
    .events-section,
    .speakers-section,
    .schedule-section,
    .register-section,
    .why-cogniverge {
        padding: 50px 20px;
        position: relative;
        z-index: 2;
    }
    
    .events-masonry {
        grid-template-columns: 1fr;
        gap: 16px;
        grid-auto-rows: auto;
    }
    
    .event-card {
        padding: 18px;
        border-radius: 4px;
    }
    
    .event-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .event-card p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .speakers-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .speaker-card {
        min-height: 180px;
        padding: 24px 20px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .speaker-card-inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .speaker-front,
    .speaker-back {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
    
    .speaker-card h4 {
        font-size: 15px;
        margin-bottom: 0;
        text-align: center;
    }
    
    .speaker-photo {
        font-size: 50px;
        margin-bottom: 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 56px;
        flex-shrink: 0;
    }
    
    .speaker-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 100%;
    }
    
    .speaker-info h4 {
        margin: 0;
        text-align: center;
    }
    
    .role {
        font-size: 12px;
        text-align: center;
        margin: 0;
    }
    
    .schedule-days {
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        padding: 0 20px 16px 0;
        margin: 0 -20px 24px -20px;
    }
    
    .day-tab {
        min-width: 110px;
        padding: 12px 16px;
        font-size: 12px;
        white-space: nowrap;
        border-radius: 4px;
    }
    
    .day-tab:first-child {
        margin-left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: 16px;
        padding: 18px 0;
        padding-left: 24px;
        border-left-width: 2px;
    }
    
    .timeline-item::before {
        left: -13px;
        width: 18px;
        height: 18px;
    }
    
    .time {
        font-size: 11px;
        font-weight: 700;
    }
    
    .timeline-item h4 {
        font-size: 15px;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .timeline-item p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .event-options {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .event-option {
        padding: 18px;
        border-radius: 4px;
    }
    
    .event-option span {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .event-option p {
        font-size: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .feature-block {
        padding: 24px 20px;
        text-align: center;
        border-radius: 4px;
    }
    
    .feature-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .feature-counter {
        font-size: 28px;
        margin: 10px 0;
    }
    
    .feature-label {
        font-size: 11px;
    }
    
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-brand h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .footer-brand p {
        font-size: 12px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 16px 12px;
        margin: 20px 0;
    }
    
    .footer-nav a {
        font-size: 12px;
    }
}

/* WHY COGNIVERGE SECTION */
.why-cogniverge {
    padding: 100px 40px; /* Updated from diff */
    background: linear-gradient(180deg, rgba(225, 6, 0, 0.05) 0%, transparent 100%); /* Updated from diff */
    border-top: 1px solid var(--dark-maroon); /* Added from diff */
    border-bottom: 1px solid var(--dark-maroon); /* Added from diff */
    position: relative; /* Added from diff */
    z-index: 1; /* Added from diff */
}

.why-cogniverge .section-title { /* Added from diff */
    text-align: center;
    margin-bottom: 60px;
    animation: titleReveal 0.8s ease-out;
}

@keyframes titleReveal { /* Added from diff */
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-grid {
    display: grid; /* Already present */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Updated from diff */
    gap: 30px; /* Updated from diff */
    max-width: 1200px; /* Added from diff */
    margin: 0 auto; /* Added from diff */
}

.feature-block {
    text-align: center; /* Added from diff */
    padding: 30px; /* Updated from diff */
    border: 2px solid var(--dark-maroon); /* Updated from diff */
    transition: all 0.3s ease; /* Added from diff */
    animation: blockSlideUp 0.6s ease-out both; /* Added from diff */
}

.feature-block:nth-child(1) { animation-delay: 0.1s; } /* Added from diff */
.feature-block:nth-child(2) { animation-delay: 0.2s; } /* Added from diff */
.feature-block:nth-child(3) { animation-delay: 0.3s; } /* Added from diff */
.feature-block:nth-child(4) { animation-delay: 0.4s; } /* Added from diff */

@keyframes blockSlideUp { /* Added from diff */
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-block:hover { /* Added from diff */
    border-color: var(--red-accent);
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(225, 6, 0, 0.3);
}

.feature-icon {
    font-size: 40px; /* Updated from diff */
    margin-bottom: 15px; /* Updated from diff */
    animation: iconFloat 3s ease-in-out infinite; /* Added from diff */
}

@keyframes iconFloat { /* Added from diff */
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-counter {
    font-size: 32px; /* Updated from diff */
    font-weight: 700; /* Added from diff */
    color: var(--red-accent); /* Added from diff */
    margin: 10px 0; /* Updated from diff */
}

.feature-label {
    font-size: 14px; /* Updated from diff */
    color: var(--ivory); /* Added from diff */
    text-transform: uppercase; /* Added from diff */
    letter-spacing: 1px; /* Added from diff */
}

/* FLOATING RED DOTS */
.red-dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.red-dots span {
    position: absolute;
    top: 100%;
    width: 6px;
    height: 6px;
    background: var(--deep-crimson);
    border-radius: 50%;
    opacity: 0.8;
    animation-name: floatDots;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    box-shadow: 0 0 10px rgba(185, 28, 28, 0.6);
}

@keyframes floatDots {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-120vh);
    }
}

:root {
    --scroll-width: 0%; /* Duplicated, moving this to top :root */
}

/* SCROLL PROGRESS BAR */
html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-crimson), var(--red-accent));
    z-index: 1001;
    width: var(--scroll-width);
    transition: width 0.1s ease;
}

/* SCROLL ANIMATIONS */ /* Added from diff */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: scrollReveal 0.6s ease-out forwards;
}

@keyframes scrollReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECTION DIVIDERS */ /* Added from diff */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(129, 1, 0, 0.4), rgba(99, 0, 0, 0.3), transparent);
    margin: 0;
    box-shadow: 0 0 15px rgba(129, 1, 0, 0.2);
}

.events-section::before,
.schedule-section::before,
.speakers-section::before,
.register-section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(129, 1, 0, 0.4), rgba(99, 0, 0, 0.3), transparent);
    box-shadow: 0 0 15px rgba(129, 1, 0, 0.2);
    margin-bottom: 40px;
}

/* ULTRA-SMALL DEVICES */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .navbar {
        height: 56px;
        padding: 0 12px;
    }
    
    .nav-logo img {
        height: 28px;
    }
    
    .hero {
        padding: 50px 0 30px;
    }
    
    .hero-wrapper {
        padding: 0 14px;
        gap: 12px;
    }
    
    .hero-title {
        font-size: 30px;
        margin-bottom: 8px;
    }
    
    .hero-title img {
        max-width: 240px;
        width: 100%;
        height: auto;
    }
    
    .hero-tagline {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .hero-description {
        font-size: 11px;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .cta-buttons {
        gap: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .btn-red,
    .btn-secondary {
        padding: 12px 16px;
        font-size: 11px;
        box-sizing: border-box;
        flex: none;
        width: 100%;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 24px;
        letter-spacing: 1px;
    }
    
    .events-section,
    .speakers-section,
    .schedule-section,
    .register-section,
    .why-cogniverge {
        padding: 40px 14px;
    }
    
    .events-masonry {
        gap: 12px;
    }
    
    .event-card {
        padding: 14px;
    }
    
    .event-card h3 {
        font-size: 14px;
    }
    
    .event-card p {
        font-size: 12px;
    }
    
    .speakers-container {
        gap: 12px;
    }
    
    .speaker-card {
        padding: 18px 14px;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .speaker-card-inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .speaker-front,
    .speaker-back {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    
    .speaker-photo {
        font-size: 42px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 45px;
        flex-shrink: 0;
    }
    
    .speaker-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        width: 100%;
    }
    
    .speaker-info h4 {
        margin: 0;
        text-align: center;
        font-size: 13px;
    }
    
    .role {
        font-size: 11px;
        text-align: center;
        margin: 0;
    }
    
    .features-grid {
        gap: 14px;
    }
    
    .feature-block {
        padding: 18px 14px;
    }
    
    .feature-icon {
        font-size: 30px;
    }
    
    .feature-counter {
        font-size: 24px;
    }
    
    .feature-label {
        font-size: 9px;
    }
    
    .timeline-item {
        grid-template-columns: 55px 1fr;
        gap: 10px;
        padding: 14px 0;
        padding-left: 18px;
    }
    
    .timeline-item::before {
        left: -10px;
        width: 16px;
        height: 16px;
    }
    
    .time {
        font-size: 9px;
    }
    
    .timeline-item h4 {
        font-size: 13px;
    }
    
    .day-tab {
        min-width: 90px;
        padding: 9px 12px;
        font-size: 10px;
    }
    
    .event-option {
        padding: 14px;
    }
    
    .footer {
        padding: 30px 14px 16px;
    }
    
    .footer-brand h3 {
        font-size: 15px;
    }
    
    .footer-nav a {
        font-size: 10px;
    }
}

/* REDUCED MOTION PREFERENCES */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body::before,
    body::after {
        animation: none !important;
    }
    
    .hero-background {
        animation: none !important;
    }
    
    .speaker-photo {
        animation: none !important;
    }
    
    .feature-icon {
        animation: none !important;
    }
}

/* PERFORMANCE OPTIMIZATIONS */
@media (max-width: 480px) {
    body::before,
    body::after {
        display: none;
    }
    
    .hero-background {
        animation: none;
    }
    
    .event-card::before {
        opacity: 0;
    }
    
    .timeline-item::before {
        animation: none;
    }
}



.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;            /* white icon */
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.social-icon:hover {
  color: #e10600;
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(225, 6, 0, 0.6));
}




/* ===== Custom Scrollbar ===== */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #e10600 #0b0b0b;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0b0b0b;      /* dark track */
}

::-webkit-scrollbar-thumb {
  background: #e10600;      /* red thumb */
  border-radius: 10px;
  border: 2px solid #0b0b0b;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff2a2a;      /* brighter red on hover */
}
