* {
    font-family: 'Comfortaa', cursive;
}

html,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2d2d2d;
}

body {
    background: #f0f2f5;
}

a {
    text-decoration: none;
    color: inherit;
}

input {
    padding: 10px 12px;
    display: block;
    width: 100%;
    border-radius: 3px;
    border: 1px solid #ececec;
    line-height: 1.5rem;
    color: #444444;
    font-size: 1rem;
}

/*
    HEADER
 */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header * {
    color: #ffffff;
}

header h1 {
    margin-top: 13px;
}

header h1 a {
    color: #ffffff;
    font-size: 1.4rem;
}

header h1 a:hover {
    color: #e94560;
}

header ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    float: right;
}

header ul li {
    float: left;
    position: relative;
}

header ul li a {
    display: block;
    font-size: 1.1rem;
    text-decoration: none;
    color: #ffffff;
    padding: 22px;
    transition: all 0.3s;
}

header ul li a:hover {
    background: rgba(233, 69, 96, 0.3);
    color: #e94560;
}

header ul li ul {
    position: absolute;
    top: 70px;
    right: 0px;
    width: 180px;
    display: none;
    z-index: 111;
}

header ul li:hover ul {
    display: block;
}

header ul li ul li {
    width: 100%;
}

header ul li ul li a {
    padding: 10px;
    background: #1a1a2e;
    color: #ffffff;
    border-bottom: 1px solid #0f3460;
}

header ul li ul li a:hover {
    background: #0f3460;
    color: #e94560;
}

/*
    SLIDER
 */
.slider-title {
    text-align: center;
    padding: 30px 0;
    color: #1a1a2e;
}

.carousel {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.carousel-inner,
.carousel-item {
    height: 400px;
    border-radius: 8px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption h5 {
    font-size: 1.8rem;
    font-weight: 500;
    background: rgba(26, 26, 46, 0.8);
    max-width: 100%;
    padding: 0.4em 0.8em;
    border-radius: 4px;
}

.carousel-caption-hack {
    position: absolute;
    right: 0%;
    bottom: 0.05rem;
    left: 0%;
    padding-top: 1.25rem;
    padding-bottom: 0rem;
    color: #fff;
    text-align: center;
    width: 100%;
}

.carousel-caption h5 a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.carousel-caption h5 a:hover {
    color: #e94560;
    text-decoration: underline;
}

/*
    Main
 */
.main-content h2 {
    margin: 30px 0;
    color: #1a1a2e;
}

/* Car Cards */
.car-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.car-card-img {
    height: 200px;
    overflow: hidden;
    background: #e8e8e8;
}

.car-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.car-card:hover .car-card-img img {
    transform: scale(1.05);
}

.car-no-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #e94560;
}

.car-no-img-big {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #e94560;
    border-radius: 8px;
}

.car-card-body {
    padding: 15px;
}

.car-brand-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e94560, #c23152);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.car-card-body h5 {
    margin: 5px 0 10px;
    font-size: 1rem;
    font-weight: 600;
}

.car-card-body h5 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s;
}

.car-card-body h5 a:hover {
    color: #e94560;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.car-specs span {
    font-size: 0.8rem;
    color: #666;
    background: #f0f2f5;
    padding: 3px 8px;
    border-radius: 4px;
}

.car-specs span i {
    color: #0f3460;
    margin-right: 3px;
}

.car-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e94560;
}

/* Car Price Big (single page) */
.car-price-big {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e94560;
    background: linear-gradient(135deg, #fff5f7, #ffe0e6);
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
}

/* Specs Table */
.specs-table {
    border-radius: 8px;
    overflow: hidden;
}

.specs-table td {
    padding: 10px 15px;
    vertical-align: middle;
}

.specs-table td:first-child {
    color: #666;
    width: 40%;
}

.specs-table td:first-child i {
    width: 20px;
    text-align: center;
    color: #0f3460;
    margin-right: 8px;
}

/* Gallery */
.gallery-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.gallery-row {
    margin-top: 10px;
}

.gallery-grid .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.8));
    padding: 20px 10px 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay span {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
}

/*
    Sidebar
 */
.search {
    margin-top: 96px;
}

.sidebar .section {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sidebar .section h3 {
    color: #1a1a2e;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.sidebar .topics ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-top: 1px solid #e0e0e0;
}

.sidebar .topics ul li a {
    display: block;
    padding: 12px 0px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 500;
    color: #444;
    font-size: 1rem;
}

.sidebar .topics ul li a:hover {
    padding-left: 10px;
    color: #e94560;
}

/* Brand dropdown */
.brands-toggle {
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.brands-toggle:hover {
    color: #e94560;
}

.brands-toggle span {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.brand-search-input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.brand-search-input:focus {
    border-color: #e94560;
}

.brand-hidden {
    display: none;
}

/*
    Footer
 */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #d3d3d3;
    position: relative;
    margin-top: 40px;
}

.footer .footer-section {
    padding: 22px;
}

.footer h4,
.footer h3 {
    color: white;
}

.footer .about .contact span {
    display: block;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.footer .about .socials a {
    border: 1px solid #0f3460;
    width: 45px;
    height: 41px;
    padding-top: 5px;
    margin-right: 5px;
    text-align: center;
    display: inline-block;
    font-size: 1.3em;
    border-radius: 5px;
    transition: all .3s;
    color: #ffffff;
}

.footer .about .socials a:hover {
    border: 1px solid #e94560;
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

.footer .links ul a {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
    transition: all .3s;
    color: #d3d3d3;
    text-decoration: none;
}

.footer .links ul a:hover {
    color: #e94560;
    margin-left: 10px;
}

.footer .contact-form .contact-input {
    background: rgba(255, 255, 255, 0.05);
    color: #bebdbd;
    margin-bottom: 10px;
    line-height: 1.5rem;
    padding: .9rem 1.4rem;
    border: 1px solid #0f3460;
    border-radius: 4px;
    width: 100%;
}

.footer .contact-form .contact-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e94560;
    outline: none;
}

.footer .contact-form .contact-btn {
    float: right;
    font-size: 1em;
    background: #e94560;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
}

.footer .contact-form .contact-btn:hover {
    background: #c23152;
}

.footer .footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    color: #686868;
    height: 50px;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding-top: 20px;
}

/*
    SINGLE_POST
 */
.single_post {
    margin-bottom: 30px;
}

.single_post .info {
    margin: 20px 0;
}

.single_post .info i {
    display: inline-block;
    margin-right: 20px;
    color: #666;
}

.single_post a {
    text-decoration: underline;
}

.single_post a:hover {
    text-decoration: none;
    color: #e94560;
}

.single_post_text {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.8;
}

/*
FORMS
 */
.reg_form h2 {
    text-align: center;
    margin: 30px 0;
}

.reg_form input {
    height: 3.3rem;
}

.reg_form a {
    font-size: 1.2em;
    transition: all .3s;
    color: #5c5b5b;
    text-decoration: underline;
    margin-left: 60px;
}

.reg_form a:hover {
    margin-left: 55px;
    transition: all .3s;
}

/*
FORMS
 */

form div.err p {
    color: #e94560;
    font-style: italic;
    font-size: 0.8rem;
}

/*
COMMENTS
 */
.all-comments {
    padding-top: 3rem;
}

.all-comments h3 {
    margin-bottom: 2rem;
}

.all-comments .one-comment {
    padding: 1rem;
    border: 1px solid #0f3460;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.all-comments .one-comment:hover {
    border-color: #e94560;
    box-shadow: 0 2px 8px rgba(233, 69, 96, 0.1);
}

/* Legacy comment styles removed to avoid breaking Tailwind flex containers */

/* Pagination */
.pagination .page-link {
    color: #1a1a2e;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background: #e94560;
    border-color: #e94560;
    color: #ffffff;
}

.pagination .page-link:hover {
    background: #0f3460;
    color: #ffffff;
    border-color: #0f3460;
}

/* Admin Sidebar */
.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 5px;
}

.sidebar ul li a {
    display: block;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 6px;
    color: #1a1a2e;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 500;
}

.sidebar ul li a:hover {
    background: #0f3460;
    color: #ffffff;
}

/* Alerts */
.alert-danger {
    background: #ffe0e6;
    border-color: #e94560;
    color: #c23152;
}

/* =========================================
   DARK THEME
   ========================================= */

body.dark-theme {
    background: #121212;
    color: #e0e0e0;
}

body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
    color: #f0f0f0;
}

body.dark-theme header {
    background: #1a1a2e;
    border-bottom: 1px solid #333;
}

body.dark-theme header h1 a,
body.dark-theme header nav ul li a {
    color: #e0e0e0;
}

body.dark-theme header nav ul li a:hover {
    color: #e94560;
}

body.dark-theme header nav ul ul {
    background: #1e1e2e;
    border: 1px solid #333;
}

body.dark-theme .sidebar {
    background: #1e1e2e;
    border-radius: 8px;
}

body.dark-theme .sidebar .section {
    background: #252535;
    border-radius: 6px;
}

body.dark-theme .sidebar h3 {
    color: #e94560;
}

body.dark-theme .sidebar ul li a {
    color: #ccc;
    background: transparent;
}

body.dark-theme .sidebar ul li a:hover {
    color: #fff;
    background: #0f3460;
}

body.dark-theme .car-card {
    background: #1e1e2e;
    border-color: #333;
}

body.dark-theme .car-card .car-title {
    color: #f0f0f0;
}

body.dark-theme .car-card .car-info {
    color: #aaa;
}

body.dark-theme .car-card:hover {
    border-color: #e94560;
    box-shadow: 0 6px 24px rgba(233, 69, 96, 0.2);
}

body.dark-theme .single_post,
body.dark-theme .comments {
    background: #1e1e2e;
    border-radius: 8px;
    padding: 20px;
}

body.dark-theme .table {
    color: #e0e0e0;
}

body.dark-theme .table-striped>tbody>tr:nth-of-type(odd) {
    background: #252535;
}

body.dark-theme .form-control,
body.dark-theme input,
body.dark-theme textarea,
body.dark-theme select {
    background: #252535;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-theme .form-control:focus,
body.dark-theme input:focus,
body.dark-theme textarea:focus {
    background: #2d2d45;
    border-color: #e94560;
    color: #fff;
}

body.dark-theme footer {
    background: #1a1a2e;
    color: #aaa;
}

body.dark-theme .brand-search-input {
    background: #252535;
    border-color: #444;
    color: #e0e0e0;
}

body.dark-theme .brand-search-input:focus {
    border-color: #e94560;
}

body.dark-theme .one-comment {
    background: #252535;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
}

/* =========================================
   PROFILE PAGE
   ========================================= */

.profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.dark-theme .profile-card {
    background: #1e1e2e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

body.dark-theme .profile-row {
    border-bottom-color: #333;
}

.profile-label {
    color: #888;
    font-size: 0.9rem;
}

.profile-value {
    font-weight: 600;
}

.badge-admin {
    background: #e94560;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.badge-user {
    background: #0f3460;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Theme toggle switch */
.theme-toggle-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px 18px;
}

body.dark-theme .theme-toggle-card {
    background: #252535;
}

.theme-toggle-label {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-theme-toggle {
    width: 56px;
    height: 28px;
    border-radius: 20px;
    background: #ccc;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    padding: 0 3px;
}

.btn-theme-toggle.is-dark {
    background: #e94560;
    justify-content: flex-end;
}

.toggle-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    display: block;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

/* =========================================
   TEXTAREA CURSOR + COMMENT FORM
   ========================================= */

textarea,
.comment-textarea {
    cursor: text !important;
    color: #2d2d2d;
    resize: vertical;
}

body.dark-theme textarea,
body.dark-theme .comment-textarea {
    color: #e0e0e0;
    cursor: text !important;
}

/* Character counter */
.comment-counter {
    font-size: 0.82rem;
    color: #888;
}

.comment-counter #charCount {
    font-weight: 700;
    transition: color 0.2s;
}

/* =========================================
   LIVE SEARCH
   ========================================= */
.search-container {
    position: relative;
    width: 100%;
}

#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-top: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-img {
    width: 50px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    background: #eee;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.search-result-meta {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.search-result-price {
    font-weight: 700;
    color: #e94560;
    margin-left: 10px;
    font-size: 0.9rem;
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

body.dark-theme #search-results {
    background: #1e1e2e;
    border-color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

body.dark-theme .search-result-item {
    border-bottom-color: #333;
}

body.dark-theme .search-result-item:hover {
    background: #252535;
}

body.dark-theme .search-result-title {
    color: #f0f0f0;
}

body.dark-theme .search-result-meta {
    color: #aaa;
}

/*
=============================
   STITCH PREMIUM DESIGN
=============================
*/
.glass {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1) !important;
}

.dark .glass,
.dark-theme .glass {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4) !important;
}



.glass-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tilt-card {
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    transform-style: preserve-3d;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.spec-fade {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.tilt-card:hover .spec-fade {
    opacity: 1;
    transform: translateY(0);
}

.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.magnetic-btn:hover {
    transform: scale(1.05);
}

.hero-gradient {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.9) 100%);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e11d48;
}

/*
=============================
   FEATURE & UI FIXES (Turn 5)
=============================
*/

/* 2. Neon Select Arrows in Dark Theme */
.dark select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

/* 4. Global Subtle Animated Two-Tone Gradient */
body {
    background: linear-gradient(135deg, #00d2ff 0%, #ffffff 50%, #00d2ff 100%) !important;
    background-size: 400% 400%;
    animation: flowGradient 15s ease-in-out infinite alternate;
}

@keyframes flowGradient {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

body.dark-theme {
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0f172a, #020617) !important;
    background-size: 400% 400%;
    animation: globalGradientBG 15s ease infinite;
}

@keyframes globalGradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 5. Single Car Page Custom Stitch Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.glass-morphism,
.glass {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

body.dark-theme .glass-morphism,
body.dark-theme .glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}