    :root {
        --ys-navy: #122d4d;
        --ys-orange: #4E31AD;
        --light-bg: #f8faff;
    }

    /* Extension Card Styling */
    .ext-card {
        background: #ffffff;
        border: 1px solid #edf2f7;
        border-radius: 16px;
        padding: 30px 15px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .ext-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--ys-orange);
        transform: translateY(-4px);
        transition: transform 0.3s ease;
    }

    .ext-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(18, 45, 77, 0.08);
        border-color: transparent;
    }

    .ext-card:hover::before {
        transform: translateY(0);
    }

    .ext-name {
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--ys-navy);
        margin-bottom: 5px;
    }

    .ext-tagline {
        font-size: 0.7rem;
        font-weight: 700;
        color: #a0aec0;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        display: block;
    }

    .price-was {
        font-size: 0.85rem;
        color: #718096;
        text-decoration: line-through;
        margin-bottom: 2px;
    }

    .price-now {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--ys-orange);
    }

    .price-unit {
        font-size: 0.85rem;
        color: #718096;
        font-weight: 400;
    }

    .ext-nav {
        display: inline-flex;
        gap: 10px;
    }

    .ext-prev,
    .ext-next {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #e2e8f0;
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
        transition: all 0.25s ease;
        background: var(--ys-orange);
    }

    .ext-prev:hover,
    .ext-next:hover {
        background: var(--ys-orange);
        color: #fff;
        border-color: var(--ys-orange);
    }

    /* Hero Search Bar */
    .hero-section .search-outer {
        background: #ffffff;
        border: 1px solid #e7ebf3 !important;
        border-radius: 24px;
        padding: 10px 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 18px 40px rgba(18, 45, 77, 0.12);
    }

    .hero-section .search-outer select {
        border: 0;
        background: #f3f5fb;
        color: #1f2a44;
        font-weight: 700;
        border-radius: 16px;
        padding: 10px 16px;
        min-width: 90px;
        outline: none;
    }

    .hero-section .search-outer input {
        border: 0;
        outline: none;
        flex: 1;
        font-size: 1.05rem;
        padding: 8px 6px;
        background: transparent;
        color: #1f2a44;
    }

    .hero-section .search-outer input::placeholder {
        color: #8a93a6;
        font-weight: 600;
    }

    .hero-section .btn-adv-trigger {
        border: 0;
        background: #eef1ff;
        color: #2a3550;
        font-weight: 700;
        border-radius: 16px;
        padding: 10px 18px;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .hero-section .btn-adv-trigger:hover {
        background: #e3e7ff;
        transform: translateY(-1px);
    }

    .hero-section .btn-generate {
        border: 0;
        background: #5b4df0;
        color: #ffffff;
        font-weight: 800;
        border-radius: 18px;
        padding: 11px 20px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 10px 24px rgba(91, 77, 240, 0.35);
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .hero-section .btn-generate:hover {
        background: #4a3de6;
        transform: translateY(-1px);
    }

    @media (max-width: 768px) {
        .hero-section .search-outer {
            flex-wrap: wrap;
            padding: 12px;
            gap: 10px;
        }

        .hero-section .search-outer select,
        .hero-section .btn-adv-trigger,
        .hero-section .btn-generate {
            width: 100%;
            justify-content: center;
        }

        .hero-section .search-outer input {
            width: 100%;
            padding: 10px 12px;
            background: #f7f9ff;
            border-radius: 14px;
        }
    }

    /* Modal Styling */
    .modal-content {
        border-radius: 30px;
        padding: 20px;
        border: none;
    }

    .input-modal {
        background: #eff4ff;
        border: none;
        border-radius: 15px;
        padding: 15px;
    }

    .tld-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-top: 10px;
    }

    .btn-continue {
        background: #4f7dff;
        color: #fff;
        border: none;
        padding: 12px 40px;
        border-radius: 15px;
        font-weight: 700;
    }

    .domain-card-new {
        background: #fff;
        border-radius: 18px;
        border: 1px solid #eef2ff;
        transition: 0.3s ease;
        box-shadow: 0 12px 30px rgba(18, 45, 77, 0.08);
        overflow: hidden;
    }

    .domain-name-text-new {
        font-size: 1.35rem;
        font-weight: 800;
        color: #1f2a44;
        letter-spacing: -0.2px;
    }

    .status-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        font-weight: 700;
        padding: 6px 12px;
        border-radius: 999px;
        white-space: nowrap;
    }

    .available-pill {
        background: #eafaf1;
        color: #118a4b;
    }

    .taken-pill {
        background: #ffecec;
        color: #d62828;
    }

    .domain-price-new {
        font-size: 1.2rem;
        font-weight: 800;
        color: #1f2a44;
    }

    .btn-buy-new {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 140px;
        padding: 10px 18px;
        border-radius: 16px;
        font-weight: 800;
        border: 1px solid #e6eaf2;
        background: #f3f5f9;
        color: #8a93a6;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .btn-buy-new:not(.disabled) {
        background: #4f73ff;
        border-color: #4f73ff;
        color: #fff;
        box-shadow: 0 10px 24px rgba(79, 115, 255, 0.3);
    }

    .btn-buy-new:not(.disabled):hover {
        background: #3c62ff;
        border-color: #3c62ff;
        transform: translateY(-1px);
    }

    .btn-buy-new.disabled {
        pointer-events: none;
        opacity: 0.85;
    }


    :root {
        --ys-navy: #122d4d;
        --ys-orange: #4E31AD;
        --ys-bg: #fdfdfd;
    }

    .premium-section {
        background-color: var(--ys-bg);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    /* Decorative background blobs */
    .blob {
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,
                rgba(242, 238, 255, 0.8) 45%,
                rgba(255, 255, 255, 0) 70%);

        border-radius: 50%;
        z-index: 0;
    }

    .blob-1 {
        top: -100px;
        right: -100px;
    }

    .blob-2 {
        bottom: -100px;
        left: -100px;
    }

    .premium-card {
        background: #ffffff;
        border: none;
        border-radius: 24px;
        padding: 40px 30px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(18, 45, 77, 0.03);
    }

    /* Staggered effect for middle column */
    @media (min-width: 992px) {
        .stagger-down {
            margin-top: 40px;
        }
    }

    .premium-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(18, 45, 77, 0.08);
    }

    /* Glass Icon Styling */
    .glass-icon {
        width: 65px;
        height: 65px;
        background: rgba(88, 53, 210, 0.1);
        border: 1px solid rgba(88, 53, 210, 0.2);

        backdrop-filter: blur(5px);
        color: #5835D2;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .premium-card:hover .glass-icon {
        background: linear-gradient(135deg, #5835D2, #ff7e5f);
        color: white;
        border: none;
        box-shadow: 0 10px 20px rgba(252, 161, 32, 0.3);
    }

    .card-title-link {
        color: var(--ys-navy);
        font-weight: 800;
        font-size: 1.25rem;
        margin-bottom: 15px;
        display: block;
        text-decoration: none;
    }

    .card-text-muted {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* The "Accent Line" that appears on hover */
    .hover-line {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 4px;
        background: #5835D2;
        transition: all 0.4s ease;
        border-radius: 10px 10px 0 0;
        transform: translateX(-50%);
    }

    .premium-card:hover .hover-line {
        width: 40%;
    }



    .ys-steps-wrapper {
        padding: 50px 0;
        background: #f2eeff;
        position: relative;
    }

    .step-path-container {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .step-item-new {
        flex: 1;
        min-width: 300px;
        position: relative;
        padding: 40px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid #f1f5f9;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        z-index: 1;
    }

    /* Background Big Number Text */
    .step-bg-number {
        position: absolute;
        top: -20px;
        right: -10px;
        font-size: 150px;
        font-weight: 900;
        color: rgba(96, 91, 229, 0.04);
        line-height: 1;
        z-index: -1;
        transition: 0.5s;
        user-select: none;
    }

    .step-item-new:hover {
        border-color: var(--ys-primary);
        box-shadow: 0 30px 60px rgba(96, 91, 229, 0.1);
        transform: translateY(-10px);
    }

    .step-item-new:hover .step-bg-number {
        color: rgba(96, 91, 229, 0.08);
        transform: scale(1.1) translateX(-20px);
    }
