:root {
    --bg-color: #0a0a12;
    --card-bg: #112240;
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
    --accent-green: #64ffda;
    --accent-blue: #00d4ff;
    --accent-purple: #bd34fe;
    --terminal-black: #020c1b;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-heading: 'Rajdhani', sans-serif;
    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    --nav-height: 80px;
}

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

html,
body {
    cursor: none;
}

a,
button,
.btn,
.project-card,
.cert-item,
input,
textarea,
.mobile-menu-btn {
    cursor: none !important;
}

.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    transition: width 0.3sEase, height 0.3s ease, border 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-green);
}

.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: var(--accent-blue);
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-blue);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--text-secondary);
    border-radius: 5px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-green);
}

/* CRT Scanline Effect */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 9999;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(32, 255, 77, 0.02) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 10s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        bottom: 100%;
    }

    100% {
        bottom: -100px;
    }
}

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    /* Increased visibility as requested */
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accent {
    color: var(--accent-green);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    white-space: nowrap;
}

.section-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-right: 20px;
}

.section-header .line {
    height: 1px;
    background: var(--text-secondary);
    width: 100%;
    opacity: 0.3;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.primary-btn {
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    background: transparent;
}

.primary-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
}

.secondary-btn {
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    margin-left: 15px;
}

.secondary-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* Header */
header {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: bold;
}

.logo .prompt {
    color: var(--accent-blue);
}

.glitch {
    position: relative;
    color: var(--accent-green);
    font-weight: bold;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(70px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(45px, 9999px, 5px, 0);
    }

    15% {
        clip: rect(80px, 9999px, 10px, 0);
    }

    20% {
        clip: rect(10px, 9999px, 30px, 0);
    }

    25% {
        clip: rect(5px, 9999px, 85px, 0);
    }

    30% {
        clip: rect(50px, 9999px, 60px, 0);
    }

    35% {
        clip: rect(35px, 9999px, 20px, 0);
    }

    40% {
        clip: rect(90px, 9999px, 10px, 0);
    }

    45% {
        clip: rect(60px, 9999px, 40px, 0);
    }

    50% {
        clip: rect(20px, 9999px, 50px, 0);
    }

    55% {
        clip: rect(10px, 9999px, 70px, 0);
    }

    60% {
        clip: rect(75px, 9999px, 30px, 0);
    }

    65% {
        clip: rect(5px, 9999px, 45px, 0);
    }

    70% {
        clip: rect(40px, 9999px, 10px, 0);
    }

    75% {
        clip: rect(65px, 9999px, 80px, 0);
    }

    80% {
        clip: rect(15px, 9999px, 25px, 0);
    }

    85% {
        clip: rect(55px, 9999px, 10px, 0);
    }

    90% {
        clip: rect(10px, 9999px, 95px, 0);
    }

    95% {
        clip: rect(30px, 9999px, 60px, 0);
    }

    100% {
        clip: rect(85px, 9999px, 40px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    5% {
        clip: rect(50px, 9999px, 25px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 65px, 0);
    }

    15% {
        clip: rect(45px, 9999px, 15px, 0);
    }

    20% {
        clip: rect(85px, 9999px, 15px, 0);
    }

    25% {
        clip: rect(30px, 9999px, 85px, 0);
    }

    30% {
        clip: rect(25px, 9999px, 40px, 0);
    }

    35% {
        clip: rect(10px, 9999px, 75px, 0);
    }

    40% {
        clip: rect(55px, 9999px, 15px, 0);
    }

    45% {
        clip: rect(90px, 9999px, 55px, 0);
    }

    50% {
        clip: rect(40px, 9999px, 35px, 0);
    }

    55% {
        clip: rect(35px, 9999px, 15px, 0);
    }

    60% {
        clip: rect(80px, 9999px, 65px, 0);
    }

    65% {
        clip: rect(15px, 9999px, 85px, 0);
    }

    70% {
        clip: rect(65px, 9999px, 45px, 0);
    }

    75% {
        clip: rect(10px, 9999px, 45px, 0);
    }

    80% {
        clip: rect(35px, 9999px, 90px, 0);
    }

    85% {
        clip: rect(15px, 9999px, 35px, 0);
    }

    90% {
        clip: rect(60px, 9999px, 20px, 0);
    }

    95% {
        clip: rect(25px, 9999px, 15px, 0);
    }

    100% {
        clip: rect(95px, 9999px, 60px, 0);
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-green);
}

.nav-links a::before {
    content: "#";
    color: var(--accent-green);
    margin-right: 5px;
}

.mobile-menu-btn {
    display: none;
    color: var(--accent-green);
    font-size: 1.8rem;
    /* Slightly larger */
    cursor: pointer;
    z-index: 101;
    /* Ensure above everything */
    width: 30px;
    /* Explicit width */
    height: 30px;
    /* Explicit height */
    text-align: center;
    line-height: 30px;
}

/* Hero */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.status-indicator {
    font-family: var(--font-mono);
    color: var(--accent-green);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ccd6f6 70%, #64ffda);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typing-effect {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--text-secondary);
    height: 2.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.hero-bio {
    max-width: 500px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.code-block {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--text-secondary);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

/* About - Terminal Style */
.terminal-window {
    background: var(--terminal-black);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.terminal-window:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.terminal-header {
    background: #1a1a2e;
    padding: 8px 15px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.key {
    color: var(--accent-blue);
}

.value {
    color: #f8f8f2;
}

.comment {
    color: #6272a4;
    margin-top: 15px;
    font-style: italic;
}

.indent {
    margin-left: 20px;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.skill-category h4 {
    color: var(--accent-green);
    margin-bottom: 15px;
    font-family: var(--font-mono);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.skill-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 5px 10px;
    border-radius: 4px;
}

.progress-bar-container {
    height: 4px;
    background: #1a1a2e;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-blue);
    position: relative;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header .fa-folder-open {
    color: var(--accent-green);
    font-size: 40px;
}

.project-links a {
    color: var(--text-secondary);
    font-size: 20px;
    margin-left: 10px;
    transition: var(--transition);
}

.project-links a:hover {
    color: var(--accent-green);
}

.card-body h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.card-footer {
    margin-top: 20px;
}

.card-footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.card-footer ul li {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.cert-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.cert-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.cert-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cert-info .issuer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-mono);
    margin-bottom: 20px;
}

.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: auto;
}

.cert-link:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* Contact */
.contact-terminal {
    background: #000;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 20px;
    font-family: var(--font-mono);
}

.terminal-bar {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.btn-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.w {
    background: #ff5f56;
}

.y {
    background: #ffbd2e;
}

.g {
    background: #27c93f;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--accent-green);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: var(--text-primary);
    font-family: var(--font-mono);
    padding: 10px 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-green);
}

/* Footer */
footer {
    padding: 30px 0;
    background: #020c1b;
    border-top: 1px solid #112240;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.digital-signature p {
    margin-bottom: 5px;
}

.hash {
    color: var(--accent-purple);
}

/* Responsive */

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 27, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background: var(--card-bg);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: 8px;
    position: relative;
    border: 1px solid var(--accent-green);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--terminal-black);
}

.modal-header h3 {
    color: var(--accent-green);
    font-family: var(--font-mono);
    font-size: 1.2rem;
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.modal-body {
    padding: 30px;
    overflow-y: auto;
    font-family: var(--font-heading);
}

.modal-body h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
}

.modal-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(136, 146, 176, 0.1);
}

.modal-tech-tag {
    background: rgba(100, 255, 218, 0.05);
    color: var(--accent-green);
    padding: 5px 12px;
    border-radius: 15px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Container adjustment for mobile */
    .container {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        /* Slightly smaller for better fit */
        word-wrap: break-word;
        /* Prevent overflow */
    }

    .typing-effect {
        justify-content: center;
        /* Center typing text on mobile */
        font-size: 1.5rem;
    }

    .hero-visual {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Mobile Menu Active State */
    .nav-links.nav-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 18, 0.98);
        /* Less transparent for readability */
        padding: 30px;
        border-bottom: 1px solid var(--accent-green);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        align-items: center;
        /* Center links */
        gap: 25px;
    }

    .nav-links.nav-active a {
        font-size: 1.2rem;
        /* Larger touch targets */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .section-header h3 {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .typing-effect {
        font-size: 1.2rem;
    }

    .badge-item {
        width: 250px;
        height: 250px;
    }
}

/* Badges - Infinite Scroll (Large View) */
.badges-section {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
}

.badge-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Increase height for large badges */
    height: 350px;
    display: flex;
    align-items: center;
}

.badge-slider::before,
.badge-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    /* Larger fade for large items */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.badge-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.badge-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.badge-track {
    display: flex;
    gap: 100px;
    /* Larger gap */
    width: max-content;
    /* Slower animation for large items */
    animation: scroll 30s linear infinite;
    align-items: center;
}

.badge-slider:hover .badge-track {
    animation-play-state: paused;
}

.badge-item {
    flex: 0 0 auto;
    /* Large dimensions */
    width: 250px;
    height: 250px;
    background: var(--card-bg);
    border-radius: 20px;
    /* Rounder corners */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: var(--transition);
}

.badge-item:hover {
    border-color: var(--accent-green);
    box-shadow: 0 0 50px rgba(100, 255, 218, 0.5);
    transform: scale(1.3);
    z-index: 100;
    position: relative;
}

.badge-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Carousel Controls */
.badge-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.dots-container {
    display: flex;
    gap: 10px;
}

.control-btn {
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.control-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
    transform: scale(1.1);
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.badge-dot:hover,
.badge-dot.active {
    background: var(--accent-green);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.4);
}

@media (max-width: 768px) {
    .badge-slider {
        height: 400px;
    }

    .badge-slider::before,
    .badge-slider::after {
        width: 50px;
    }

    .badge-item {
        width: 300px;
        height: 300px;
        padding: 20px;
    }

    .badge-track {
        gap: 40px;
    }
}