/**
 * Whitepaper Booked Success Page Styles
 * Template: whitepaper-booked.php
 * SafeSante - Telemedicine Platform
 * Clean, minimal success page design
 */

/* ==========================================================================
   0. Lightbulb Knowledge Overlay Animation
   ========================================================================== */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #1a365d 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.success-overlay.fade-out {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.success-overlay.hidden {
    display: none;
}

.overlay-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Lightbulb Wrapper */
.lightbulb-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Circle SVG */
.circle-animation {
    position: absolute;
    width: 160px;
    height: 160px;
    transform: rotate(-90deg);
}

.circle-track {
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 3;
}

.circle-progress {
    stroke: #FFD93D;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 345.575;
    stroke-dashoffset: 345.575;
    animation: circleProgress 1.5s ease-out forwards;
    filter: drop-shadow(0 0 8px rgba(255, 217, 61, 0.5));
}

@keyframes circleProgress {
    0% {
        stroke-dashoffset: 345.575;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Lightbulb Icon */
.lightbulb-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.bulb-svg {
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8);
    animation: bulbAppear 0.6s ease forwards;
    animation-delay: 0.2s;
}

@keyframes bulbAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bulb Glass - starts gray, lights up */
.bulb-glass {
    fill: rgba(255, 255, 255, 0.3);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1.5;
    transition: fill 0.5s ease, stroke 0.5s ease;
}

.lightbulb-icon.lit .bulb-glass {
    fill: #FFD93D;
    stroke: #FFE566;
}

/* Bulb Base */
.bulb-base {
    fill: rgba(255, 255, 255, 0.5);
    transition: fill 0.5s ease;
}

.lightbulb-icon.lit .bulb-base {
    fill: #C4C4C4;
}

/* Filament */
.bulb-filament {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
    transition: stroke 0.5s ease;
}

.lightbulb-icon.lit .bulb-filament {
    stroke: #FF8C00;
}

/* Glow Effect */
.bulb-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.6) 0%, rgba(255, 217, 61, 0.3) 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.lightbulb-icon.lit .bulb-glow {
    opacity: 1;
    transform: scale(1.5);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1.5);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.8);
    }
}

/* Light Rays */
.light-rays {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 30px;
    background: linear-gradient(to top, rgba(255, 217, 61, 0.8), transparent);
    border-radius: 2px;
    transform-origin: center bottom;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbulb-icon.lit .ray {
    animation: rayShoot 0.6s ease-out forwards;
}

.ray-1 { transform: translate(-50%, -100%) rotate(0deg); animation-delay: 0s; }
.ray-2 { transform: translate(-50%, -100%) rotate(45deg); animation-delay: 0.05s; }
.ray-3 { transform: translate(-50%, -100%) rotate(90deg); animation-delay: 0.1s; }
.ray-4 { transform: translate(-50%, -100%) rotate(135deg); animation-delay: 0.15s; }
.ray-5 { transform: translate(-50%, -100%) rotate(180deg); animation-delay: 0.2s; }
.ray-6 { transform: translate(-50%, -100%) rotate(225deg); animation-delay: 0.25s; }
.ray-7 { transform: translate(-50%, -100%) rotate(270deg); animation-delay: 0.3s; }
.ray-8 { transform: translate(-50%, -100%) rotate(315deg); animation-delay: 0.35s; }

@keyframes rayShoot {
    0% {
        opacity: 0;
        height: 0;
    }
    50% {
        opacity: 1;
        height: 40px;
    }
    100% {
        opacity: 0.6;
        height: 25px;
    }
}

/* Overlay Text */
.overlay-text {
    font-family: 'DM Sans';
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: overlayTextIn 0.6s ease forwards;
    animation-delay: 1.8s;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Page content hidden initially */
.whitepaper-booked-page .wp-page-header,
.whitepaper-booked-page .whitepaper-page {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.whitepaper-booked-page.content-visible .wp-page-header,
.whitepaper-booked-page.content-visible .whitepaper-page {
    opacity: 1;
}

/* Pause all page animations initially */
.whitepaper-booked-page .success-title,
.whitepaper-booked-page .success-subtitle,
.whitepaper-booked-page .action-buttons,
.whitepaper-booked-page .btn-primary-download,
.whitepaper-booked-page .btn-secondary-link,
.whitepaper-booked-page .document-icon,
.whitepaper-booked-page .document-svg,
.whitepaper-booked-page .document-glow,
.whitepaper-booked-page .doc-line,
.whitepaper-booked-page .float-icon,
.whitepaper-booked-page .particle {
    animation-play-state: paused;
}

/* Play animations when content is visible */
.whitepaper-booked-page.content-visible .success-title,
.whitepaper-booked-page.content-visible .success-subtitle,
.whitepaper-booked-page.content-visible .action-buttons,
.whitepaper-booked-page.content-visible .btn-primary-download,
.whitepaper-booked-page.content-visible .btn-secondary-link,
.whitepaper-booked-page.content-visible .document-icon,
.whitepaper-booked-page.content-visible .document-svg,
.whitepaper-booked-page.content-visible .document-glow,
.whitepaper-booked-page.content-visible .doc-line,
.whitepaper-booked-page.content-visible .float-icon,
.whitepaper-booked-page.content-visible .particle {
    animation-play-state: running;
}

/* Floating Particles around overlay */
.overlay-content::before,
.overlay-content::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 217, 61, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 3s ease-in-out infinite;
}

.overlay-content::before {
    top: -80px;
    left: 100px;
    animation-delay: 0.5s;
}

.overlay-content::after {
    top: 30px;
    right: -100px;
    animation-delay: 1s;
}

@keyframes floatParticle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-15px) scale(1);
    }
}

/* Overlay Responsive */
@media (max-width: 768px) {
    .lightbulb-wrapper {
        width: 140px;
        height: 140px;
    }

    .circle-animation {
        width: 140px;
        height: 140px;
    }

    .lightbulb-icon {
        width: 70px;
        height: 70px;
    }

    .bulb-glow {
        width: 100px;
        height: 100px;
    }

    .light-rays {
        width: 160px;
        height: 160px;
    }

    .ray {
        height: 25px;
    }

    .overlay-text {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .overlay-content::before {
        top: -60px;
        left: 70px;
    }

    .overlay-content::after {
        top: 20px;
        right: -70px;
    }
}

@media (max-width: 480px) {
    .lightbulb-wrapper {
        width: 120px;
        height: 120px;
    }

    .circle-animation {
        width: 120px;
        height: 120px;
    }

    .lightbulb-icon {
        width: 60px;
        height: 60px;
    }

    .bulb-glow {
        width: 80px;
        height: 80px;
    }

    .light-rays {
        width: 140px;
        height: 140px;
    }

    .ray {
        height: 20px;
        width: 2px;
    }

    .overlay-text {
        font-size: 1.3rem;
        margin-top: 25px;
    }

    .overlay-content::before,
    .overlay-content::after {
        display: none;
    }
}

/* ==========================================================================
   1. Page Layout
   ========================================================================== */
.whitepaper-page {
    min-height: calc(100vh - 120px);
    background: #202B6D;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.whitepaper-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   1b. Floating Particles Background
   ========================================================================== */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-particles .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

/* Different particle styles */
.particle-1 {
    width: 6px;
    height: 6px;
    background: rgba(167, 219, 238, 0.4);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 4px;
    height: 4px;
    background: rgba(255, 217, 61, 0.5);
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.particle-3 {
    width: 8px;
    height: 8px;
    background: rgba(255, 107, 91, 0.3);
    top: 40%;
    left: 5%;
    animation-delay: 2s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    top: 60%;
    right: 8%;
    animation-delay: 0.5s;
}

.particle-5 {
    width: 7px;
    height: 7px;
    background: rgba(167, 219, 238, 0.5);
    bottom: 30%;
    left: 12%;
    animation-delay: 1.5s;
}

.particle-6 {
    width: 4px;
    height: 4px;
    background: rgba(255, 217, 61, 0.4);
    bottom: 20%;
    right: 20%;
    animation-delay: 2.5s;
}

.particle-7 {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    top: 10%;
    left: 30%;
    animation-delay: 3s;
}

.particle-8 {
    width: 5px;
    height: 5px;
    background: rgba(167, 219, 238, 0.35);
    top: 50%;
    right: 25%;
    animation-delay: 3.5s;
}

.particle-9 {
    width: 8px;
    height: 8px;
    background: rgba(255, 107, 91, 0.25);
    bottom: 40%;
    left: 25%;
    animation-delay: 4s;
}

.particle-10 {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    top: 70%;
    left: 8%;
    animation-delay: 4.5s;
}

.particle-11 {
    width: 6px;
    height: 6px;
    background: rgba(255, 217, 61, 0.3);
    top: 20%;
    right: 30%;
    animation-delay: 5s;
}

.particle-12 {
    width: 5px;
    height: 5px;
    background: rgba(167, 219, 238, 0.45);
    bottom: 15%;
    right: 12%;
    animation-delay: 5.5s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-30px) translateX(10px) scale(1.1);
    }
    90% {
        opacity: 1;
        transform: translateY(-60px) translateX(-5px) scale(1);
    }
}

/* ==========================================================================
   1c. Document Animation
   ========================================================================== */
.document-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    height: 180px;
}

.document-icon {
    position: relative;
    width: 120px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    animation: documentAppear 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
}

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

.document-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
    animation: documentFloat 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes documentFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

/* Document SVG Styles */
.doc-body {
    fill: #ffffff;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 1;
}

.doc-fold {
    fill: #E8E8E8;
    stroke: rgba(200, 200, 200, 0.5);
    stroke-width: 0.5;
}

.doc-line {
    stroke: #D1D5DB;
    stroke-width: 3;
    stroke-linecap: round;
    opacity: 0;
    animation: lineAppear 0.5s ease forwards;
}

.doc-line-1 { animation-delay: 0.8s; }
.doc-line-2 { animation-delay: 1s; }
.doc-line-3 { animation-delay: 1.2s; }
.doc-line-4 { animation-delay: 1.4s; }

@keyframes lineAppear {
    from {
        opacity: 0;
        stroke-dasharray: 0 50;
    }
    to {
        opacity: 1;
        stroke-dasharray: 50 0;
    }
}

/* Document Glow */
.document-glow {
    position: absolute;
    width: 160px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(167, 219, 238, 0.3) 0%, rgba(167, 219, 238, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: glowAppear 1s ease forwards, documentGlowPulse 3s ease-in-out infinite;
    animation-delay: 0.5s, 2s;
}

@keyframes glowAppear {
    to {
        opacity: 1;
    }
}

@keyframes documentGlowPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Floating Icons around document */
.floating-icons {
    position: absolute;
    width: 280px;
    height: 280px;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: floatIconAppear 0.6s ease forwards;
}

.float-icon i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.float-icon-1 {
    top: 10%;
    left: 0;
    animation-delay: 1.2s;
}

.float-icon-1 i {
    color: #FFD93D;
}

.float-icon-2 {
    top: 20%;
    right: 0;
    animation-delay: 1.4s;
}

.float-icon-2 i {
    color: #A7DBEE;
}

.float-icon-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 1.6s;
}

.float-icon-3 i {
    color: #FF6B5B;
}

.float-icon-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 1.8s;
}

.float-icon-4 i {
    color: #ffffff;
}

@keyframes floatIconAppear {
    from {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Float icons continuous animation */
.float-icon-1 {
    animation: floatIconAppear 0.6s ease forwards, iconFloat1 5s ease-in-out infinite;
    animation-delay: 1.2s, 2s;
}

.float-icon-2 {
    animation: floatIconAppear 0.6s ease forwards, iconFloat2 6s ease-in-out infinite;
    animation-delay: 1.4s, 2.2s;
}

.float-icon-3 {
    animation: floatIconAppear 0.6s ease forwards, iconFloat3 5.5s ease-in-out infinite;
    animation-delay: 1.6s, 2.4s;
}

.float-icon-4 {
    animation: floatIconAppear 0.6s ease forwards, iconFloat4 4.5s ease-in-out infinite;
    animation-delay: 1.8s, 2.6s;
}

@keyframes iconFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-8px, -12px) rotate(10deg); }
}

@keyframes iconFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -8px) rotate(-10deg); }
}

@keyframes iconFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-6px, 10px) rotate(-8deg); }
}

@keyframes iconFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(8px, 6px) rotate(12deg); }
}

/* ==========================================================================
   2. Success Message
   ========================================================================== */
.success-title {
    font-family: 'DM Sans';
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    opacity: 0;
    animation: titleFadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

.success-subtitle {
    font-family: 'DM Sans';
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0;
    animation: subtitleFadeIn 0.8s ease forwards;
    animation-delay: 0.4s;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   3. Action Buttons
   ========================================================================== */
.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    opacity: 0;
    animation: buttonsFadeIn 0.8s ease forwards;
    animation-delay: 0.6s;
}

@keyframes buttonsFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Primary Download Button */
.btn-primary-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6B5B 0%, #FF8F7D 100%);
    color: #ffffff;
    padding: 18px 50px;
    font-family: 'DM Sans';
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 91, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 91, 0.5);
    color: #ffffff;
    background: linear-gradient(135deg, #FF5A48 0%, #FF7D6A 100%);
}

.btn-primary-download:hover::before {
    left: 100%;
}

.btn-primary-download:active {
    transform: translateY(-1px);
}

/* Secondary Link */
.btn-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans';
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.btn-secondary-link i {
    font-size: 0.7rem;
    margin-left: -3px;
    transition: transform 0.3s ease;
}

.btn-secondary-link:hover {
    color: #A7DBEE;
    text-decoration: underline;
}

.btn-secondary-link:hover i {
    transform: translateX(3px);
}

/* ==========================================================================
   4. Responsive Styles
   ========================================================================== */
@media (max-width: 992px) {
    .whitepaper-page {
        padding: 60px 20px;
        min-height: calc(100vh - 100px);
    }

    .success-title {
        font-size: 2.5rem;
    }

    .success-subtitle {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }

    .document-wrapper {
        height: 160px;
        margin-bottom: 35px;
    }

    .document-icon {
        width: 100px;
        height: 125px;
    }

    .floating-icons {
        width: 240px;
        height: 240px;
    }

    .float-icon {
        width: 32px;
        height: 32px;
    }

    .float-icon i {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .whitepaper-page {
        padding: 50px 16px;
    }

    .success-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .success-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .btn-primary-download {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .action-buttons {
        gap: 25px;
    }

    .document-wrapper {
        height: 140px;
        margin-bottom: 30px;
    }

    .document-icon {
        width: 85px;
        height: 106px;
    }

    .document-glow {
        width: 130px;
        height: 160px;
    }

    .floating-icons {
        width: 200px;
        height: 200px;
    }

    .float-icon {
        width: 28px;
        height: 28px;
    }

    .float-icon i {
        font-size: 11px;
    }

    /* Hide some particles on tablet */
    .particle-7,
    .particle-8,
    .particle-11,
    .particle-12 {
        display: none;
    }
}

@media (max-width: 480px) {
    .whitepaper-page {
        padding: 40px 12px;
    }

    .success-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .success-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .btn-primary-download {
        padding: 14px 32px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-secondary-link {
        font-size: 0.9rem;
    }

    .document-wrapper {
        height: 120px;
        margin-bottom: 25px;
    }

    .document-icon {
        width: 70px;
        height: 87px;
    }

    .document-glow {
        width: 100px;
        height: 125px;
    }

    .floating-icons {
        width: 160px;
        height: 160px;
    }

    .float-icon {
        width: 24px;
        height: 24px;
    }

    .float-icon i {
        font-size: 10px;
    }

    /* Hide more particles and icons on mobile */
    .particle-5,
    .particle-6,
    .particle-9,
    .particle-10 {
        display: none;
    }

    .float-icon-3,
    .float-icon-4 {
        display: none;
    }
}
