body {
    background-color: #09090b;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

.blog-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #d4d4d8;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #c39e6d;
}

.blog-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
    color: #d4d4d8;
    position: relative;
    padding-left: 1rem;
}

.blog-content li::before {
    content: "→";
    position: absolute;
    left: -1rem;
    color: #c39e6d;
    font-weight: bold;
}

.blog-content strong {
    color: #f8ede3;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, #f8ede3 0%, #c39e6d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #c39e6d;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8ede3;
    margin-bottom: 1.5rem;
}

.share-button {
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
}

.reading-progress {
    position: fixed;
    top: 80px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #f8ede3 0%, #c39e6d 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

@media (max-width: 768px) {
    .blog-content h2 {
        font-size: 1.5rem;
    }
}

/* default dots */
.swiper-pagination-bullet {
    background-color: #ffffff !important;
    opacity: 0.5;
}

/* active dot */
.swiper-pagination-bullet-active {
    background-color: #ffb037 !important;
    opacity: 1;
}

/*  FLOATING CIRCLES  */
.float-anim {
    animation: float 6s ease-in-out infinite;
}

.float-anim2 {
    animation: float 8s ease-in-out infinite 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Light sweep animation for grid */
.grid-light-strike {
    position: relative;
    overflow: hidden;
}

.grid-light-strike::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 50%,
            transparent 100%);
    transform: translateX(-150%);
    animation: lightSweep 6s ease-in-out infinite;
}

@keyframes lightSweep {
    0% {
        transform: translateX(-150%) skewX(-15deg);
    }

    50% {
        transform: translateX(150%) skewX(-15deg);
    }

    100% {
        transform: translateX(150%) skewX(-15deg);
    }
}

.glow-flicker {
    animation: glowFlicker 5s ease-in-out infinite;
}

@keyframes glowFlicker {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.25);
    }
}

.grid-move {
    animation: gridMove 12s linear infinite;
    opacity: 0.35;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 300%;
    }
}

.float-parallax {
    animation: floatParallax 10s ease-in-out infinite;
}

@keyframes floatParallax {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-30px) translateX(15px);
    }
}


/*  FADE UP ANIMATION  */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

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

/*  SCROLL REVEAL ANIMATIONS  */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animations */
.scroll-reveal-stagger>* {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-stagger.active>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-stagger.active>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-stagger.active>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-stagger.active>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-stagger.active>*:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-stagger.active>*:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-stagger.active>*:nth-child(7) {
    transition-delay: 0.7s;
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-stagger.active>*:nth-child(8) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateY(0);
}

/*  GLASS CARD EFFECT  */
.glass-card {
    background: rgba(32, 32, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(32, 32, 39, 0.8);
    border-color: #c39e6d;
    transform: translateY(-5px);
}


/*  TEXT GRADIENT  */
.gradient-text {
    background: linear-gradient(135deg, #c39e6d, #f8ede3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*  MAX LINES UTILITY  */
.max-lines {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*  PLAY BUTTON  */
.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*  DELAY UTILITIES  */
.delay-100 {
    animation-delay: 0.1s !important;
    transition-delay: 0.1s !important;
}

.delay-200 {
    animation-delay: 0.2s !important;
    transition-delay: 0.2s !important;
}

.delay-300 {
    animation-delay: 0.3s !important;
    transition-delay: 0.3s !important;
}

.delay-400 {
    animation-delay: 0.4s !important;
    transition-delay: 0.4s !important;
}

.delay-500 {
    animation-delay: 0.5s !important;
    transition-delay: 0.5s !important;
}

.delay-600 {
    animation-delay: 0.6s !important;
    transition-delay: 0.6s !important;
}

.delay-700 {
    animation-delay: 0.7s !important;
    transition-delay: 0.7s !important;
}

/*  FADE IN UP (for Instagram section)  */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/*  DETAILS/FAQ STYLING  */
details summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    color: #ffb037;
}

/*  GRID SLIDE ANIMATION (Alternative)  */
.grid-animate {
    animation: slideGrid 8s linear infinite;
}

@keyframes slideGrid {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 200%;
    }
}

.growth-icon {
  width: 500px;
  height: auto;
}

/* Background circle: soft cream (#f8ede3) */
.bg-circle {
  fill: transparent; /* accent2 */

}

/* Trend line: gold accent (#c39e6d) */
.trend-line {
  fill: none;
  stroke: #c39e6d; /* accent */
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 200;
  animation: draw 2s ease-in-out infinite;
}

/* Success dot: primary green / use gold for consistency */
.success-dot {
  fill: #c39e6d; /* accent */
  animation: pulse 1.5s infinite;
  transform-origin: 150px 70px;
}

/* Floating box: accent2 cream (#f8ede3) */
.floating-box {
  fill: #f8ede3; /* accent2 */
  animation: float 3s ease-in-out infinite;
}

/* Keyframes */
@keyframes draw {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

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