/* Wouter Timeline Styles */

.wt-outer {
    background: #050505;
    color: #ffffff;
    padding: 100px 20px;
    font-family: sans-serif;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.wt-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.wt-main-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 6vw, 60px);
    line-height: 1.2;
    margin-bottom: 80px;
    color: #ffffff;
    font-weight: normal;
    letter-spacing: 0.05em;
}

.wt-y-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
}

.wt-y-badge {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    padding: 15px 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 8vw, 75px);
    letter-spacing: 0.2em;
    border-radius: 0;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.2);
}

.wt-y-line {
    width: 2px;
    height: 80px;
    background: #ffffff;
}

.wt-e-row {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
}

.wt-icon-node {
    width: 52px;
    height: 52px;
    background: #000;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    transition: all 0.5s ease;
    color: #ffffff;
}

.wt-e-row:hover .wt-icon-node {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateX(-50%) scale(1.25) rotate(12deg);
    box-shadow: 0 0 40px rgba(255,255,255,0.4);
}

.wt-icon-node svg {
    width: 24px;
    height: 24px;
}

.wt-card {
    width: 100%;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    position: relative;
    transition: all 0.6s ease;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}

.wt-e-row:hover .wt-card {
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-10px);
}

.wt-t-label {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

.is-rev .wt-t-label {
    justify-content: flex-end;
}

.wt-t-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 5vw, 65px);
    line-height: 0.95;
    margin: 0 0 15px 0;
    color: #ffffff;
    font-weight: normal;
}

.wt-t-desc {
    color: #ffffff;
    line-height: 1.5;
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.wt-v-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
    display: block;
}

.wt-v-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: all 0.7s ease;
}

.wt-v-box:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.wt-v-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.wt-song-text {
    margin-top: 15px;
    color: #ffffff;
    font-size: 14px;
    text-align: left;
    font-weight: normal;
}

.wt-website-btn {
    display: inline-block;
    margin-top: 25px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.wt-website-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Desktop styles */
@media(min-width: 768px) {
    .wt-e-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .wt-e-row.is-rev {
        flex-direction: row-reverse;
    }

    .wt-e-row::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: -120px;
        width: 1px;
        background: #ffffff;
        z-index: 1;
        transform: translateX(-50%);
    }

    .wt-card {
        width: 45%;
        padding: 40px;
    }

    .wt-t-label {
        font-size: 14px;
        letter-spacing: 0.2em;
        margin-bottom: 20px;
        gap: 10px;
    }

    .wt-t-title {
        margin: 0 0 25px 0;
    }

    .wt-t-desc {
        line-height: 1.8;
        font-size: 17px;
        margin-bottom: 35px;
    }
}

/* Mobile styles */
@media(max-width: 767px) {
    .wt-outer {
        padding: 50px 10px;
    }

    .wt-main-title {
        margin-bottom: 50px;
    }

    .wt-y-block {
        margin-bottom: 40px;
    }

    .wt-y-badge {
        padding: 10px 30px;
    }

    .wt-y-line {
        height: 40px;
    }

    .wt-card {
        text-align: left !important;
    }

    .wt-t-label {
        justify-content: flex-start !important;
    }

    .wt-song-text {
        margin-top: 10px;
        font-size: 12px;
    }

    .wt-website-btn {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 12px;
    }

    .wt-icon-node {
        display: none;
    }
}
