  .royal-cta-section {
    padding: 100px 20px;
    background: #05030b;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.royal-cta-section {
    padding: 100px 20px;
    background:
        radial-gradient(circle at center, rgba(88, 32, 160, 0.20), transparent 36%), #a36bda;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.royal-cta-simple {
    position: relative;
    width: min(980px, 100%);
    min-height: 340px;
    padding: 70px 70px 58px;
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 222, 120, 0.16), transparent 24%),
        radial-gradient(circle at 18% 25%, rgba(167, 69, 255, 0.38), transparent 30%),
        radial-gradient(circle at 82% 72%, rgba(108, 42, 196, 0.42), transparent 30%),
        linear-gradient(135deg, #130022 0%, #270052 45%, #0b061b 100%);
    box-shadow:
        0 0 0 3px #6d4107,
        0 0 0 6px #f4ca66,
        0 0 0 9px #7a4c10,
        0 28px 90px rgba(105, 56, 255, 0.38),
        inset 0 0 90px rgba(150, 63, 255, 0.32);
}

/* Inner fixed golden border */
.royal-cta-simple::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 14px;
    border: 3px solid rgba(255, 225, 130, 0.92);
    box-shadow:
        0 0 18px rgba(255, 214, 102, 0.42),
        inset 0 0 35px rgba(255, 214, 102, 0.12);
    pointer-events: none;
    z-index: 2;
}

/* top permanent shine */
.royal-cta-simple::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    width: 360px;
    height: 4px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #ffe47c, #ffffff, #ffe47c, transparent);
    filter: blur(1px);
    box-shadow: 0 0 32px #ffd56a;
    opacity: 0.75;
    z-index: 3;
    pointer-events: none;
}

/* Moving border line common */
.royal-line {
    position: absolute;
    display: block;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    filter: blur(0.2px);
}

/* Top moving line */
.royal-line-top {
    top: 17px;
    left: 18px;
    width: 180px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.95),
        #ffe982,
        transparent
    );
    box-shadow:
        0 0 12px rgba(255, 230, 130, 0.95),
        0 0 28px rgba(255, 190, 70, 0.65);
    animation: royalMoveTop 44s linear infinite;
}

/* Right moving line */
.royal-line-right {
    top: 18px;
    right: 17px;
    width: 5px;
    height: 140px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.95),
        #ffe982,
        transparent
    );
    box-shadow:
        0 0 12px rgba(255, 230, 130, 0.95),
        0 0 28px rgba(255, 190, 70, 0.65);
    animation: royalMoveRight 44s linear infinite;
}

/* Bottom moving line */
.royal-line-bottom {
    bottom: 17px;
    right: 18px;
    width: 180px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(
        270deg,
        transparent,
        rgba(255, 255, 255, 0.95),
        #ffe982,
        transparent
    );
    box-shadow:
        0 0 12px rgba(255, 230, 130, 0.95),
        0 0 28px rgba(255, 190, 70, 0.65);
    animation: royalMoveBottom 44s linear infinite;
}

/* Left moving line */
.royal-line-left {
    bottom: 18px;
    left: 17px;
    width: 5px;
    height: 140px;
    border-radius: 999px;
    background: linear-gradient(
        0deg,
        transparent,
        rgba(255, 255, 255, 0.95),
        #ffe982,
        transparent
    );
    box-shadow:
        0 0 12px rgba(255, 230, 130, 0.95),
        0 0 28px rgba(255, 190, 70, 0.65);
    animation: royalMoveLeft 44s linear infinite;
}

/* 1st: top border left to right */
@keyframes royalMoveTop {
    0% {
        opacity: 1;
        transform: translateX(-200px);
    }

    24% {
        opacity: 1;
        transform: translateX(calc(100vw));
    }

    25%,
    100% {
        opacity: 0;
        transform: translateX(calc(100vw));
    }
}

/* 2nd: right border top to bottom */
@keyframes royalMoveRight {
    0%,
    24% {
        opacity: 0;
        transform: translateY(-160px);
    }

    25% {
        opacity: 1;
        transform: translateY(-160px);
    }

    49% {
        opacity: 1;
        transform: translateY(360px);
    }

    50%,
    100% {
        opacity: 0;
        transform: translateY(360px);
    }
}

/* 3rd: bottom border right to left */
@keyframes royalMoveBottom {
    0%,
    49% {
        opacity: 0;
        transform: translateX(200px);
    }

    50% {
        opacity: 1;
        transform: translateX(200px);
    }

    74% {
        opacity: 1;
        transform: translateX(calc(-100vw));
    }

    75%,
    100% {
        opacity: 0;
        transform: translateX(calc(-100vw));
    }
}

/* 4th: left border bottom to top */
@keyframes royalMoveLeft {
    0%,
    74% {
        opacity: 0;
        transform: translateY(160px);
    }

    75% {
        opacity: 1;
        transform: translateY(160px);
    }

    99% {
        opacity: 1;
        transform: translateY(-360px);
    }

    100% {
        opacity: 0;
        transform: translateY(-360px);
    }
}

.royal-cta-content {
    position: relative;
    z-index: 6;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.royal-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: #ffe69a;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 14px rgba(255, 220, 128, 0.55);
}

.royal-cta-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -1.8px;
    font-weight: 950;
    text-shadow: 0 4px 22px rgba(0,0,0,0.45);
}

.royal-cta-content p {
    max-width: 650px;
    margin: 18px auto 28px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.75;
}

.royal-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.royal-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
    transition: 0.3s ease;
}

.royal-btn:hover {
    transform: translateY(-3px);
}

.royal-btn-primary {
    color: #1a0b00;
    background: linear-gradient(135deg, #fff2a5, #f3bf47, #9f5f0b);
    box-shadow: 0 12px 28px rgba(255, 202, 79, 0.34);
}

.royal-btn-light {
    color: #ffffff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.32);
    backdrop-filter: blur(12px);
}

@media (max-width: 767px) {
    .royal-cta-section {
        padding: 80px 18px;
    }

    .royal-cta-simple {
        min-height: auto;
        padding: 52px 24px 42px;
        border-radius: 18px;
    }

    .royal-cta-simple::before {
        inset: 13px;
        border-radius: 12px;
    }

    .royal-cta-simple::after {
        top: 13px;
        width: 190px;
    }

    .royal-line-top {
        top: 12px;
        left: 13px;
        width: 110px;
    }

    .royal-line-right {
        top: 13px;
        right: 12px;
        height: 100px;
    }

    .royal-line-bottom {
        bottom: 12px;
        right: 13px;
        width: 110px;
    }

    .royal-line-left {
        bottom: 13px;
        left: 12px;
        height: 100px;
    }

    .royal-cta-content h2 {
        font-size: clamp(30px, 10vw, 42px);
        letter-spacing: -1.2px;
    }

    .royal-cta-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .royal-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .royal-btn {
        width: 100%;
    }
}