        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            overflow-x: clip;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: oklch(0.141 0.005 285.823);
            background-color: oklch(1 0 0);
        }

        /* Color Theme */
        :root {
            --radius: 0.65rem;
            --background: oklch(1 0 0);
            --foreground: oklch(0.141 0.005 285.823);
            --card: oklch(1 0 0);
            --card-foreground: oklch(0.141 0.005 285.823);
            --popover: oklch(1 0 0);
            --popover-foreground: oklch(0.141 0.005 285.823);
            --primary: oklch(0.705 0.213 47.604);
            --primary-foreground: oklch(0.98 0.016 73.684);
            --secondary: oklch(0.967 0.001 286.375);
            --secondary-foreground: oklch(0.21 0.006 285.885);
            --muted: oklch(0.967 0.001 286.375);
            --muted-foreground: oklch(0.552 0.016 285.938);
            --accent: oklch(0.967 0.001 286.375);
            --accent-foreground: oklch(0.21 0.006 285.885);
            --destructive: oklch(0.577 0.245 27.325);
            --border: oklch(0.92 0.004 286.32);
            --input: oklch(0.92 0.004 286.32);
            --ring: oklch(0.705 0.213 47.604);
            --chart-1: oklch(0.646 0.222 41.116);
            --chart-2: oklch(0.6 0.118 184.704);
            --chart-3: oklch(0.398 0.07 227.392);
            --chart-4: oklch(0.828 0.189 84.429);
            --chart-5: oklch(0.769 0.188 70.08);
            --sidebar: oklch(0.985 0 0);
            --sidebar-foreground: oklch(0.141 0.005 285.823);
            --sidebar-primary: oklch(0.705 0.213 47.604);
            --sidebar-primary-foreground: oklch(0.98 0.016 73.684);
            --sidebar-accent: oklch(0.967 0.001 286.375);
            --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
            --sidebar-border: oklch(0.92 0.004 286.32);
            --sidebar-ring: oklch(0.705 0.213 47.604);

            /* Legacy variables for compatibility */
            --dark: oklch(0.21 0.006 285.885);
            --light: oklch(1 0 0);
            --success: oklch(0.6 0.118 184.704);
            --danger: oklch(0.577 0.245 27.325);
            --info: oklch(0.646 0.222 41.116);
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: linear-gradient(135deg, var(--dark), oklch(0.15 0.005 285.823));
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            overflow: hidden;
        }

        .header.scrolled {
            background: linear-gradient(135deg, var(--dark), oklch(0.15 0.005 285.823));
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }

        /* Navigation */
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100px;
            width: 100%;
            min-width: 0;
            overflow: hidden;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
        }

        .logo img {
            width: 190px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            align-items: center;
            margin: 0;
            flex-shrink: 1;
            min-width: 0;
            flex-wrap: wrap;
            overflow: hidden;
        }

        .nav-links li {
            position: relative;
            flex-shrink: 0;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.8rem;
            padding: 0.6rem 0.7rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-1px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown>a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dropdown>a .arrow {
            font-size: 0.6rem;
            opacity: 0.7;
            transition: transform 0.3s ease;
            display: inline-block;
            line-height: 1;
        }

        .dropdown:hover>a .arrow {
            transform: rotate(180deg);
        }

        .dropdown>a::after {
            display: none !important;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: linear-gradient(135deg, var(--dark), oklch(0.18 0.008 285.823));
            backdrop-filter: blur(20px);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--primary);
            transform: translateX(5px);
        }

        /* Sign Out Button */
        .sign-out-btn {
            background: linear-gradient(135deg, var(--primary), oklch(0.655 0.213 47.604)) !important;
            color: var(--primary-foreground) !important;
            padding: 0.8rem 1.8rem !important;
            border-radius: 25px !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 4px 15px rgba(255, 183, 3, 0.2);
            border: none !important;
            white-space: nowrap;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sign-out-btn:hover {
            background: linear-gradient(135deg, oklch(0.655 0.213 47.604), var(--primary)) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(255, 183, 3, 0.3) !important;
        }

        .sign-out-btn::after {
            display: none !important;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(100vw, 350px);
            height: 100vh;
            background: linear-gradient(180deg, var(--dark), oklch(0.15 0.005 285.823));
            backdrop-filter: blur(20px);
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 999;
            padding: 120px 2rem 2rem;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
        }

        .mobile-menu li {
            margin: 0.5rem 0;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.3s ease;
        }

        .mobile-menu.active li {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu.active li:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-menu.active li:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-menu.active li:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-menu.active li:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-menu.active li:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-menu.active li:nth-child(6) {
            transition-delay: 0.35s;
        }

        .mobile-menu.active li:nth-child(7) {
            transition-delay: 0.4s;
        }

        .mobile-menu.active li:nth-child(8) {
            transition-delay: 0.45s;
        }

        .mobile-menu a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            padding: 1rem 1.5rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0.2rem 0;
        }

        .mobile-menu a:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(10px);
        }

        .mobile-menu .sign-out-btn {
            margin-top: 2rem !important;
            text-align: center !important;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-links {
                gap: 0.2rem;
            }

            .nav-links a {
                font-size: 0.8rem;
                padding: 0.5rem 0.7rem;
            }

            .container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 1100px) {
            .nav-links a {
                font-size: 0.75rem;
                padding: 0.5rem 0.6rem;
            }

            .nav-links {
                gap: 0.1rem;
            }
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .logo img {
                width: 140px;
            }

            .container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                width: 100%;
                right: -100%;
            }

            .container {
                padding: 0 0.5rem;
            }

            .logo img {
                width: 120px;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
            min-height: 500px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .slide-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(1px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            animation: slideInUp 0.8s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            letter-spacing: -0.02em;
        }

        .hero-content p {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 14px 28px;
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;

        }

        .btn-primary {
            background: var(--primary);
            color: var(--primary-foreground);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            background: oklch(0.655 0.213 47.604);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.8);
            color: white;
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--primary-foreground);
            transform: translateY(-2px);
        }

        /* Improved Carousel Navigation */
        .carousel-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            z-index: 3;
            pointer-events: none;
        }

        .carousel-btn {
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            pointer-events: all;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .carousel-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        /* Enhanced Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .indicator.active {
            background: var(--primary);
            transform: scale(1.3);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }

        .indicator:hover {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                min-height: 100vh;
            }

            .carousel-nav {
                padding: 0 10px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
                background: rgba(0, 0, 0, 0.5);
                border: 1px solid rgba(255, 255, 255, 0.3);
            }

            .carousel-btn:hover {
                background: var(--primary);
            }

            .hero-content {
                padding: 0 15px;
            }

            .hero-buttons {
                gap: 0.8rem;
            }

            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
                min-width: 140px;
            }

            .carousel-indicators {
                bottom: 20px;
                gap: 10px;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 480px) {
            .carousel-nav {
                padding: 0 5px;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }

            .btn {
                width: 100%;
                max-width: 200px;
            }

            .carousel-indicators {
                bottom: 15px;
            }
        }

        /* Touch gestures indicator */
        @media (max-width: 768px) {
            .carousel-container::after {
                content: '← swipe →';
                position: absolute;
                bottom: 60px;
                left: 50%;
                transform: translateX(-50%);
                color: rgba(255, 255, 255, 0.6);
                font-size: 0.8rem;
                z-index: 3;
                animation: fadeInOut 3s infinite;
            }

            @keyframes fadeInOut {

                0%,
                100% {
                    opacity: 0;
                }

                50% {
                    opacity: 1;
                }
            }
        }



        /* Loading animation */
        .carousel-slide:not(.active) {
            pointer-events: none;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* About Section */
        .about-section {
            padding: 5rem 0;
            background: var(--background);
        }

        .about-content {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: var(--primary);
            color: var(--accent-foreground);
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .about-content h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--foreground);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            font-weight: 600;
        }

        .lead {
            font-size: 1.2rem;
            color: var(--muted-foreground);
            margin-bottom: 3rem;
            line-height: 1.7;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .feature-item {
            padding: 10px 15px 10px 15px;
            background: var(--card);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.2s ease;
        }

        .feature-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .feature-text h4 {
            color: var(--foreground);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .feature-text p {
            color: var(--muted-foreground);
            margin: 0;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            color: var(--muted-foreground);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
        }

        .about-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 40px;
        }

        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            border: 2px solid transparent;
        }

        .btn:first-child {
            background: var(--primary);
            color: white;
        }

        .btn:first-child:hover {
            background: var(--primary-hover);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Additional Content Section */
        .additional-info {
            margin-top: 4rem;
            text-align: center;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .info-item {
            padding: 1.5rem;
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            text-align: center;
        }

        .info-item h4 {
            color: var(--foreground);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .info-item p {
            color: var(--muted-foreground);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-section {
                padding: 4rem 0;
            }

            .container {
                padding: 0 1.5rem;
            }

            .about-features {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1.5rem;
            }

            .stat-item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: left;
                padding: 1rem 0;
                border-bottom: 1px solid var(--border);
            }

            .stat-item:last-child {
                border-bottom: none;
            }

            .stat-number {
                font-size: 1.8rem;
                margin-bottom: 0;
            }

            .about-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .additional-info {
                margin-top: 3rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .about-section {
                padding: 3rem 0;
            }

            .feature-item {
                padding: 1.2rem;
            }

            .about-stats {
                padding: 1rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }
        }

        /* Featured Cues Section - Concise Version */
        .section {
            padding: 3rem 0;
        }

        .section h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: clamp(1.8rem, 4vw, 2.2rem);
            color: var(--foreground);
            position: relative;
            font-weight: 600;
        }

        .section h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary);
            margin: 0.8rem auto 0;
        }

        .cues-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .cue-card {
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.2s ease;
            position: relative;
        }

        .cue-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        .auction-badge {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            background: var(--destructive);
            color: white;
            padding: 0.25rem 0.5rem;
            border-radius: 12px;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            z-index: 2;
        }

        .auction-badge.buy-now {
            background: var(--success);
        }

        .cue-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(45deg, var(--primary), var(--chart-1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            position: relative;
        }

        .cue-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cue-info {
            padding: 1rem;
        }

        .cue-info h3 {
            color: var(--foreground);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.3;
        }

        .cue-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.3rem;
            margin-bottom: 0.8rem;
            font-size: 0.8rem;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.1rem 0;
        }

        .spec-item span:first-child {
            font-weight: 500;
            color: var(--foreground);
        }

        .spec-item span:last-child {
            color: var(--muted-foreground);
            font-weight: 500;
        }

        .price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--destructive);
            text-align: center;
            margin: 0.8rem 0;
        }

        .cue-actions {
            display: flex;
            gap: 0.5rem;
        }

        .btn {
            flex: 1;
            padding: 0.6rem 0.8rem;
            border: none;
            border-radius: var(--radius);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-hover);
        }

        .btn-success {
            background: var(--success);
            color: white;
        }

        .btn-success:hover {
            background: #15803d;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .section {
                padding: 2rem 0;
            }

            .container {
                padding: 0 0.8rem;
            }

            .section h2 {
                margin-bottom: 1.5rem;
            }

            .cues-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1rem;
            }

            .cue-image {
                height: 250px;
            }

            .cue-info {
                padding: 0.8rem;
            }

            .cue-info h3 {
                font-size: 1rem;
                margin-bottom: 0.6rem;
            }

            .cue-specs {
                font-size: 0.75rem;
                gap: 0.2rem;
            }

            .price {
                font-size: 1.2rem;
                margin: 0.6rem 0;
            }

            .btn {
                padding: 0.5rem 0.6rem;
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .cues-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .cue-image {
                height: 200px;
            }

            .cue-info {
                padding: 0.6rem;
            }

            .cue-specs {
                grid-template-columns: 1fr;
                gap: 0.1rem;
            }

            .spec-item {
                padding: 0.05rem 0;
            }

            .price {
                font-size: 1.1rem;
                margin: 0.5rem 0;
            }

            .cue-actions {
                flex-direction: column;
                gap: 0.4rem;
            }

            .btn {
                padding: 0.5rem;
                font-size: 0.75rem;
            }
        }

        /* Form Section Styles */
        .form-section {
            background: var(--card);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 2rem 0;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--foreground);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--background);
            color: var(--foreground);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--ring);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .file-upload {
            border: 2px dashed var(--border);
            padding: 2rem 1rem;
            text-align: center;
            border-radius: var(--radius);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .file-upload:hover {
            border-color: var(--ring);
            background: rgba(0, 102, 204, 0.02);
        }

        .file-upload label {
            cursor: pointer;
            color: #6b7280;
            font-weight: 500;
        }

        .file-upload small {
            color: #9ca3af;
            font-size: 0.85rem;
        }

        .submit-btn {
            background: var(--success);
            color: white;
            padding: 16px 48px;
            border: none;
            border-radius: var(--radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 2rem auto 0;
            box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
        }

        .submit-btn:hover {
            background: oklch(0.55 0.118 184.704);
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
        }

        .section-heading {
            margin: 3rem 0 2rem 0;
            color: #2c3e50;
            font-size: 1.4rem;
            border-bottom: 2px solid #e1e5e9;
            padding-bottom: 0.5rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 0.75rem;
            }

            h2 {
                font-size: 1.75rem;
                margin-bottom: 1.5rem;
            }

            .form-section {
                padding: 1.5rem;
                margin: 1rem 0;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .section-heading {
                font-size: 1.25rem;
                margin: 2rem 0 1.5rem 0;
            }

            .form-group {
                margin-bottom: 1rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 14px 16px;
                font-size: 16px;
                /* Prevents zoom on iOS */
            }

            .file-upload {
                padding: 1.5rem 1rem;
            }

            .submit-btn {
                width: 100%;
                padding: 16px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 0.5rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .form-section {
                padding: 1rem;
                border-radius: 6px;
            }

            .section-heading {
                font-size: 1.1rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 12px 14px;
            }

            .file-upload {
                padding: 1rem 0.5rem;
            }
        }

        /* Enhanced visual feedback */
        .form-group input:valid {
            border-color: #10b981;
        }

        .form-group input:invalid:not(:placeholder-shown) {
            border-color: #ef4444;
        }

        /* Loading state for submit button */
        .submit-btn:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
        }

        /* Testimonials Section */


        .testimonials-section {
            padding: 4rem 0;
            background: var(--background);
            color: var(--foreground);
            position: relative;
            overflow: hidden;
        }

        .testimonial-carousel-container {
            overflow: hidden;
            position: relative;
        }

        .testimonial-carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 2rem;
            box-sizing: border-box;
        }

        .testimonial-content {
            background: var(--card);
            color: var(--card-foreground);
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .rating .star {
            color: gold;
            font-size: 1.2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-author .avatar {
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: grid;
            place-items: center;
            font-weight: bold;
        }

        .author-info h4 {
            margin: 0;
        }

        .author-info .role {
            font-size: 0.9rem;
            color: var(--muted-foreground);
        }

        .testimonial-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            border: none;
            padding: 0.5rem;
            cursor: pointer;
            color: white;
            border-radius: 50%;
            z-index: 10;
        }

        .testimonial-btn-prev-unique {
            left: -10px;
        }

        .testimonial-btn-next-unique {
            right: -10px;
        }

        .testimonial-nav svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: white;
            stroke-width: 2;
        }

        .carousel-dots {
            text-align: center;
            margin-top: 1rem;
        }

        .carousel-dots .dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: var(--muted-foreground);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-dots .dot.active {
            background-color: var(--primary);
        }



        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 2rem;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: left;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .row {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .floating-card {
                position: static;
                transform: none;
                margin-top: 1.5rem;
                max-width: none;
            }

            .about-images {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .about-section {
                padding: 3rem 0;
            }

            .about-content h2 {
                font-size: 1.8rem;
            }

            .about-stats {
                flex-direction: column;
                gap: 1rem;
                text-align: left;
            }

            .about-stats .stat-item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: left;
            }

            .about-stats .stat-number {
                font-size: 1.5rem;
                margin-bottom: 0;
            }

            .about-buttons {
                flex-direction: column;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                display: none;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .testimonials-section {
                padding: 3rem 0;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stats-section .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
            }

            .cue-specs {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .avatar {
                margin-right: 0;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Contact Form Styles of Member sales and wanted section */
        .contact-form-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .contact-form-card {
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .contact-form-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--foreground);
            margin-bottom: 0.5rem;
        }

        .form-subtitle {
            color: var(--muted-foreground);
            font-size: 1rem;
            line-height: 1.5;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-label {
            margin-bottom: 0.5rem;
            color: var(--foreground);
            font-weight: 500;
            font-size: 0.875rem;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            background: var(--background);
            color: var(--foreground);
            transition: all 0.2s ease;
            font-family: inherit;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(165, 142, 89, 0.1);
        }

        .form-input:hover,
        .form-select:hover,
        .form-textarea:hover {
            border-color: var(--muted-foreground);
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            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='%236b7280' 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;
            padding-right: 2.5rem;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            line-height: 1.5;
        }

        .checkbox-group {
            flex-direction: row;
            align-items: flex-start;
            gap: 0;
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            font-size: 0.875rem;
            line-height: 1.4;
        }

        .form-checkbox {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        .checkmark {
            position: relative;
            width: 18px;
            height: 18px;
            background: var(--background);
            border: 2px solid var(--border);
            border-radius: 4px;
            margin-right: 0.75rem;
            flex-shrink: 0;
            transition: all 0.2s ease;
            margin-top: 1px;
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 5px;
            top: 2px;
            width: 4px;
            height: 8px;
            border: solid var(--primary-foreground);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .form-checkbox:checked~.checkmark {
            background: var(--primary);
            border-color: var(--primary);
        }

        .form-checkbox:checked~.checkmark:after {
            display: block;
        }

        .checkbox-text {
            color: var(--muted-foreground);
        }

        .form-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .submit-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--chart-1));
            color: var(--primary-foreground);
            border: none;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(165, 142, 89, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .reset-btn {
            padding: 0.875rem 1.5rem;
            background: var(--secondary);
            color: var(--secondary-foreground);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .reset-btn:hover {
            background: var(--muted);
            border-color: var(--muted-foreground);
        }

        .btn-icon {
            transition: transform 0.2s ease;
        }

        .submit-btn:hover .btn-icon {
            transform: translateX(2px);
        }

        /* Responsive Design */
        @media (max-width: 640px) {
            .contact-form-container {
                padding: 1rem;
            }

            .contact-form-card {
                padding: 2rem 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .form-actions {
                flex-direction: column;
            }

            .form-title {
                font-size: 1.5rem;
            }
        }

        /* Form validation styles */
        .form-input:invalid:not(:placeholder-shown),
        .form-select:invalid,
        .form-textarea:invalid:not(:placeholder-shown) {
            border-color: var(--destructive);
        }

        .form-input:valid:not(:placeholder-shown),
        .form-select:valid,
        .form-textarea:valid:not(:placeholder-shown) {
            border-color: var(--success);
        }

        /* Focus visible for accessibility */
        .form-input:focus-visible,
        .form-select:focus-visible,
        .form-textarea:focus-visible,
        .submit-btn:focus-visible,
        .reset-btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }




        .sales-wanted-body {
            font-family: 'Arial', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            min-height: 100vh;
        }

        .sales-wanted-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .sales-wanted-section {
            margin-bottom: 60px;
        }

        .sales-wanted-section-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 0;
            background: var(--secondary);
            border-radius: var(--radius);
        }

        .sales-wanted-section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .sales-wanted-section-subtitle {
            font-size: 1.1rem;
            color: var(--muted-foreground);
        }

        .sales-wanted-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            padding: 20px 0;
        }

        .sales-wanted-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .sales-wanted-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .sales-wanted-card-image {
            width: 100%;
            height: 200px;
            background: var(--muted);
            border-radius: var(--radius);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted-foreground);
            font-size: 0.9rem;
            border: 2px dashed var(--border);
        }

        .sales-wanted-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .sales-wanted-cue-number {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--primary);
        }

        .sales-wanted-price {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--success);
        }

        .sales-wanted-cue-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 10px;
        }

        .sales-wanted-specs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin: 15px 0;
        }

        .sales-wanted-spec-item {
            font-size: 0.9rem;
            color: var(--muted-foreground);
        }

        .sales-wanted-spec-label {
            font-weight: 600;
            color: var(--secondary-foreground);
        }

        .sales-wanted-description {
            color: var(--muted-foreground);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-top: 15px;
        }

        .sales-wanted-contact-info {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
        }

        .sales-wanted-seller-name {
            font-weight: 600;
            color: var(--primary);
        }

        .sales-wanted-wanted-card {
            background: var(--accent);
        }

        .sales-wanted-wanted-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 10px;
        }

        .sales-wanted-wanted-details {
            color: var(--muted-foreground);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .sales-wanted-status-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: calc(var(--radius) / 2);
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 10px;
        }

        .sales-wanted-status-available {
            background: var(--success);
            color: var(--primary-foreground);
        }

        .sales-wanted-status-wanted {
            background: var(--info);
            color: var(--primary-foreground);
        }

        /* Form Styles */
        .sales-wanted-form-container {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .sales-wanted-form-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }

        .sales-wanted-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .sales-wanted-form-group {
            display: flex;
            flex-direction: column;
        }

        .sales-wanted-form-group.sales-wanted-full-width {
            grid-column: 1 / -1;
        }

        .sales-wanted-form-label {
            font-weight: 600;
            color: var(--secondary-foreground);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .sales-wanted-form-input,
        .sales-wanted-form-textarea {
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--background);
            color: var(--foreground);
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
        }

        .sales-wanted-form-input:focus,
        .sales-wanted-form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px oklch(from var(--primary) l c h / 0.1);
        }

        .sales-wanted-form-textarea {
            resize: vertical;
            min-height: 100px;
        }

        .sales-wanted-form-button {
            background: var(--primary);
            color: var(--primary-foreground);
            border: none;
            padding: 12px 30px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .sales-wanted-form-button:hover {
            background: oklch(from var(--primary) calc(l - 0.05) c h);
            transform: translateY(-2px);
        }

        .sales-wanted-form-button:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .sales-wanted-cards-grid {
                grid-template-columns: 1fr;
            }

            .sales-wanted-section-title {
                font-size: 2rem;
            }

            .sales-wanted-form-grid {
                grid-template-columns: 1fr;
            }

            .sales-wanted-container {
                padding: 15px;
            }
        }

        /* backtotp */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--primary);
            color: var(--primary-foreground);
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 999;
        }

        .back-to-top:hover {
            background-color: var(--chart-1);
            transform: scale(1.1);
        }