.vdw-page {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 20px;
}

.vdw-title {
    text-align: center;
    color: #A23131;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vdw-description {
    text-align: center;
    color: #bdc3c7;
    margin-bottom: 40px;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.vdw-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.vdw-item {
    background: rgb(22, 1, 1);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(156, 0, 0, 0.1);
}

.vdw-item:hover {
    transform: translateX(5px);
    background: rgba(71, 21, 21, 0.568);
    border-left: 4px solid rgba(109, 0, 0, 0.568);
}

.vdw-item a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.vdw-item a::before {
    content: "▶";
    margin-right: 10px;
    color:  rgb(85, 19, 19);
    font-size: 0.8rem;
}

.vdw-item:hover a::before {
    color: rgb(136, 0, 0);
}

@media (max-width: 768px) {
    .vdw-title {
        font-size: 2rem;
    }
    
    .vdw-item {
        padding: 12px 15px;
    }
}

html, body {
    height: 100%;
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

