        :root {
            --primary: #6d28d9;
            --primary-light: #8b5cf6;
            --primary-dark: #5b21b6;
            --dark: #0f172a;
            --darker: #020617;
            --light: #f8fafc;
            --gray: #94a3b8;
            --dark-gray: #334155;
            --success: #10b981;
            --error: #ef4444;
            
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            --glass: rgba(15, 23, 42, 0.6);
            --glass-border: rgba(255, 255, 255, 0.1);
            
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);
            
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-full: 9999px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(109, 40, 217, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 25%);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.25rem 0;
            background-color: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.75rem 0;
            box-shadow: var(--shadow-lg);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-md);
            background: var(--gradient);
            color: white;
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--primary-light);
        }

        .nav-link.active {
            color: var(--primary-light);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient);
            border-radius: var(--radius-full);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.75rem;
            border-radius: var(--radius-md);
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-light);
            border: 2px solid var(--primary-light);
        }

        .btn-outline:hover {
            background-color: rgba(109, 40, 217, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            cursor: pointer;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 6rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(109, 40, 217, 0.15) 0%, transparent 70%);
            z-index: -1;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
        }

        .hero-subtitle {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 500px;
        }

        .search-container {
            position: relative;
            max-width: 500px;
        }

        .search-input {
            width: 100%;
            padding: 1rem 1.5rem;
            border-radius: var(--radius-full);
            border: 1px solid var(--dark-gray);
            background-color: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--light);
            font-size: 1rem;
            padding-right: 3.5rem;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.3);
        }

        .search-btn {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            aspect-ratio: 1;
            background: none;
            border: none;
            color: var(--primary-light);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            aspect-ratio: 16/9;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-badge {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            background-color: var(--glass);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 0.75rem 1.25rem;
            border-radius: var(--radius-full);
            border: 1px solid var(--glass-border);
        }

        .photographer {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Wallpapers Section */
        .section {
            padding: 5rem 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50%;
            height: 4px;
            background: var(--gradient);
            border-radius: var(--radius-full);
        }

        .gallery-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .category-filters {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.5rem 1.25rem;
            border-radius: var(--radius-full);
            background-color: var(--dark);
            color: var(--light);
            border: 1px solid var(--dark-gray);
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.9rem;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--gradient);
            border-color: transparent;
            color: white;
            box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
        }

        .sort-options {
            position: relative;
        }

        .sort-select {
            padding: 0.5rem 1rem 0.5rem 2.5rem;
            border-radius: var(--radius-full);
            background-color: var(--dark);
            color: var(--light);
            border: 1px solid var(--dark-gray);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: left 1rem center;
        }

        .wallpaper-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .wallpaper-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 16/9;
            background-color: var(--dark);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .wallpaper-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .wallpaper-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 1.5rem;
        }

        .wallpaper-card:hover .card-overlay {
            opacity: 1;
        }

        .top-actions {
            display: flex;
            justify-content: flex-end;
        }

        .like-btn {
            background-color: var(--glass);
            backdrop-filter: blur(5px);
            border: 1px solid var(--glass-border);
            color: white;
            padding: 0.5rem;
            border-radius: var(--radius-full);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            transition: all 0.2s;
            width: 36px;
            height: 36px;
            justify-content: center;
        }

        .like-btn:hover {
            background-color: rgba(239, 68, 68, 0.3);
            border-color: rgba(239, 68, 68, 0.3);
        }

        .like-btn.liked {
            background-color: rgba(239, 68, 68, 0.3);
            border-color: rgba(239, 68, 68, 0.3);
            color: var(--error);
        }

        .bottom-actions {
            display: flex;
            gap: 0.75rem;
        }

        .bottom-actions .btn {
            flex: 1;
            padding: 0.75rem;
            font-size: 0.9rem;
        }

        .load-more {
            display: block;
            margin: 3rem auto 0;
            padding: 1rem 2.5rem;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
        }

        .load-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
        }

        /* Upload FAB */
        .upload-fab {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 100;
        }

        .upload-btn {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-full);
            background: var(--gradient);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
        }

        .upload-btn:hover {
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 8px 25px rgba(109, 40, 217, 0.5);
        }

        /* Footer */
        .footer {
            background-color: var(--dark);
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--dark-gray);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-description {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-full);
            background-color: var(--darker);
            color: var(--gray);
            transition: all 0.2s;
        }

        .social-link:hover {
            color: var(--primary-light);
            background-color: rgba(109, 40, 217, 0.1);
            transform: translateY(-2px);
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-link {
            color: var(--gray);
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: var(--primary-light);
        }

        .newsletter {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-input {
            padding: 0.75rem 1rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--dark-gray);
            background-color: var(--darker);
            color: var(--light);
            font-size: 0.95rem;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-light);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--dark-gray);
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-image {
                max-width: 800px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: var(--dark);
                flex-direction: column;
                align-items: flex-start;
                padding: 6rem 2rem 2rem;
                gap: 1.5rem;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-actions {
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .gallery-controls {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .wallpaper-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding-top: 5rem;
            }
        }
        










        /* PROFILE USER SETTINGS - CUSTOM STYLES */

.profile-wrapper {
    background-color: var(--dark);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    margin-top: 7rem;
    box-shadow: var(--shadow-lg);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.profile-header img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 10px rgba(109, 40, 217, 0.4);
}

.profile-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-header small {
    color: var(--gray);
    font-size: 0.9rem;
}

.profile-form {
    margin-bottom: 3rem;
}

.profile-form h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--primary-light);
    font-weight: 600;
}

.profile-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--light);
}

.profile-form input[type="file"],
.profile-form input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--dark-gray);
    border-radius: var(--radius-md);
    background-color: var(--darker);
    color: var(--light);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.profile-form input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.profile-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gradient);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.comment {
    background-color: var(--dark-gray);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: background-color 0.2s;
}

.comment:hover {
    background-color: #475569;
}

.comment strong {
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.comment .btn-delete {
    margin-top: 0.75rem;
    background-color: var(--error);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comment .btn-delete:hover {
    background-color: #dc2626;
}



/* Search Results Styles */
.no-results {
    text-align: center;
    padding: 3rem;
    background-color: var(--dark);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.no-results p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.search-form {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.nav-username {
    color: #fff !important;
    font-weight: 600;
}
