/* Loader Container */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.8s ease-out;
        }

        .loader-wrapper.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-container {
            position: relative;
            width: 200px;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Rotating Circles */
        .circle {
            position: absolute;
            border: 3px solid transparent;
            border-radius: 50%;
            animation: rotate linear infinite;
        }

        .circle-1 {
            width: 180px;
            height: 180px;
            border-top-color: #c9a876;
            border-right-color: #c9a876;
            animation-duration: 3s;
        }

        .circle-2 {
            width: 130px;
            height: 130px;
            border-bottom-color: #d4b896;
            border-left-color: #d4b896;
            animation-duration: 2.5s;
            animation-direction: reverse;
        }

        .circle-3 {
            width: 80px;
            height: 80px;
            border-top-color: #e8d4b8;
            border-right-color: #e8d4b8;
            animation-duration: 2s;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Center Logo */
        .logo-center {
            position: absolute;
            width: 60px;
            height: 60px;
            background: #c9a876;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            animation: pulse 1.5s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(201, 168, 118, 0.4);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 30px rgba(201, 168, 118, 0.4);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 0 50px rgba(201, 168, 118, 0.6);
            }
        }

        /* Loading Text */
        .loading-text {
            position: absolute;
            bottom: -60px;
            font-size: 16px;
            color: #c9a876;
            letter-spacing: 2px;
            font-weight: 500;
        }

        .dot {
            display: inline-block;
            animation: blink 1.4s infinite;
        }

        .dot:nth-child(1) {
            animation-delay: 0s;
        }

        .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes blink {
            0%, 60%, 100% {
                opacity: 0.3;
            }
            30% {
                opacity: 1;
            }
        }

        /* Background Decoration */
        .decoration {
            position: absolute;
            opacity: 0.1;
            pointer-events: none;
        }

        .decoration-1 {
            width: 300px;
            height: 300px;
            border: 2px solid #c9a876;
            border-radius: 50%;
            top: -100px;
            left: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .decoration-2 {
            width: 200px;
            height: 200px;
            border: 2px solid #d4b896;
            border-radius: 50%;
            bottom: -50px;
            right: -50px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(20px);
            }
        }

        /* Page Content (Hidden initially) */
        .page-content {
            opacity: 0;
            transition: opacity 0.8s ease-out;
        }

        .page-content.visible {
            opacity: 1;
        }