

.vanAnim {
    position: relative;
    height: auto;
}

.vanAnimContainer {
    width: 90%;
    margin: 0 auto;
    height: 85%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    
     background: rgb(224, 225, 226);
        border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.vanAnimContainer .vanAnimArea {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


.vanAnimContainer .roadContainer {
    width: 100%;
    height: 100px;
    background-color: #696969;
    position: absolute;
    bottom: 0;
    overflow: hidden;
}

.vanAnimContainer .roadLines {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 8px;
}

.vanAnimContainer .vanContainer {
    position: absolute;
    height: auto;
    width: 400px;
    bottom: 60px;
    left: -30%;
    z-index: 2;
}

.vanAnimContainer .vanContainer svg {
    width: 100%;
    height: 100%;
}


.vanAnimContainer .buildingContainer {
    position: absolute;
    width: 600px;
    height: auto;
    bottom: 93px;
    left: 100%;
    
    z-index: 1;
}

.vanAnimContainer .buildingContainer svg {
    width: 100%;
    height: 100%;
}


.vanAnimContainer .fixedContents {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.vanAnimContainer .fixedContents .animTypes {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.vanAnimContainer .fixedContents .animTypes .type {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--card-bg);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vanAnimContainer .fixedContents .animTypes .type .icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.vanAnimContainer .fixedContents .animTypes .type .icon i {
    color: #fff;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.vanAnimContainer .fixedContents .animTypes .type.active {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(2px) scale(1.05);
}

.vanAnimContainer .fixedContents .animTypes .type.active .icon,
.vanAnimContainer .fixedContents .animTypes .type:hover .icon {
    background: #fff;
}

.vanAnimContainer .fixedContents .animTypes .type.active .icon i,
.vanAnimContainer .fixedContents .animTypes .type:hover .icon i {
    color: var(--primary-color);
}

.vanAnimContainer .fixedContents .animTypes .type:hover {
    background: var(--primary-color-low);
    color: #fff;
}

.vanAnimContainer .fixedContents .infoBox {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #333;
    min-width: 200px;
    z-index: 3;
    transition: all 0.3s ease;
}

.vanAnimContainer .fixedContents .infoBox p {
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.vanAnimContainer .fixedContents .infoBox p:last-child {
    margin-bottom: 0;
}

.vanAnimContainer .fixedContents .infoBox strong {
    color: var(--primary-color);
    font-weight: 600;
}

.vanAnimContainer .contentBox {
    position: absolute;
    top: 100px;
    left: 100px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 5px;
    max-width: 300px;
    z-index: 3;
    transition: all 0.3s ease;
}

.vanAnimContainer .contentBox .title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.vanAnimContainer .contentBox .title .subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.vanAnimContainer .contentBox .description {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}


.vanAnimContainer .animProgress {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 3;
}

.vanAnimContainer .animProgress .progressBar {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.vanAnimContainer .animProgress .progressBar .progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.vanAnimContainer .animProgress .progressBar .dots {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
}

.vanAnimContainer .animProgress .progressBar .dots .dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.vanAnimContainer .animProgress .progressBar .dots .dot.active {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.2);
}


.vanAnimContainer .animProgress .progressBar .sufiLogo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vanAnimContainer .animProgress .progressBar .sufiLogo i {
    font-size: 14px;
    color: var(--primary-color);
}

/* VanAnim Responsive Styles */

@media (max-width: 1400px) {
    .vanAnimContainer {
        width: 95%;
        height: 80%;
    }

    .vanAnimContainer .vanContainer {
        width: 350px;
        bottom: 55px;
    }

    .vanAnimContainer .buildingContainer {
        width: 500px;
        bottom: 85px;
    }

    .vanAnimContainer .contentBox {
        top: 90px;
        left: 80px;
        max-width: 280px;
        padding: 18px;
    }

    .vanAnimContainer .contentBox .title {
        font-size: 1.3rem;
    }

    .vanAnimContainer .fixedContents .infoBox {
        top: 15px;
        right: 15px;
        min-width: 180px;
        font-size: 0.8rem;
        padding: 10px 14px;
    }

    .vanAnimContainer .animProgress {
        width: 280px;
        top: 65px;
    }
}

@media (max-width: 1250px) {
    .vanAnimContainer {
        width: 98%;
        height: 75%;
    }

    .vanAnimContainer .vanContainer {
        width: 300px;
        bottom: 50px;
    }

    .vanAnimContainer .buildingContainer {
        width: 450px;
        bottom: 75px;
    }

    .vanAnimContainer .roadContainer {
        height: 80px;
    }

    .vanAnimContainer .fixedContents .animTypes {
        top: 8px;
        gap: 8px;
    }

    .vanAnimContainer .fixedContents .animTypes .type {
        padding: 4px 8px;
        font-size: 0.8rem;
        gap: 4px;
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon {
        width: 20px;
        height: 20px;
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon i {
        font-size: 0.7rem;
    }

    .vanAnimContainer .fixedContents .animTypes .type .text {
        display: block; /* Yazıları göster */
    }

    .vanAnimContainer .contentBox {
        top: 70px;
        left: 60px;
        max-width: 250px;
        padding: 15px;
    }

    .vanAnimContainer .contentBox .title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .vanAnimContainer .contentBox .title .subtitle {
        font-size: 0.75rem;
    }

    .vanAnimContainer .contentBox .description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .vanAnimContainer .fixedContents .infoBox {
        top: 12px;
        right: 12px;
        min-width: 140px;
        font-size: 0.65rem;
        padding: 6px 10px;
    }

    .vanAnimContainer .animProgress {
        width: 250px;
        top: 80px; /* Progress bar'ı aşağı kaydır */
    }

    .vanAnimContainer .animProgress .progressBar {
        height: 6px;
    }

    .vanAnimContainer .animProgress .progressBar .dots .dot {
        width: 10px;
        height: 10px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo {
        width: 25px;
        height: 25px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo i {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .vanAnim {
        padding: 2rem 0;
        position: relative;
    }

    /* Butonları sağ üste taşı - minimal tasarım */
    .vanAnimContainer .fixedContents .animTypes {
        position: absolute;
        top: 8px;
        right: 8px;
        left: auto;
        transform: none;
        z-index: 15;
        padding: 3px 8px;
        gap: 4px;
        backdrop-filter: blur(10px);
        flex-direction: column;
    }

    .vanAnimContainer .fixedContents .animTypes .type {
        padding: 4px 8px;
        font-size: 0.65rem;
        border-radius: 12px;
        background: rgba(var(--primary-rgb), 0.05);
        border: 1px solid rgba(var(--primary-rgb), 0.1);
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        min-width: auto;
        justify-content: flex-start;
    }

    .vanAnimContainer .fixedContents .animTypes .type:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon {
        width: 14px;
        height: 14px;
        margin-right: 4px;
        background: var(--primary-color);
        border-radius: 3px;
        flex-shrink: 0;
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon i {
        font-size: 0.65rem;
        color: white;
    }

    .vanAnimContainer .fixedContents .animTypes .type .text {
        display: block;
        font-weight: 500;
        white-space: nowrap;
        font-size: 0.65rem;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon {
        background: white;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon i {
        color: var(--primary-color);
    }

    .vanAnimContainer {
        width: 95%;
        height: 400px;
        margin: 0 auto;
        margin-top: 0; /* Butonlar artık içeride */
    }

    .vanAnimContainer .vanContainer {
        width: 250px;
        bottom: 40px;
    }

    .vanAnimContainer .buildingContainer {
        width: 350px;
        bottom: 60px;
    }

    .vanAnimContainer .roadContainer {
        height: 70px;
    }

    .vanAnimContainer .roadLines {
        height: 6px; /* Yol çizgilerini küçült */
    }

    .vanAnimContainer .contentBox {
        top: 50px;
        left: 40px;
        max-width: 200px;
        padding: 12px;
    }

    .vanAnimContainer .contentBox .title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .vanAnimContainer .contentBox .title .subtitle {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .vanAnimContainer .contentBox .description {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .vanAnimContainer .fixedContents .infoBox {
        display: none; /* Sağ üst butonlar için yer aç */
    }

    .vanAnimContainer .animProgress {
        width: 200px;
        top: 25px; /* Progress bar'ı yukarı çek */
    }

    .vanAnimContainer .animProgress .progressBar {
        height: 5px;
    }

    .vanAnimContainer .animProgress .progressBar .dots .dot {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo {
        width: 20px;
        height: 20px;
        border-width: 1px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo i {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .vanAnim {
        padding: 1.5rem 0;
    }

    /* Butonları sağ üste taşı - mobil minimal */
    .vanAnimContainer .fixedContents .animTypes {
        position: absolute;
        top: 6px;
        right: 6px;
        left: auto;
        transform: none;
        z-index: 15;
        padding: 2px 6px;
        border-radius: 18px;
        gap: 3px;
        backdrop-filter: blur(8px);
        flex-direction: column;
    }

    .vanAnimContainer .fixedContents .animTypes .type {
        padding: 3px 6px;
        font-size: 0.6rem;
        border-radius: 2px;
        background: rgba(var(--primary-rgb), 0.05);
        border: 1px solid rgba(var(--primary-rgb), 0.08);
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        min-width: auto;
        justify-content: flex-start;
    }

    .vanAnimContainer .fixedContents .animTypes .type:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon {
        width: 12px;
        height: 12px;
        margin-right: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        flex-shrink: 0;
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon i {
        font-size: 0.5rem;
        color: white;
    }

    .vanAnimContainer .fixedContents .animTypes .type .text {
        display: block;
        font-weight: 500;
        white-space: nowrap;
        font-size: 0.6rem;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon {
        background: white;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon i {
        color: var(--primary-color);
    }

    .vanAnimContainer {
        width: 98%;
        height: 350px;
        margin-top: 0; /* Butonlar artık içeride */
    }

    .vanAnimContainer .vanContainer {
        width: 200px;
        bottom: 35px;
    }

    .vanAnimContainer .buildingContainer {
        width: 280px;
        bottom: 50px;
    }

    .vanAnimContainer .roadContainer {
        height: 60px;
    }

    .vanAnimContainer .roadLines {
        height: 4px; /* Yol çizgilerini daha da küçült */
    }

    .vanAnimContainer .contentBox {
        top: 40px;
        left: 30px;
        max-width: 180px;
        padding: 10px;
    }

    .vanAnimContainer .contentBox .title {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .vanAnimContainer .contentBox .title .subtitle {
        font-size: 0.65rem;
    }

    .vanAnimContainer .contentBox .description {
        font-size: 0.7rem;
        line-height: 1.25;
    }

    .vanAnimContainer .fixedContents .infoBox {
        display: none; /* Mobilde sağ üstteki yazıyı gizle */
    }

    .vanAnimContainer .animProgress {
        width: 180px;
        top: 20px; /* Progress bar'ı yukarı çek */
    }

    .vanAnimContainer .animProgress .progressBar {
        height: 4px;
    }

    .vanAnimContainer .animProgress .progressBar .dots .dot {
        width: 7px;
        height: 7px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo {
        width: 18px;
        height: 18px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo i {
        font-size: 8px;
    }

    .vanAnim {
        margin-top: -40px;
    }
}

@media (max-width: 600px) {
    .vanAnim {
        padding: 1rem 0;
    }


    .vanAnimContainer .fixedContents .animTypes .type .text {
        display: block;
        font-weight: 500;
        white-space: nowrap;
        font-size: 0.55rem;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon {
        background: white;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon i {
        color: var(--primary-color);
    }

    .vanAnimContainer {
        width: 100%;
        height: 300px;
        border-radius: 8px;
        margin-top: 0; /* Butonlar artık içeride */
    }

    .vanAnimContainer .vanContainer {
        width: 160px;
        bottom: 30px;
    }

    .vanAnimContainer .buildingContainer {
        width: 220px;
        bottom: 40px;
    }

    .vanAnimContainer .roadContainer {
        height: 50px;
    }

    .vanAnimContainer .roadLines {
        height: 3px; /* Yol çizgilerini daha da küçült */
    }

    .vanAnimContainer .contentBox {
        top: 30px;
        left: 20px;
        max-width: 150px;
        padding: 8px;
    }

    .vanAnimContainer .contentBox .title {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .vanAnimContainer .contentBox .title .subtitle {
        font-size: 0.6rem;
    }

    .vanAnimContainer .contentBox .description {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .vanAnimContainer .fixedContents .infoBox {
        display: none; /* Mobilde sağ üstteki yazıyı gizle */
    }

    .vanAnimContainer .animProgress {
        width: 150px;
        top: 15px; /* Progress bar'ı daha da yukarı çek */
    }

    .vanAnimContainer .animProgress .progressBar {
        height: 3px;
    }

    .vanAnimContainer .animProgress .progressBar .dots .dot {
        width: 6px;
        height: 6px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo {
        width: 15px;
        height: 15px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo i {
        font-size: 7px;
    }
}

@media (max-width: 480px) {
    /* Butonları sağ üste taşı - en küçük mobil minimal */
    .vanAnimContainer .fixedContents .animTypes {
        position: absolute;
        top: 4px;
        right: 4px;
        left: auto;
        transform: none;
        z-index: 15;
        
        gap: 2px;
        backdrop-filter: blur(4px);
        flex-direction: column;
    }

    .vanAnimContainer .fixedContents .animTypes .type {
        padding: 2px 4px;
        font-size: 0.5rem;
        border-radius: 3px;
        background: rgba(var(--primary-rgb), 0.05);
        border: 1px solid rgba(var(--primary-rgb), 0.05);
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        min-width: auto;
        justify-content: flex-start;
    }

    .vanAnimContainer .fixedContents .animTypes .type:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon {
        width: 8px;
        height: 8px;
        margin-right: 2px;
        background: var(--primary-color);
        border-radius: 1px;
        flex-shrink: 0;
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon i {
        font-size: 0.3rem;
        color: white;
    }

    .vanAnimContainer .fixedContents .animTypes .type .text {
        display: block;
        font-weight: 500;
        white-space: nowrap;
        font-size: 0.5rem;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon {
        background: white;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon i {
        color: var(--primary-color);
    }

    .vanAnimContainer {
        height: 280px;
        border-radius: 6px;
        margin-top: 0; /* Butonlar artık içeride */
    }

    .vanAnimContainer .vanContainer {
        width: 140px;
        bottom: 25px;
    }

    .vanAnimContainer .buildingContainer {
        width: 180px;
        bottom: 35px;
    }

    .vanAnimContainer .roadContainer {
        height: 45px;
    }

    .vanAnimContainer .roadLines {
        height: 2px; /* Yol çizgilerini minimum seviyeye indir */
    }

    .vanAnimContainer .contentBox {
        top: 25px;
        left: 15px;
        max-width: 130px;
        padding: 6px;
    }

    .vanAnimContainer .contentBox .title {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }

    .vanAnimContainer .contentBox .title .subtitle {
        font-size: 0.55rem;
    }

    .vanAnimContainer .contentBox .description {
        font-size: 0.6rem;
    }

    .vanAnimContainer .fixedContents .infoBox {
        display: none; /* Mobilde sağ üstteki yazıyı gizle */
    }

    .vanAnimContainer .animProgress {
        width: 130px;
        top: 12px; /* Progress bar'ı daha da yukarı çek */
    }

    .vanAnimContainer .animProgress .progressBar .dots .dot {
        width: 5px;
        height: 5px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo {
        width: 12px;
        height: 12px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo i {
        font-size: 6px;
    }
}

@media (max-width: 350px) {
    /* Butonları sağ üste taşı - en küçük ekranlar minimal */
    .vanAnimContainer .fixedContents .animTypes {
        position: absolute;
        top: 3px;
        right: 3px;
        left: auto;
        transform: none;
        z-index: 15;
        background: rgba(255, 255, 255, 0.9);
        padding: 1px 3px;
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        gap: 1px;
        backdrop-filter: blur(3px);
        flex-direction: column;
    }

    .vanAnimContainer .fixedContents .animTypes .type {
        padding: 1px 3px;
        font-size: 0.45rem;
        border-radius: 4px;
        background: rgba(var(--primary-rgb), 0.04);
        border: 1px solid rgba(var(--primary-rgb), 0.04);
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        min-width: auto;
        justify-content: flex-start;
    }

    .vanAnimContainer .fixedContents .animTypes .type:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon {
        width: 6px;
        height: 6px;
        margin-right: 1px;
        background: var(--primary-color);
        border-radius: 1px;
        flex-shrink: 0;
    }

    .vanAnimContainer .fixedContents .animTypes .type .icon i {
        font-size: 0.45rem;
        color: white;
    }

    .vanAnimContainer .fixedContents .animTypes .type .text {
        display: block;
        font-weight: 500;
        white-space: nowrap;
        font-size: 0.45rem;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon {
        background: white;
    }

    .vanAnimContainer .fixedContents .animTypes .type.active .icon i {
        color: var(--primary-color);
    }

    .vanAnimContainer {
        height: 250px;
        border-radius: 5px;
        margin-top: 0; /* Butonlar artık içeride */
    }

    .vanAnimContainer .vanContainer {
        width: 120px;
        bottom: 20px;
    }

    .vanAnimContainer .buildingContainer {
        width: 150px;
        bottom: 30px;
    }

    .vanAnimContainer .roadContainer {
        height: 40px;
    }

    .vanAnimContainer .roadLines {
        height: 2px; /* Yol çizgilerini minimum seviyeye indir */
    }

    .vanAnimContainer .contentBox {
        top: 20px;
        left: 10px;
        max-width: 110px;
        padding: 5px;
    }

    .vanAnimContainer .contentBox .title {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .vanAnimContainer .contentBox .title .subtitle {
        font-size: 0.5rem;
    }

    .vanAnimContainer .contentBox .description {
        font-size: 0.55rem;
        line-height: 1.1;
    }

    .vanAnimContainer .fixedContents .infoBox {
        display: none; /* Mobilde sağ üstteki yazıyı gizle */
    }

    .vanAnimContainer .animProgress {
        width: 110px;
        top: 10px; /* Progress bar'ı en yukarı çek */
    }

    .vanAnimContainer .animProgress .progressBar {
        height: 2px;
    }

    .vanAnimContainer .animProgress .progressBar .dots .dot {
        width: 4px;
        height: 4px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo {
        width: 10px;
        height: 10px;
    }

    .vanAnimContainer .animProgress .progressBar .sufiLogo i {
        font-size: 5px;
    }
}