* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #020617;
    --bg-secondary: #0f172a;
    --text-primary: #fff;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --accent-color: #00ffff;
    --accent-glow: rgba(0, 255, 255, 0.3);
}

body.light-mode {
    --bg-primary: #f1f5f9;
    --bg-secondary: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --accent-color: #0ea5e9;
    --accent-glow: rgba(14, 165, 233, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #00cccc);
    box-shadow: 0 0 10px var(--accent-color);
    z-index: 9999;
    transition: width 0.1s ease;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-color);
    z-index: 1001;
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    z-index: 1001;
    margin-right: 1rem;
}

.theme-toggle:hover {
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: rotate(180deg);
}

.theme-icon {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

.main-container {
    width: 100%;
    margin: 0 auto;
    padding: 100px 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card {
    background: var(--bg-secondary);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.card:hover {
    box-shadow: 0 0 30px var(--accent-glow);
}

.section-title {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--accent-glow);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 255, 255, 0.1);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px var(--accent-glow);
}

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

.skeleton-loader {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-item {
    height: 80px;
    background: linear-gradient(90deg, var(--bg-secondary) 25%, rgba(0, 255, 255, 0.1) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 15px;
}

.skeleton-card {
    height: 250px;
    background: linear-gradient(90deg, var(--bg-secondary) 25%, rgba(0, 255, 255, 0.1) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 20px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-section {
    background: var(--bg-secondary);
    border-radius: 25px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 0 20px var(--accent-glow);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0.5rem 0;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.typing-text {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 15px var(--accent-glow);
}

.social-icon:hover {
    background: var(--accent-color);
    color: #020617;
    box-shadow: 0 0 25px var(--accent-color);
    transform: translateY(-5px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: #020617;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 0 25px var(--accent-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #020617;
    box-shadow: 0 0 25px var(--accent-color);
    transform: translateY(-3px);
}

.hero-image {
    flex-shrink: 0;
}

.hexagon-image {
    width: 250px;
    height: 250px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 25px var(--accent-color);
}

.hexagon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-image .hexagon-image {
    width: 200px;
    height: 200px;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.skill-category {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.category-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

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

.skill-item {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--accent-glow);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.skill-bar {
    width: 100%;
    height: 10px;
    background: var(--bg-primary);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #00cccc);
    box-shadow: 0 0 15px var(--accent-color);
    transition: width 1s ease;
}

.experience-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-item {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.experience-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.experience-item .company {
    color: var(--text-secondary);
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.experience-item .date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.experience-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    white-space: pre-line;
    margin-top: 1rem;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--accent-glow);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px var(--accent-glow);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.portfolio-tech {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.image-count {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: 25px;
    padding: 2rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 50px var(--accent-glow);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.close-modal:hover {
    color: #fff;
    text-shadow: 0 0 15px var(--accent-color);
}

.modal-images {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
}

.modal-images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 255, 0.8);
    color: #020617;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
}

.modal-nav:hover {
    background: #00ffff;
    box-shadow: 0 0 20px #00ffff;
}

.modal-nav.prev {
    left: 0;
    border-radius: 0 10px 10px 0;
}

.modal-nav.next {
    right: 0;
    border-radius: 10px 0 0 10px;
}

.modal-info h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modal-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-info div {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.modal-thumbnails {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.thumbnail.active {
    border-color: #00ffff;
    box-shadow: 0 0 15px #00ffff;
}

.certificate-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.certificate-item {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--accent-glow);
    transition: all 0.3s;
    cursor: pointer;
}

.certificate-item:hover {
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-5px);
}

.certificate-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificate-info {
    padding: 1.5rem;
}

.certificate-info h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.certificate-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.certificate-modal-image {
    width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.certificate-modal-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 70vh;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: #020617;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.contact-form textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-info {
    background: #020617;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s;
}

.contact-item-info:hover {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-details a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    background: #0f172a;
    border-radius: 25px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.login-card h1 {
    color: #00ffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px #00ffff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    background: #020617;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.login-card .btn-primary {
    width: 100%;
}

.admin-container {
    min-height: 100vh;
    padding: 2rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header h1 {
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}

.admin-content {
    display: grid;
    gap: 2rem;
}

.admin-card {
    background: #0f172a;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.admin-card h2 {
    color: #00ffff;
    margin-bottom: 1.5rem;
}

.admin-card input,
.admin-card textarea {
    width: 100%;
    background: #020617;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.admin-card input:focus,
.admin-card textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.items-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item {
    background: #020617;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd5e1;
}

.item button {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.item button:hover {
    background: #dc2626;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.image-preview {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #020617;
    border-radius: 15px;
    min-height: 50px;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
}

.contact-item {
    background: #020617;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #00ffff;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #00ffff;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-radius: 10px;
        background: var(--bg-primary);
        text-align: center;
    }

    .nav-menu a::after {
        display: none;
    }

    .theme-toggle {
        margin-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hexagon-image {
        width: 200px;
        height: 200px;
    }

    .portfolio-container,
    .certificate-container {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .main-container {
        padding: 100px 1rem 2rem;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

.search-input {
    width: 100%;
    background: var(--bg-primary);
    border: 2px solid var(--accent-glow);
    border-radius: 15px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.portfolio-controls {
    margin-bottom: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.filter-btn {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--accent-glow);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.filter-btn.active {
    background: var(--accent-color);
    color: #020617;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}
