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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logoImg {
    height: 2.5rem;
    width: auto;
    margin-right: 1rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logoImg:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    color: #F377AD;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-btn:hover {
    color: #F377AD;
}

/* HAMBURGER MENU */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 90;
    transition: right 0.4s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(213, 99, 148, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 6rem 2rem 2rem;
}

.mobile-menu-section {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-title {
    width: 100%;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 1.2rem 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-menu-title:hover {
    color: #F377AD;
    background-color: rgba(213, 99, 148, 0.5);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-menu-section.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: rgba(213, 99, 148, 0.5);
}

.mobile-menu-section.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu-link {
    display: block;
    color: #CCCCCC;
    text-decoration: none;
    padding: 1rem 1.5rem 1rem 2rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-link:hover {
    color: #FFFFFF;
    background-color: rgba(213, 99, 148, 0.5);
    border-left-color: #F377AD;
    padding-left: 2.5rem;
}

.desktop-only {
    display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 90%;
    }
    
    .mobile-menu-title {
        font-size: 1.1rem;
        padding: 1rem 0.8rem;
    }
    
    .mobile-submenu-link {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem 0.9rem 1.5rem;
    }
}

/* BACKDROP */
.backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background-color: #000000;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    padding: 2rem;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.sidebar-title {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    font-weight: 300;
}

.close-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-link {
    display: block;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: #F377AD;
    border-bottom-color: rgba(213, 99, 148, 0.5);
}

/* COMMON SECTION STYLES */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.section-container-full {
    padding: 8rem 2rem 4rem;
}

.section-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    color: #F377AD;
    font-weight: 300;
    margin-bottom: 4rem;
}

/* WORKSHOP SECTION */
.workshop-section {
    min-height: 100vh;
    background-color: #000000;
}

.workshop-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #CCCCCC;
    font-weight: 300;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.workshop-card {
    background-color: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    display: flex;
}

.workshop-card:hover {
    transform: translateY(-10px);
    border-color: rgba(213, 99, 148, 0.5);
    box-shadow: 0 10px 40px rgba(213, 99, 148, 0.5);
}

.workshop-date {
    background: linear-gradient(135deg, #F377AD 0%, #b00f15 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-day {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.date-month {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.date-year {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.workshop-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-title {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.workshop-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #AAAAAA;
    margin-bottom: 1.5rem;
    flex: 1;
}

.workshop-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #CCCCCC;
}

.detail-icon {
    font-size: 1.2rem;
}

.workshop-btn {
    padding: 0.75rem 2rem;
    background-color: transparent;
    border: 2px solid #F377AD;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workshop-btn:hover {
    background-color: #F377AD;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(213, 99, 148, 0.5);
}

/* EVENTS SECTION */
.events-section {
    min-height: 100vh;
    background-color: #0a0a0a;
}

.events-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.events-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #F377AD 0%, rgba(213, 99, 148, 0.5) 100%);
}

.event-card {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 50px;
}

.event-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0a0a0a;
    border: 3px solid #F377AD;
    z-index: 2;
    transition: all 0.3s ease;
}

.event-card:hover .event-marker {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(213, 99, 148, 0.5);
}

.event-content {
    background-color: #0f0f0f;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.event-card:hover .event-content {
    border-color: rgba(213, 99, 148, 0.5);
    transform: translateX(10px);
    background-color: rgba(224, 18, 26, 0.03);
}

.event-date {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #F377AD;
    background-color: rgba(224, 18, 26, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.event-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #CCCCCC;
    margin-bottom: 1rem;
}

.event-location {
    font-size: 0.95rem;
    color: #888888;
    font-style: italic;
}

/* COLLABORATIONS - SPONSORS CAROUSEL */
.collaborations-section {
    min-height: 60vh;
    background-color: #000000;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.sponsors-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
}

.sponsors-carousel {
    display: flex;
    gap: 4rem;
    width: fit-content;
    will-change: transform;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100px;
    flex-shrink: 0;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    border-color: rgba(213, 99, 148, 0.5);
    box-shadow: 0 8px 30px rgba(213, 99, 148, 0.4);
}

.sponsor-logo-img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.sponsor-item:hover .sponsor-logo-img {
    filter: grayscale(0%) brightness(1);
}

.sponsor-logo-img-b{
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: invert(0.2);
    transition: filter 0.3s ease;
}

.sponsor-item:hover .sponsor-logo-img-b {
    filter: invert(0.85);
}

/* NEWS SECTION */
.news-section {
    min-height: 100vh;
    background-color: #0a0a0a;
}

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

.news-card {
    background-color: #0f0f0f;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(213, 99, 148, 0.5);
    box-shadow: 0 10px 40px rgba(213, 99, 148, 0.4);
}

.news-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.news-read-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #F377AD;
    backdrop-filter: blur(10px);
    border: none;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.news-read-btn:hover {
    background-color: #F377AD;
    transform: scale(1.05);
}

.news-preview {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.85rem;
    color: #F377AD;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* NEWS ARTICLE */
.news-article {
    max-width: 1000px;
    margin: 3rem auto 0;
    background-color: #0f0f0f;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    position: relative;
    animation: slideDown 0.5s ease;
}

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

.news-article.active {
    display: block;
}

.article-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(213, 99, 148, 0.3);
    border: 1px solid rgba(213, 99, 148, 0.5);
    color: #F377AD;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-close-btn:hover {
    background-color: #F377AD;
    color: #FFFFFF;
    transform: rotate(90deg);
}

.article-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #F377AD;
    margin-bottom: 1rem;
}

.article-content .article-date {
    font-size: 0.95rem;
    color: #888888;
    margin-bottom: 2rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #CCCCCC;
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state h3 {
    font-size: 2rem;
    color: #888888;
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* FOOTER */
footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: #888888;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .workshop-card {
        flex-direction: column;
    }

    .workshop-date {
        min-width: auto;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }

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

    .sidebar {
        width: 80%;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
    }

    .events-timeline {
        padding-left: 30px;
    }

    .events-timeline::before {
        left: 10px;
    }

    .event-card {
        padding-left: 40px;
    }

    .event-marker {
        left: -20px;
        width: 16px;
        height: 16px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-article {
        padding: 2rem 1.5rem;
    }

    .article-content h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-btn {
        font-size: 0.7rem;
    }

    .sponsor-item {
        min-width: 220px;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .workshop-title {
        font-size: 1.2rem;
    }

    .event-title {
        font-size: 1.4rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logoImg {
        height: 2rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content p {
        font-size: 1rem;
    }
}

/* ==================== WORK IN PROGRESS SECTION ==================== */
.wip-section {
    min-height: 100vh;
    background-color: #000000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wip-container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* BANDE GIALLE ORIZZONTALI */
.wip-stripe {
    width: 100%;
    height: 100px;
    background: repeating-linear-gradient(
        45deg,
        #FFD700,
        #FFD700 30px,
        #000000 30px,
        #000000 60px
    );
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 30px rgba(255, 215, 0, 0.6),
        inset 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.wip-stripe-top {
    position: absolute;
    top: 6rem; /* Usa rem per scalare con il font */
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .wip-stripe-top {
        top: 5rem; /* Navbar più piccola su mobile */
    }
}

.wip-stripe-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Contenuto delle bande */
.wip-stripe-content,
.wip-stripe-content-reverse {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    position: absolute;
    top: 0;
    height: 100%;
    padding: 0 2rem;
}

.wip-stripe-content {
    animation: scrollLeft 25s linear infinite;
}

.wip-stripe-content-reverse {
    animation: scrollRight 25s linear infinite;
}

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

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

.wip-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: #000000;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6);
}

.wip-arrow {
    font-size: 2.5rem;
    color: #000000;
    font-weight: bold;
    letter-spacing: -0.1em;
}

/* CONTENUTO CENTRALE */
.wip-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.wip-icon {
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.wip-icon svg {
    color: #F377AD;
    filter: drop-shadow(0 0 20px #F377AD);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.15) rotate(5deg);
        opacity: 0.8;
    }
}

.wip-title {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 10px rgba(224, 18, 26, 0.5),
        0 0 20px rgba(224, 18, 26, 0.3),
        0 0 30px rgba(224, 18, 26, 0.2);
}

.wip-message {
    font-size: 1.3rem;
    color: #CCCCCC;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* GLITCH TEXT EFFECT */
.wip-glitch-text {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: #FFD700;
    position: relative;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        2px 2px 0 #E0121A,
        -2px -2px 0 #00FFFF;
    animation: glitch 1s infinite;
}

.wip-glitch-text::before,
.wip-glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wip-glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #E0121A;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.wip-glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 #00FFFF;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            2px 2px 0 #E0121A,
            -2px -2px 0 #00FFFF;
    }
    25% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            -2px -2px 0 #E0121A,
            2px 2px 0 #00FFFF;
    }
    50% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            2px -2px 0 #E0121A,
            -2px 2px 0 #00FFFF;
    }
    75% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            -2px 2px 0 #E0121A,
            2px -2px 0 #00FFFF;
    }
    100% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            2px 2px 0 #E0121A,
            -2px -2px 0 #00FFFF;
    }
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    20% { clip: rect(85px, 9999px, 140px, 0); }
    40% { clip: rect(48px, 9999px, 95px, 0); }
    60% { clip: rect(120px, 9999px, 180px, 0); }
    80% { clip: rect(25px, 9999px, 65px, 0); }
    100% { clip: rect(90px, 9999px, 150px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    20% { clip: rect(29px, 9999px, 83px, 0); }
    40% { clip: rect(103px, 9999px, 165px, 0); }
    60% { clip: rect(42px, 9999px, 98px, 0); }
    80% { clip: rect(76px, 9999px, 132px, 0); }
    100% { clip: rect(11px, 9999px, 55px, 0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .wip-stripe {
        height: 70px;
    }

    .wip-text {
        font-size: 1.4rem;
    }

    .wip-arrow {
        font-size: 1.8rem;
    }

    .wip-title {
        font-size: 2.2rem;
    }

    .wip-message {
        font-size: 1.1rem;
    }

    .wip-glitch-text {
        font-size: 2rem;
    }

    .wip-icon svg {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .wip-stripe {
        height: 60px;
    }

    .wip-text {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .wip-arrow {
        font-size: 1.3rem;
    }

    .wip-title {
        font-size: 1.6rem;
        letter-spacing: 0.15em;
    }

    .wip-message {
        font-size: 0.95rem;
    }

    .wip-glitch-text {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
    }

    .wip-icon svg {
        width: 70px;
        height: 70px;
    }
}