body {
    background-color: #FDFBF7;
    color: #2D3748;
}

.Urun-BG {
    background-image: url(https://media.agadonerfethiye.com/sitem/images/Urun-BG.png/400/100);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-section {
    display: none;
    opacity: 0;
}

    .page-section.active {
        display: block;
        animation: fadeScale 0.5s ease-out forwards;
    }

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.blob-mask {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-anim 8s ease-in-out infinite alternate;
}

@keyframes blob-anim {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.glass-header {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
    background: #E53935;
    border-radius: 4px;
}