/* Black Wealth Preloader - by ITSonMedia */

#bwp-preloader {
    position: fixed;
    inset: 0;
    background: #0a0f1e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    font-family: 'Trebuchet MS', 'Arial Narrow', sans-serif;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#bwp-preloader.bwp-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bwp-scene {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 28px;
}

.bwp-circle-clip {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0,0,0,0.9);
}

.bwp-blue-half {
    position: absolute;
    top: 0; left: 0;
    width: 300px; height: 300px;
    animation: bwpBlueSlide 3.8s ease-in-out infinite;
}

.bwp-black-half {
    position: absolute;
    top: 0; left: 0;
    width: 300px; height: 300px;
    animation: bwpBlackSlide 3.8s ease-in-out infinite;
}

.bwp-blue-half img,
.bwp-black-half img {
    width: 300px;
    height: 300px;
    display: block;
}

@keyframes bwpBlueSlide {
    0%       { left: -320px; animation-timing-function: cubic-bezier(0.4,0,0.2,1); }
    30%      { left: -40px;  animation-timing-function: linear; }
    70%      { left: -40px;  animation-timing-function: cubic-bezier(0.8,0,1,1); }
    88%,100% { left: -320px; }
}

@keyframes bwpBlackSlide {
    0%       { left: 320px;  animation-timing-function: cubic-bezier(0.4,0,0.2,1); }
    30%      { left: 40px;   animation-timing-function: linear; }
    70%      { left: 40px;   animation-timing-function: cubic-bezier(0.8,0,1,1); }
    88%,100% { left: 320px;  }
}

/* Brand text block */
.bwp-brand {
    text-align: center;
    animation: bwpFadeIn 3.8s ease infinite;
    opacity: 0;
}

@keyframes bwpFadeIn {
    0%,32%   { opacity: 0; }
    44%      { opacity: 1; }
    68%      { opacity: 1; }
    80%,100% { opacity: 0; }
}

/* Main title: FINANCIAL FENG SHUI */
.bwp-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 6px;
    margin: 0 0 6px 0;
    padding: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Subtitle: THE BLACK WEALTH COMPANY */
.bwp-subtitle {
    color: #7ab8d8;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 14px 0;
    padding: 0;
}

/* Thin gold/blue divider line */
.bwp-divider {
    width: 160px;
    height: 1px;
    background: linear-gradient(to right, transparent, #3A83BB, transparent);
    margin: 0 auto 16px;
}

.bwp-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.bwp-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3A83BB;
    opacity: 0.2;
    animation: bwpDot 1.5s ease infinite;
    display: inline-block;
}

.bwp-dots span:nth-child(2) {
    animation-delay: 0.5s;
    background: #7ab8d8;
}

.bwp-dots span:nth-child(3) {
    animation-delay: 1.0s;
}

@keyframes bwpDot {
    0%,20%   { opacity: 0.2; transform: scale(1);   }
    50%      { opacity: 1;   transform: scale(1.4); }
    80%,100% { opacity: 0.2; transform: scale(1);   }
}
