/* KDR Platform - Glow Theme Extended Styles */

/* Animated Background Particles - More Subtle */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    /* Smaller particles */
    height: 3px;
    background: var(--turquoise);
    border-radius: 50%;
    animation: float-particle 20s infinite;
    /* Slower animation */
    opacity: 0.15;
    /* Reduced opacity */
}

@keyframes float-particle {

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

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Premium Glass Card - Refined */
.premium-card {
    position: relative;
    overflow: hidden;
    background: rgba(18, 18, 42, 0.6);
    /* More transparent */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent,
            rgba(0, 217, 255, 0.1),
            /* Much subtle glow */
            transparent,
            rgba(255, 107, 157, 0.1),
            transparent);
    animation: rotate-glow 8s linear infinite;
    /* Slower rotation */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-card:hover::before {
    opacity: 0.2;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Neon Text Effect - Cleaner */
.neon-text {
    color: var(--white);
    text-shadow:
        0 0 10px rgba(0, 217, 255, 0.3),
        0 0 20px rgba(0, 217, 255, 0.1);
    /* Removed heavy pulse animation for a stable, clean look */
}

/* Pulse Glow Button - Refined */
.btn-pulse {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
    }
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    /* Reduced lift distance */
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(0, 217, 255, 0.1);
}

/* Gradient Border - Thinner */
.gradient-border {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    /* Thinner border */
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.5), rgba(157, 78, 221, 0.5));
    z-index: -1;
    opacity: 0.7;
}

/* Glowing Input - Subtler focus */
.glow-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glow-input:focus {
    border-color: var(--turquoise);
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 10px rgba(0, 217, 255, 0.1),
        inset 0 0 5px rgba(0, 217, 255, 0.05);
}

/* Stats Card */
.stats-card {
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--turquoise), var(--pink-glow));
    opacity: 0.5;
}

.stats-card .stats-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.stats-card .stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.stats-card .stats-label {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Scrollbar removed */

/* Badge Styles - Softer */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-turquoise {
    background: rgba(0, 217, 255, 0.1);
    color: var(--turquoise);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.badge-pink {
    background: rgba(255, 107, 157, 0.1);
    color: var(--pink-glow);
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.badge-purple {
    background: rgba(157, 78, 221, 0.1);
    color: var(--purple-glow);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.badge-success {
    background: rgba(0, 200, 83, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.badge-warning {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.badge-danger {
    background: rgba(255, 82, 82, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 82, 82, 0.2);
}

/* Table Styles - Cleaner */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th,
.data-table td {
    padding: 16px;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.data-table .actions {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.data-table .action-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.data-table .action-btn.edit {
    background: rgba(0, 217, 255, 0.1);
    color: var(--turquoise);
}

.data-table .action-btn.delete {
    background: rgba(255, 82, 82, 0.1);
    color: var(--danger);
}

.data-table .action-btn:hover {
    transform: translateY(-2px);
}

/* Modal - Glass */
/* refined-glow-theme.css */
/* Professional/Premium Theme */

:root {
    /* Refined Colors */
    --purple-glow: #9d4edd;
    --turquoise: #00d9ff;
    --turquoise-dark: #00a8cc;
    --pink-glow: #ff6b9d;

    /* Reduced/Softer Glows */
    --glow-text-sm: 0 0 5px rgba(0, 217, 255, 0.4);
    --glow-text-md: 0 0 10px rgba(0, 217, 255, 0.3);
    --glow-box: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Subtle shadow instead of colored glow */
    --glow-box-hover: 0 8px 25px rgba(157, 78, 221, 0.25);
    /* Colored hint only on hover */

    --border-glow: 1px solid rgba(255, 255, 255, 0.1);
    --border-active: 1px solid rgba(0, 217, 255, 0.5);
}

/* Base Refinements */
body {
    background-color: #0a0a1a;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(26, 10, 46, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(18, 18, 42, 0.4) 0%, transparent 40%);
}

.particles-bg .particle {
    background: rgba(255, 255, 255, 0.15);
    /* Lower opacity */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

/* Cards - Premium Glass */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Faint border */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.3);
    /* Subtle highlight */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 217, 255, 0.1);
}

/* Typography - Clean & Crisp */
.glow-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
    /* Very subtle */
    /* Removed heavy neon flicker for professionalism */
    font-weight: 700;
}

h1.glow-text {
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

/* Buttons */
.btn-glow {
    background: linear-gradient(135deg, var(--turquoise-dark), var(--purple-glow));
    border: none;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: var(--turquoise);
    background: rgba(0, 217, 255, 0.1);
}

/* Navigation - Sleek */
.glass-nav {
    background: rgba(10, 10, 26, 0.85);
    /* Darker for readability */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links a {
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--turquoise);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.4);
}

/* Icons */
.glow-icon {
    /* Removed intense spread */
    filter: drop-shadow(0 0 5px currentColor);
}

/* Badges */
.featured-badge {
    background: linear-gradient(45deg, #ff0055, #ff5500);
    box-shadow: 0 2px 10px rgba(255, 0, 85, 0.3);
}

.verified-badge {
    color: var(--turquoise);
    filter: drop-shadow(0 0 2px rgba(0, 217, 255, 0.5));
}

/* Modal - Glass */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes neon-flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
    }

    20%,
    24%,
    55% {
        opacity: 0.5;
        text-shadow: none;
    }
}

.modal {
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: #151525;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.modal-close {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.1);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.tab {
    flex: 1;
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--gray);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.tab.active {
    background: var(--turquoise);
    color: var(--bg-primary);
    box-shadow: 0 4px 10px rgba(0, 217, 255, 0.3);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: var(--gray);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transform: translateX(-3px);
}

/* Waveform Player - Refined */
.waveform-player {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.waveform-container {
    height: 60px;
    /* Compact */
    margin-bottom: 15px;
    opacity: 0.8;
}

.waveform-controls .play-btn {
    width: 45px;
    height: 45px;
    background: var(--turquoise);
    border: none;
    border-radius: 50%;
    color: var(--bg-primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.waveform-controls .play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.6);
}

/* PDF Viewer */
.pdf-viewer {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-viewer .pdf-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Image Gallery Grid - Refined Hover */
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 80%);
}

/* Skeleton Loading - Subtler */
.skeleton {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 25%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 2s infinite;
}

/* Category Chips Style */
.filter-tag.glass-btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: var(--gray);
    font-family: monospace;
    /* Code/Class look */
}

.filter-tag.glass-btn.active,
.filter-tag.glass-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    color: var(--turquoise);
    border-color: var(--turquoise);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.filter-tag.glass-btn::before {
    content: '.';
    color: var(--pink-glow);
    margin-left: 2px;
}

/* Audio Project Card Redesign */
.project-card.audio-card .project-media {
    background: linear-gradient(135deg, #1a0a2e 0%, #0a0a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-card.audio-card .audio-wave-anim {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
}

.project-card.audio-card .audio-wave-anim span {
    width: 3px;
    height: 100%;
    background: var(--turquoise);
    border-radius: 3px;
    animation: wave-bounce 1s ease-in-out infinite alternate;
}

.project-card.audio-card .audio-wave-anim span:nth-child(2) {
    animation-delay: 0.1s;
}

.project-card.audio-card .audio-wave-anim span:nth-child(3) {
    animation-delay: 0.2s;
}

.project-card.audio-card .audio-wave-anim span:nth-child(4) {
    animation-delay: 0.3s;
}

.project-card.audio-card .audio-wave-anim span:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes wave-bounce {
    from {
        height: 10px;
    }

    to {
        height: 40px;
    }
}

.project-card.audio-card .audio-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: rgba(0, 217, 255, 0.2);
}

/* Platform Stats Bar */
.stats-bar-section {
    padding: 60px 0;
    margin: 40px 0;
}

.stats-bar {
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.stats-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat-item:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .stats-bar {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-item::after {
        display: none;
    }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* How It Works Section Refined */
.how-it-works {
    padding: 120px 0;
    background: radial-gradient(circle at bottom, rgba(111, 66, 193, 0.05) 0%, transparent 50%);
}

.step-card {
    text-align: right;
    /* RTL focus */
    padding: 50px 35px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 217, 255, 0.02) 100%);
    pointer-events: none;
}

.step-number {
    position: absolute;
    top: 25px;
    left: 25px;
    /* Moved to corner for more modern look */
    transform: none;
    font-size: 0.9rem;
    opacity: 0.5;
}

.step-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--turquoise), var(--purple-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.2));
}

.step-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

/* Extreme Glassmorphism & Modern Motion */
:root {
    --glass-blur: 30px;
    --glass-saturate: 180%;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Grainy Texture Over Glass */
.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
}

/* Animated Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
    transition: transform 0.2s ease-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--turquoise), transparent 70%);
    top: -100px;
    right: -100px;
    animation: floating 20s infinite alternate;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--purple-glow), transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: floating 25s infinite alternate-reverse;
}

.category-card,
.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.category-card::before,
.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff00ea, transparent 70%);
    top: 50%;
    left: 40%;
    animation: floating 30s infinite alternate;
    opacity: 0.2;
}

@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 100px) rotate(15deg);
    }
}

@media (max-width: 768px) {
    .bg-orb {
        opacity: 0.2;
        width: 200px !important;
        height: 200px !important;
        filter: blur(60px);
    }

    .orb-1 {
        right: -50px;
        top: -50px;
    }

    .orb-2 {
        left: -50px;
        bottom: -50px;
    }

    .orb-3 {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Modern Motion Easing */
.hover-lift {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease !important;
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 217, 255, 0.1);
}

/* Mouse Glow Utility */
.mouse-glow {
    position: relative;
    overflow: hidden;
}

.mouse-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mx) var(--my),
            rgba(0, 217, 255, 0.08),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.mouse-glow:hover::before {
    opacity: 1;
}

/* Ensure content stays above the glow */
.mouse-glow>* {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works {
        padding: 60px 0;
    }
}

/* Premium Creator Card Refinements */
.creator-avatar {
    position: relative;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avatar-glow-turquoise {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4), inset 0 0 15px rgba(0, 217, 255, 0.2);
    border: 2px solid var(--turquoise);
    animation: pulse-turquoise 3s infinite;
}

.avatar-glow-pink {
    box-shadow: 0 0 20px rgba(255, 0, 234, 0.4), inset 0 0 15px rgba(255, 0, 234, 0.2);
    border: 2px solid #ff00ea;
    animation: pulse-pink 3s infinite;
}

@keyframes pulse-turquoise {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 35px rgba(0, 217, 255, 0.6);
    }
}

@keyframes pulse-pink {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 234, 0.4);
    }

    50% {
        box-shadow: 0 0 35px rgba(255, 0, 234, 0.6);
    }
}

.creator-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 15px 0 5px;
}

.creator-username {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--turquoise);
    opacity: 0.8;
}

.creator-role {
    font-size: 0.9rem;
    color: var(--pink-glow);
    font-weight: 500;
    margin-bottom: 15px;
}

.btn-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #000 !important;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

.btn-card-alt {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 20px rgba(240, 147, 251, 0.3);
}

.btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.5);
    filter: brightness(1.1);
}

/* Category Card Neon Styles */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 25px;
    border-radius: 25px;
    min-height: 220px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(255, 255, 255, 0.02);
    border: 3px solid rgba(255, 255, 255, 0.05);
    /* Thicker basic border */
    position: relative;
    overflow: visible;
}

.category-card i {
    font-size: 2.8rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.cat-turquoise {
    border-color: rgba(0, 217, 255, 0.2);
}

.cat-turquoise i {
    color: var(--turquoise);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.cat-turquoise:hover {
    border-color: var(--turquoise);
    background: rgba(0, 217, 255, 0.05);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.3), inset 0 0 20px rgba(0, 217, 255, 0.1);
}

.cat-purple {
    border-color: rgba(188, 114, 255, 0.2);
}

.cat-purple i {
    color: #bc72ff;
    text-shadow: 0 0 20px rgba(188, 114, 255, 0.5);
}

.cat-purple:hover {
    border-color: #bc72ff;
    background: rgba(188, 114, 255, 0.05);
    box-shadow: 0 0 40px rgba(188, 114, 255, 0.3), inset 0 0 20px rgba(188, 114, 255, 0.1);
}

.cat-pink {
    border-color: rgba(255, 0, 234, 0.2);
}

.cat-pink i {
    color: #ff00ea;
    text-shadow: 0 0 20px rgba(255, 0, 234, 0.5);
}

.cat-pink:hover {
    border-color: #ff00ea;
    background: rgba(255, 0, 234, 0.05);
    box-shadow: 0 0 40px rgba(255, 0, 234, 0.3), inset 0 0 20px rgba(255, 0, 234, 0.1);
}

.cat-blue {
    border-color: rgba(79, 172, 254, 0.2);
}

.cat-blue i {
    color: #4facfe;
    text-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
}

.cat-blue:hover {
    border-color: #4facfe;
    background: rgba(79, 172, 254, 0.05);
    box-shadow: 0 0 40px rgba(79, 172, 254, 0.3), inset 0 0 20px rgba(79, 172, 254, 0.1);
}

.category-card:hover i {
    transform: scale(1.15) translateY(-8px);
}

/* Hero & Title Refinements */
.hero-content h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: var(--gray);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
}


/* Suggestions System Styling */
.suggestions-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.suggestion-card {
    display: flex;
    gap: 25px;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.suggestion-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.2);
}

.vote-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 50px;
}

.vote-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.vote-btn:hover {
    color: var(--white);
}

.vote-btn.active.up {
    color: var(--turquoise);
}

.vote-btn.active.down {
    color: #ff5252;
}

.vote-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
}

.suggestion-main {
    flex: 1;
}

.suggestion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.suggestion-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray);
}

.suggestion-user img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.suggestion-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(0, 217, 255, 0.1);
    color: var(--turquoise);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.status-in-progress {
    background: rgba(188, 114, 255, 0.1);
    color: #bc72ff;
    border-color: rgba(188, 114, 255, 0.2);
}

.status-implemented {
    background: rgba(0, 255, 131, 0.1);
    color: #00ff83;
    border-color: rgba(0, 255, 131, 0.2);
}

.suggestion-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.suggestion-card p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

.sidebar-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 30px;
}

.top-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.top-suggestion-item:last-child {
    border: none;
}

.top-suggestion-item:hover {
    transform: translateX(-5px);
}

.top-suggestion-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.top-suggestion-info span {
    font-size: 0.8rem;
    color: var(--gray);
}

@media (max-width: 992px) {
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--turquoise);
}

.testimonial-user h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    font-style: italic;
}

/* Background Stars */
.particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}


/* ============================================
   GLOBAL MOBILE DOCK (Fixed & Optimized)
   ============================================ */
.mobile-dock-wrapper {
    position: fixed !important;
    bottom: 30px !important;
    bottom: calc(30px + env(safe-area-inset-bottom)) !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: 92% !important;
    max-width: 400px !important;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2147483647 !important;
    pointer-events: none;
    padding-bottom: 5px;
    /* Extra breathing room */
}

/* Show on mobile - Enforced */
@media (max-width: 992px) {
    .mobile-dock-wrapper {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 2147483647 !important;
    }

    body {
        padding-bottom: 120px !important;
    }
}

.mobile-dock-container {
    pointer-events: auto;
    background: rgba(15, 15, 30, 0.92) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 40px !important;
    padding: 15px 25px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7) !important;
    /* Floating Animation - Simplified for reliability */
    animation: dockFloat 6s ease-in-out infinite;
    transform: translateY(0);
    min-height: 70px;
}

@keyframes dockFloat {

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

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

.dock-item {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff !important;
    /* Force White */
    opacity: 0.6;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: transparent;
    flex-shrink: 0;
}

.dock-item i {
    transition: transform 0.3s ease;
    color: inherit !important;
    /* Ensure icon takes parent color */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    /* enhance visibility */
}

.dock-item:hover {
    color: #ffffff !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.dock-item.active {
    color: var(--turquoise) !important;
    opacity: 1;
    background: rgba(0, 217, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.25);
    transform: translateY(-5px);
}

.dock-item.active i {
    transform: scale(1.1);
}

/* Page Transition */
body {
    animation: fadeInPage 0.5s ease-out forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   CREATIVE ICON PACK RELOADED (Holographic/Neon) - FOR FOOTER STANDARDIZATION
   ============================================ */
.social-premium-pack {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    perspective: 1000px;
}

.premium-glass-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(20, 20, 40, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

/* Internal Glow Layer */
.premium-glass-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--glow-color, rgba(255, 255, 255, 0.1)), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Bottom Light Reflection */
.premium-glass-icon::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--glow-color, rgba(255, 255, 255, 0.5));
    box-shadow: 0 -2px 10px var(--glow-color, rgba(255, 255, 255, 0.5));
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.4s ease;
}

/* Brand Colors */
.premium-glass-icon.whatsapp {
    --glow-color: #25D366;
}

.premium-glass-icon.tiktok {
    --glow-color: #00f2ea;
}

.premium-glass-icon.instagram {
    --glow-color: #E1306C;
}

.premium-glass-icon.facebook {
    --glow-color: #1877F2;
}

.premium-glass-icon.theme-toggle {
    --glow-color: #ffd700;
}

.premium-glass-icon:hover {
    transform: translateY(-8px) scale(1.1);
    color: #fff;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.5),
        0 0 20px var(--glow-color);
    border: 1px solid var(--glow-color);
}

.premium-glass-icon:hover::before {
    opacity: 0.6;
}

.premium-glass-icon:hover::after {
    opacity: 1;
    width: 100%;
    left: 0;
    box-shadow: 0 -5px 20px var(--glow-color);
}

.premium-glass-icon i {
    z-index: 10;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.premium-glass-icon:hover i {
    transform: scale(1.2);
}