/* Custom Utilities */
body {
    background-color: #FAFAFA;
    color: #0A0A0A;
    overflow-x: hidden;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-panel-dark {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px #0A0A0A;
}

.text-outline-light {
    color: transparent;
    -webkit-text-stroke: 1px rgba(250, 250, 250, 0.3);
}

/* Diagonal Cut Effects (Like glass edges) */
.edge-cut-tr {
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.edge-cut-bl {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FAFAFA; 
}
::-webkit-scrollbar-thumb {
    background: #4C1D95; 
}
::-webkit-scrollbar-thumb:hover {
    background: #1E3A8A; 
}

/* Image Hover Zoom */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom-container img {
    transition: transform 0.7s ease;
}
.img-zoom-container:hover img {
    transform: scale(1.05);
}
