@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --accent-orange: #ff6b00;
    --accent-yellow: #ffc107;
    --accent-glow: rgba(255, 107, 0, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: radial-gradient(circle at top right, var(--bg-dark), var(--bg-darker));
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Header & Nav */
header {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover, nav a.active {
    color: var(--accent-yellow);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d84315 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.cta-button:disabled {
    background: #334155;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.95));
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    font-weight: 300;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.page-title {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.page-title h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-title p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #020617;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-links a:hover {
    color: var(--accent-orange);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header nav {
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: rgba(2, 6, 23, 0.98);
        border-top: 1px solid var(--glass-border);
        margin-top: 0.5rem;
        border-radius: 10px;
        overflow: hidden;
    }

    nav ul.open {
        display: flex;
    }

    nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        font-size: 1.1rem;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .hero {
        padding: 5rem 1.5rem;
        background-attachment: scroll;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .page-title h1 {
        font-size: 2.2rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .time-box {
        min-width: 60px;
        padding: 0.7rem;
    }

    .time-box .num {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .content-section {
        padding: 1.5rem;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-content > div[style*="display: flex"] {
        flex-direction: column !important;
    }

    .auctions-grid {
        grid-template-columns: 1fr;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .filter-group select,
    .filter-group input {
        width: 100%;
    }

    .carousel-container {
        height: 250px;
    }

    .carousel-track {
        width: 200px;
        height: 200px;
    }

    .seo-section h2 {
        font-size: 1.8rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

/* Auction Grid & Cards */
.filters {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-primary);
}

.filter-group select {
    padding: 0.8rem 1.5rem;
    background: rgba(2, 6, 23, 0.8);
    color: white;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
}

.filter-group select:focus {
    border-color: var(--accent-orange);
}

.auctions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.auction-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    backdrop-filter: blur(5px);
    position: relative;
}

.auction-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, var(--accent-glow), transparent 30%);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: -1;
}

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

.auction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-orange);
}

.auction-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid var(--accent-orange);
}

.auction-emoji-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.8));
}

.auction-content {
    padding: 1.5rem;
}

.auction-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.auction-title {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.open {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid #10b981;
}

.status-badge.almost-full {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid #f59e0b;
}

.status-badge.sold-out {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid #ef4444;
}

.prize-value {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    color: var(--accent-yellow);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.auction-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
}

.spots-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.cta-button.full-width {
    width: 100%;
    text-align: center;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px dashed var(--glass-border);
}

.empty-state h3 {
    font-size: 2rem;
    color: var(--text-secondary);
}


/* How to Enter Steps */
.content-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.content-section h2 {
    color: var(--accent-yellow);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.2);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.steps {
    display: grid;
    gap: 2rem;
    margin: 2.5rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateX(10px);
    border-color: var(--accent-orange);
    background: rgba(0, 0, 0, 0.4);
}

.step-number {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    color: #020617;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--accent-glow);
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.rules-list {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin: 2rem 0;
}

.rules-list ul {
    list-style-type: none;
}

.rules-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.rules-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-size: 1.2rem;
}


/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.contact-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.contact-card .emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.contact-card h3 {
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.contact-card p, .contact-card a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--accent-orange);
}

.form-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    margin: 2.5rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.facebook-section {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(2, 6, 23, 0.5));
    border-left: 4px solid #1877F2;
    padding: 2rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.facebook-section h3 {
    color: #1877F2;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.facebook-section a {
    color: #1877F2;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed #1877F2;
}

.facebook-section a:hover {
    color: #fff;
    border-color: #fff;
}

.faq-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.faq-box h3 {
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.faq-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.faq-box p:last-child {
    margin-bottom: 0;
}


/* Mods & Extensions styles */

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--accent-orange);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-yellow);
}

/* Countdowns */
.countdown-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem;
    min-width: 80px;
    text-align: center;
}

.time-box .num {
    display: block;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--accent-yellow);
}

.time-box .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ccc;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-info h4 {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.2rem;
}

.reviewer-info .stars {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.review-body {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
}

/* SEO Content Sections */
.seo-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.seo-section h2 {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

.seo-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.highlight-box {
    background: rgba(255,107,0,0.1);
    border-left: 4px solid var(--accent-orange);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 2rem 0;
    color: var(--text-primary);
}


/* 3D Carousel Styles */
.carousel-container {
    perspective: 1000px;
    width: 100%;
    max-width: 800px;
    margin: 4rem auto;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.carousel-track {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
}
.carousel-item {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    border: 2px solid var(--accent-orange);
    cursor: pointer;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3D Tilt Effect on Cards */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}
.tilt-card-inner {
    transition: transform 0.1s;
    transform-style: preserve-3d;
}

