        /* --- DOMAIN ARAMA KUTUSU ANİMASYONU --- */
        .domain-search-box {
            position: relative;
            max-width: 800px;
            margin: 40px auto;
            padding: 5px;
            background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
            background-size: 200% 100%;
            animation: borderGlow 3s linear infinite;
            border-radius: 12px;
        }

        @keyframes borderGlow {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .input-wrapper {
            display: flex;
            background: #080808;
            padding: 10px;
            border-radius: 10px;
            gap: 10px;
        }

        .input-wrapper input {
            flex: 1;
            background: transparent;
            border: none;
            color: #fff;
            padding: 15px 20px;
            font-size: 1.2rem;
            font-family: 'Space Grotesk', sans-serif;
            outline: none;
        }

        /* Input Focus Animasyonu */
        .input-wrapper input:focus {
            text-shadow: 0 0 10px var(--neon-cyan);
        }

        .btn-search {
            background: var(--neon-cyan);
            color: #000;
            border: none;
            padding: 0 40px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
            transition: 0.3s;
        }

        .btn-search:hover {
            box-shadow: 0 0 20px var(--neon-cyan);
            transform: scale(1.05);
        }

        /* --- BUTON VE SATIR RENKLERİ --- */
        .domain-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.02);
            border-left: 3px solid var(--neon-cyan);
            margin-bottom: 10px;
            padding: 20px;
            transition: 0.3s;
            --row-color: #00f0ff; /* Varsayılan siber renk */
        }

        .domain-row:hover {
            background: rgba(0, 240, 255, 0.05);
            transform: translateX(10px);
        }

        .domain-row.is-popular {
            border-left-color: #ff00ff; /* Popülerler için pembe neon */
            --row-color: #ff00ff;
        }

        .btn-buy {
            background: var(--row-color) !important;
            color: #000 !important;
            border: none;
            padding: 10px 25px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-buy:hover {
            box-shadow: 0 0 15px var(--row-color);
            filter: brightness(1.2);
        }

        .pop-tag {
            background: #ff00ff;
            color: #fff;
            font-size: 0.7rem;
            padding: 2px 8px;
            margin-left: 10px;
            border-radius: 4px;
            text-transform: uppercase;
        }
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 350px;
    height: 100%;
    background: #111;
    color: #fff;
    transition: 0.3s;
    padding: 15px;
    z-index: 999;
}

.cart-sidebar.active {
    right: 0;
}

.cart-item {
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

.cart-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 10px;
    cursor: pointer;
}