/* Shared Styles from Index */
body {
    background-color: #FDFBF7;
}

.indian-border {
    border: 2px solid #D4AF37;
    border-radius: 8px;
    position: relative;
}

.indian-border::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px dashed #B9382E;
    pointer-events: none;
    border-radius: 4px;
}

.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    color: #D4AF37;
}

.divider-icon::before,
.divider-icon::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid #D4AF37;
    margin: 0 1rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B9382E;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}