:root {
    /*--Primary: #6C5CE7;*/
    /*--Primary-light: #A29BFE;*/
    --Primary: #d9d025;
    --Primary-light: #f2ec77;
    --Secondary: #FD79A8;
    --Dark: #2D3436;
    --Light: #F5F6FA;
    --grid-gap: 5px;
    --Glow: rgba(164, 135, 201, 0.6);
}



/* === GOLD (WARM & LUXURIOUS) === */
.Pro-Gold {
    background: linear-gradient(
            90deg,
            #d4af37,       /* Classic gold */
            #f9e076 15%,    /* Bright highlight */
            #ffdf6b 30%,    /* Warm shimmer */
            #d4af37 45%,     /* Classic gold */
            #f9e076 60%,    /* Secondary highlight */
            #d4af37 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    background-size: 250% auto;
    text-shadow:
            0 0 8px rgba(212, 175, 55, 0.4),
            0 0 12px rgba(255, 223, 107, 0.2);
    animation: metallic-shine 3s ease-in-out infinite;
    font-weight: 800;
}

/* === SILVER (COOL & MODERN) === */
.Pro-Silver {
    background: linear-gradient(
            90deg,
            #a6a6a6,       /* Dark silver (improved contrast) */
            #e8e8e8 20%,   /* Bright highlight */
            #ffffff 35%,    /* Pure white shimmer */
            #c0c0c0 50%,    /* Classic silver */
            #e0e0e0 70%,    /* Soft glow */
            #a6a6a6 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    background-size: 250% auto;
    text-shadow:
            0 0 8px rgba(192, 192, 192, 0.3),
            0 0 12px rgba(255, 255, 255, 0.2);
    animation: metallic-shine 3.5s ease-in-out infinite;
    font-weight: 800;
}

/* === BRONZE (RICH & EARTHY) === */
.Pro-Bronze {
    background: linear-gradient(
            90deg,
            #cd7f32,       /* Classic bronze */
            #e6b457 20%,   /* Warm highlight */
            #f0c14b 35%,   /* Rich shimmer */
            #cd7f32 50%,    /* Classic bronze */
            #e6b457 70%,    /* Secondary highlight */
            #cd7f32 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    background-size: 250% auto;
    text-shadow:
            0 0 8px rgba(205, 127, 50, 0.3),
            0 0 10px rgba(240, 193, 75, 0.2);
    animation: metallic-shine 4s ease-in-out infinite;
    font-weight: 800;
}


/* === ANIMATION (SMOOTH SHIMMER) === */
@keyframes metallic-shine {
    0% { background-position: 0% center; }
    100% { background-position: 250% center; }
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--grid-gap);
    padding: var(--grid-gap);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    overflow: hidden;
    background-color: #eee;
}

.grid-item-square {
    aspect-ratio: 1 / 1; /* Perfect square */
}

.grid-item-vertical {
    aspect-ratio: 9 / 16; /* Vertical/reels format */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.grid-item img.loaded {
    opacity: 1;
}

.loading-indicator {
    display: none;
    justify-content: center;
    padding: 20px;
}



.highlightimg.loading {
    opacity: 0;
}
.icon-img.loaded {
    opacity: 1;
}


.Spinner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(245, 214, 91, 0.6);
    border-radius: 50%;
    border-top-color: #ffc107;
    animation: spin 1s ease-in-out infinite;

}

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

.highlight{
    width: 90px ;
    max-width: 90px ;
    height: 90px;
    max-height: 90px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    align-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid grey;

}

.high_item{
    width: 80px ;
    max-width: 80px ;
    height: 80px;
    max-height: 80px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;

}
.highlightimg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}


.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
    padding: 10px;
}

/* CARD STYLING (WITH WAVES) */
.tool-card {
    background: none;
    border-radius: 15px;
    padding: 0px ;
    aspect-ratio: 1/1;
    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.05),
            0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    transition:
            transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28),
            box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
    color: currentColor;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
}

/* WAVE BACKGROUND (ANIMATED) */
.wave {
    position: absolute;
    width:100%;
    height: 250px;
    opacity: 0.1;
    left: 0;
    top: 0;
    margin-left: -40%;
    margin-top: -50%;
    background: linear-gradient(45deg, var(--Primary), var(--Primary-light));
    border-radius: 40%;
    animation: wave 40s infinite linear;
    z-index: -1;
}

.wave:nth-child(2) {
    animation-duration: 45s;
    opacity: 0.08;
    background: linear-gradient(45deg, var(--Secondary), var(--Primary));
}

.wave:nth-child(3) {
    animation-duration: 40s;
    opacity: 0.05;
    background: linear-gradient(45deg, var(--Primary-light), var(--Secondary));
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 3D ICON (ALWAYS ACTIVE) */
.tool-icon {
    padding:5px ;
    display: flex;
    align-items: center;
    justify-content: center;

}





/* TEXT STYLING */
.tool-name {
    font-size: 0.70rem;
    font-weight: 600;
    color: unset;
    text-align: center;
}

.tool-desc {
    font-size: 0.55rem;
    color:dimgray;
    text-align: center;
    display: none;
}

/* BADGE STYLING */
.tool-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--Secondary);
    color: white;
    font-size: 0.5rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(253, 121, 168, 0.3);
    display: none;
}

/* RIPPLE EFFECT */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}



.nav-text {
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    direction: ltr;
    padding-top: 8px;
    text-transform: uppercase;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    letter-spacing: -0.2em;
}

/* Main text container */
.text-container {
    position: relative;
    display: inline-block;

}

/* Individual letters */
.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: letterReveal 0.6s cubic-bezier(0.2, 0, 0.1, 1) forwards;
    margin-right: -0.05em;
}

/* Letter animation timing */
.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.2s; }
.letter:nth-child(3) { animation-delay: 0.3s; }
.letter:nth-child(4) { animation-delay: 0.4s; }
.letter:nth-child(5) { animation-delay: 0.5s; }
.letter:nth-child(6) { animation-delay: 0.6s; }
.letter:nth-child(7) { animation-delay: 0.7s; }
.letter:nth-child(8) { animation-delay: 0.8s; }
.letter:nth-child(9) { animation-delay: 0.9s; }

@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shine effect - no mask needed */
.shine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shine {
    position: absolute;
    top: -10%;
    left: -100%;
    width: 50%;
    height: 120%;
    background: linear-gradient(
            to right,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.8) 40%,
            rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    animation: shine 6s ease-in-out infinite;
    animation-delay: 1s;
}
[data-theme="dark"] .shine{
    background: linear-gradient(
            to right,
            rgba(18,18,18,0) 0%,
            rgba(18,18,18,0.8) 40%,
            rgba(18,18,18,0) 100%
    );
}
@keyframes shine {
    0% { left: -100%; }
    100% { left: 150%; }
}



.reels-container {
    position: relative;
    width: 100%;
    height: calc(90vh - 100px);

    margin: 0 auto;
    overflow: hidden;
}



/* Custom Plyr styles for Reels */
.plyr--video {
    height: 100%;
    background: #000;
}



/* Custom fullscreen button for mobile */
.plyr__control--overlaid {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}







.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;

}


.LOGO {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

/* White shine overlay (works with transparency) */
.logo-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
            to right,
            rgba(244, 245, 247, 0) 0%,
            rgba(244, 245, 247, 0.9) 60%,
            rgba(244, 245, 247, 0) 100%
    );
    transform: skewX(-20deg);
    animation: Shine 2s infinite;
    pointer-events: none; /* Ignore clicks */
}
.loader_con{
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #f4f5f7;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.4s ease;
}

[data-theme="dark"] .loader_con{
    background: #121212;
}


[data-theme="dark"] .logo-container::after {

    background: linear-gradient(
            to right,
            rgba(18,18,18,0) 0%,
            rgba(18,18,18,0.9) 60%,
            rgba(18,18,18,0) 100%
    );

}




@keyframes Shine {
    100% {
        left: 120%;
    }
}


.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

.swiper-slide{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

}

.swiper-slide.story{
    max-width: 150px;
    aspect-ratio: 9/16;
    border-radius: 5px;

}
.swiper-slide img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;


}

.swiper-slide.post{
    width: 150px;
    aspect-ratio: 1/1;
    border-radius: 5px;
}


.circle-progress {
    margin: 0 auto 10px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    color: unset;
}

.progress-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 8;
}

.progress-fill {
    fill: none;
    stroke: #4CAF50;
    stroke-width: 8;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: all 0.5s ease;
}

.days-count {
    font-size: 32px;
    font-weight: bold;
    padding-top: 5px;
    fill: #242424;

}

[data-theme="dark"] .days-count {
    font-size: 32px;
    font-weight: bold;
    padding-top: 5px;

    fill: #fff;

}



/* Color states based on days */
.warning .progress-fill { stroke: #FFC107; }
.danger .progress-fill { stroke: #F44336; }

