:root {
    --primary-color: #36f9c9;
    --primary-dark: #00d4a9;
    --secondary-color: #9d4edd;
    --accent-color: #ff2a6d;
    --gold-accent: #ffd700;
    --silver-accent: #c0c0c0;
    --dark-bg: #0f0f13;
    --darker-bg: #070709;
    --card-bg: #1a1a24;
    --border-color: #2a2a3a;
    --text-primary: #f0f0f0;
    --text-secondary: #b8b8c8;
    --text-muted: #7a7a8c;
    --success-color: #00e5a0;
    --warning-color: #ffcc00;
    --danger-color: #ff3366;
    --info-color: #00aaff;
    --font-main: 'Rajdhani', 'Orbitron', sans-serif;
    --font-code: 'JetBrains Mono', 'Courier New', monospace;
    --premium-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(54, 249, 201, 0.2);
    --text-shadow: 0 0 10px rgba(54, 249, 201, 0.3);
}

body {
    background-color: var(--dark-bg) !important;
    color: var(--text-primary) !important;
    font-family: var(--font-main);
    line-height: 1.6;
    background-image:
        linear-gradient(rgba(54, 249, 201, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(54, 249, 201, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    letter-spacing: 0.3px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 140, 0.05), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 140, 0.3);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 140, 0.5);
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

code, pre {
    font-family: var(--font-code);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    padding: 0.2em 0.4em;
    color: var(--primary-color);
}

.navbar {
    background-color: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
    opacity: 1;
}

.card {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--premium-shadow);
}

.card:hover::before {
    opacity: 1;
}

.card-header {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid var(--border-color) !important;
    color: var(--primary-color) !important;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.btn {
    border-radius: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0.7rem 1.8rem;
    border: none;
    backdrop-filter: blur(5px);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: var(--darker-bg);
    box-shadow: 0 4px 15px rgba(54, 249, 201, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 0 20px rgba(54, 249, 201, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #7000cc;
    border-color: #7000cc;
    box-shadow: 0 0 15px rgba(140, 0, 255, 0.5);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    box-shadow: 0 0 15px rgba(0, 255, 140, 0.5);
}

.btn-danger {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
}

.btn-danger:hover {
    background-color: #e62e5c;
    border-color: #e62e5c;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
}

.form-control, .form-select {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 140, 0.25);
    color: var(--text-primary);
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.table {
    color: var(--text-primary);
    border-color: var(--border-color);
}

.table thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
    border-color: var(--border-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem;
}

.table tbody tr {
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: rgba(0, 255, 140, 0.05);
}

.table td {
    padding: 1rem;
    border-color: var(--border-color);
}

.badge {
    font-weight: 500;
    padding: 0.5em 0.8em;
    border-radius: 4px;
}

.badge.bg-success {
    background-color: var(--success-color) !important;
}

.badge.bg-warning {
    background-color: var(--warning-color) !important;
    color: var(--darker-bg);
}

.badge.bg-danger {
    background-color: var(--danger-color) !important;
}

.badge.bg-info {
    background-color: var(--info-color) !important;
}

.alert {
    border: none;
    border-radius: 4px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.alert-success {
    background-color: rgba(0, 204, 112, 0.1);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background-color: rgba(255, 51, 102, 0.1);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-warning {
    background-color: rgba(255, 187, 0, 0.1);
    color: var(--warning-color);
    border-left: 4px solid var(--warning-color);
}

.alert-info {
    background-color: rgba(0, 170, 255, 0.1);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

.sidebar {
    background: linear-gradient(135deg, var(--darker-bg), #151515);
    border-right: 1px solid var(--border-color);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
}

.sidebar .nav-link {
    color: var(--text-secondary);
    border-left: 3px solid transparent;
    margin: 5px 0;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: rgba(0, 255, 140, 0.1);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.main-content {
    background-color: var(--dark-bg) !important;
    min-height: 100vh;
    padding: 20px;
}

.profile-header {
    background: linear-gradient(135deg, var(--darker-bg), #151515) !important;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 255, 140, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 140, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--card-bg);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 140, 0.3);
    position: relative;
    z-index: 2;
}

.team-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 140, 0.2);
}

.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-position {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 140, 0.3);
}

footer, .footer {
    background-color: var(--darker-bg) !important;
    color: var(--text-secondary) !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 3rem 0;
}

footer h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

footer p {
    color: var(--text-secondary);
}

footer a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 140, 0.5);
        text-shadow: 0 0 5px rgba(0, 255, 140, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 140, 0.8);
        text-shadow: 0 0 10px rgba(0, 255, 140, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 140, 0.5);
        text-shadow: 0 0 5px rgba(0, 255, 140, 0.5);
    }
}

.glow-effect {
    animation: glow 2s infinite;
}

.glitch-image {
    position: relative;
    z-index: 1;
}

.glitch-image:hover {
    animation: glitch-anim 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

@keyframes glitch-anim {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-3px, 3px);
    }
    40% {
        transform: translate(-3px, -3px);
    }
    60% {
        transform: translate(3px, 3px);
    }
    80% {
        transform: translate(3px, -3px);
    }
    100% {
        transform: translate(0);
    }
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(0, 255, 140, 0.1) 70%, rgba(0, 255, 140, 0.1) 75%, transparent 80%);
    background-size: 200% 200%;
    animation: glitch-overlay 5s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes glitch-overlay {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200% 200%;
    }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,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');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

.terminal-prefix {
    color: var(--primary-color);
    font-family: var(--font-code);
    margin-right: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    z-index: 5;
    position: relative;
}

.binary-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-code);
    font-size: 8px;
    color: rgba(54, 249, 201, 0.1);
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 1px;
}

.terminal-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    margin-right: 8px;
    position: relative;
    box-shadow: 0 0 10px rgba(54, 249, 201, 0.5);
}

.terminal-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
}

.header-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
    animation: header-scan 3s linear infinite;
    pointer-events: none;
}

@keyframes header-scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(50px); }
}

.code-snippet {
    position: fixed;
    font-family: var(--font-code);
    font-size: 12px;
    color: var(--primary-color);
    background-color: rgba(10, 10, 15, 0.85);
    padding: 10px 15px;
    border-radius: 6px;
    z-index: 9998;
    opacity: 0.9;
    transition: all 0.5s ease;
    pointer-events: none;
    text-shadow: 0 0 5px rgba(54, 249, 201, 0.5);
    border: 1px solid rgba(54, 249, 201, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(54, 249, 201, 0.2);
    backdrop-filter: blur(5px);
    max-width: 500px;
    overflow: hidden;
}

.premium-snippet {
    border-left: 3px solid var(--primary-color);
}

.snippet-cursor {
    display: inline-block;
    color: var(--primary-color);
    animation: blink-cursor 0.8s infinite;
    margin-left: 2px;
    font-weight: 300;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.snippet-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 15px rgba(54, 249, 201, 0.2);
    border-radius: 6px;
    opacity: 0;
    animation: snippet-pulse 2s ease-in-out infinite;
}

@keyframes snippet-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.dataTables_wrapper .dataTables_length, 
.dataTables_wrapper .dataTables_filter, 
.dataTables_wrapper .dataTables_info, 
.dataTables_wrapper .dataTables_processing, 
.dataTables_wrapper .dataTables_paginate {
    color: var(--text-secondary);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: var(--text-secondary) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--primary-color) !important;
    color: var(--darker-bg) !important;
    border: 1px solid var(--primary-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(0, 255, 140, 0.1) !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--border-color) !important;
}

.skill-badge {
    background-color: rgba(0, 255, 140, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 255, 140, 0.2);
    border-radius: 20px;
    padding: 0.35rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background-color: rgba(0, 255, 140, 0.2);
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg)) !important;
    position: relative;
    overflow: hidden;
    color: var(--text-primary) !important;
}

.hero-title {
    color: var(--primary-color) !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 140, 0.3);
}

.hero-subtitle {
    color: var(--text-secondary) !important;
}

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) !important;
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

.contact-section {
    background-color: var(--dark-bg) !important;
    color: var(--text-primary) !important;
    padding: 5rem 0;
}

section {
    background-color: var(--dark-bg) !important;
    color: var(--text-primary) !important;
}

.terminal {
    background-color: #0a0a0a;
    border-radius: 10px;
    padding: 1.8rem;
    font-family: var(--font-code);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--premium-shadow);
    position: relative;
    backdrop-filter: blur(10px);
}

.terminal::before {
    content: "● ● ●";
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 5px;
}

.terminal-content {
    margin-top: 20px;
}

.terminal-line {
    display: block;
    line-height: 1.5;
    margin-bottom: 5px;
}

.terminal-prompt::before {
    content: "$ ";
    color: var(--accent-color);
}

.text-dark, .text-black, .text-body {
    color: var(--text-primary) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.bg-light, .bg-white {
    background-color: var(--card-bg) !important;
}

.bg-dark {
    background-color: var(--darker-bg) !important;
}

.border, .border-top, .border-bottom, .border-start, .border-end {
    border-color: var(--border-color) !important;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.modal-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
}

.dropdown-menu {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.dropdown-item {
    color: var(--text-primary);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(0, 255, 140, 0.1);
    color: var(--primary-color);
}

.list-group-item {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.typing-effect {
    border-right: 2px solid var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    position: relative;
}

.typing-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 140, 0.2) 50%, transparent 100%);
    animation: typing-glitch 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

@keyframes typing-glitch {
    0% { left: -100%; }
    100% { left: 100%; }
}

.matrix-bg {
    position: relative;
    overflow: hidden;
}

.matrix-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="20" fill="%2300ff8c" font-family="monospace" font-size="10">10110</text><text x="30" y="40" fill="%2300ff8c" font-family="monospace" font-size="10">01001</text><text x="50" y="60" fill="%2300ff8c" font-family="monospace" font-size="10">11010</text><text x="70" y="80" fill="%2300ff8c" font-family="monospace" font-size="10">00101</text></svg>');
    opacity: 0.05;
    z-index: -1;
    animation: matrix-scroll 20s linear infinite;
}

@keyframes matrix-scroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 1000px; }
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        transparent 0px,
        rgba(54, 249, 201, 0.02) 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9997;
    animation: scan-flicker 5s linear infinite;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(54, 249, 201, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(54, 249, 201, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 9996;
    opacity: 0.5;
}

.random-glitch {
    position: fixed;
    background-color: var(--primary-color);
    opacity: 0.7;
    z-index: 9995;
    pointer-events: none;
    animation: random-glitch 0.5s ease-out forwards;
}

@keyframes random-glitch {
    0% {
        opacity: 0.7;
        transform: skewX(0deg);
    }
    20% {
        transform: skewX(20deg);
    }
    40% {
        transform: skewX(-20deg);
    }
    60% {
        transform: skewX(10deg);
    }
    80% {
        transform: skewX(-10deg);
    }
    100% {
        opacity: 0;
        transform: skewX(0deg);
    }
}

@keyframes scan-flicker {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
    25%, 75% { opacity: 0.3; }
}

.premium-accent {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(54, 249, 201, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

body::before {
    content: '';
    position: fixed;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
    animation: accent-pulse 10s ease-in-out infinite alternate;
}

@keyframes accent-pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

@media (max-width: 768px) {
    .profile-img {
        width: 150px;
        height: 150px;
    }

    .profile-header {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .team-img {
        height: 200px;
    }
}

@media print {
    body {
        background: white;
        color: black;
    }

    .card, .table {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .sidebar, .navbar, footer {
        display: none;
    }

    .main-content {
        margin: 0;
        padding: 0;
    }
}
