/**
 * Appointment Competitor Confirmation Page Styles
 * Template: appointment-competitor.php
 * SafeSante - Telemedicine Platform
 * Professional design with briefcase overlay and DOC2U device on page
 */

/* ==========================================================================
   0. Success Overlay - Briefcase Animation
   ========================================================================== */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #202B6D 0%, #2F4ACD 50%, #1a2352 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.success-overlay.fade-out {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.success-overlay.hidden {
    display: none;
}

.overlay-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Briefcase Wrapper */
.briefcase-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulse Rings */
.pulse-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2.5s ease-out infinite;
}

.pulse-ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.pulse-ring-2 {
    width: 130px;
    height: 130px;
    animation-delay: 0.5s;
}

.pulse-ring-3 {
    width: 160px;
    height: 160px;
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Briefcase Circle */
.briefcase-circle {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: scale(0);
    animation: briefcaseBounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
}

.briefcase-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.briefcase-circle-bg {
    stroke: #ffffff;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: circleStroke 0.6s ease forwards;
    animation-delay: 0.4s;
}

.briefcase-body {
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: briefcaseDraw 0.5s ease forwards;
    animation-delay: 0.8s;
}

.briefcase-handle {
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: handleDraw 0.4s ease forwards;
    animation-delay: 1s;
}

.briefcase-line {
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 1.5;
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    animation: lineDraw 0.3s ease forwards;
    animation-delay: 1.2s;
}

.briefcase-check {
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: checkDraw 0.4s ease forwards;
    animation-delay: 1.4s;
}

@keyframes briefcaseBounceIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes circleStroke {
    to { stroke-dashoffset: 0; }
}

@keyframes briefcaseDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes handleDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes lineDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes checkDraw {
    to { stroke-dashoffset: 0; }
}

/* Overlay Text */
.overlay-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 35px;
    opacity: 0;
    transform: translateY(20px);
    animation: overlayTextIn 0.6s ease forwards;
    animation-delay: 1.6s;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes overlayTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page content hidden initially */
.appointment-competitor-page .ac-page-header,
.appointment-competitor-page .appointment-competitor-main {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.appointment-competitor-page.content-visible .ac-page-header,
.appointment-competitor-page.content-visible .appointment-competitor-main {
    opacity: 1;
}

/* Pause animations initially */
.appointment-competitor-page .success-title,
.appointment-competitor-page .success-subtitle,
.appointment-competitor-page .device-image,
.appointment-competitor-page .device-glow,
.appointment-competitor-page .burst-ring,
.appointment-competitor-page .particle,
.appointment-competitor-page .action-buttons,
.appointment-competitor-page .shape,
.appointment-competitor-page .diag-line {
    animation-play-state: paused;
}

/* Play animations when visible */
.appointment-competitor-page.content-visible .success-title,
.appointment-competitor-page.content-visible .success-subtitle,
.appointment-competitor-page.content-visible .device-image,
.appointment-competitor-page.content-visible .device-glow,
.appointment-competitor-page.content-visible .burst-ring,
.appointment-competitor-page.content-visible .particle,
.appointment-competitor-page.content-visible .action-buttons,
.appointment-competitor-page.content-visible .shape,
.appointment-competitor-page.content-visible .diag-line {
    animation-play-state: running;
}

/* Overlay Responsive */
@media (max-width: 768px) {
    .briefcase-wrapper {
        width: 120px;
        height: 120px;
    }

    .briefcase-circle {
        width: 85px;
        height: 85px;
    }

    .pulse-ring-1 { width: 85px; height: 85px; }
    .pulse-ring-2 { width: 110px; height: 110px; }
    .pulse-ring-3 { width: 135px; height: 135px; }

    .overlay-text {
        font-size: 1.6rem;
        margin-top: 28px;
    }
}

@media (max-width: 480px) {
    .briefcase-wrapper {
        width: 100px;
        height: 100px;
    }

    .briefcase-circle {
        width: 70px;
        height: 70px;
    }

    .pulse-ring-1 { width: 70px; height: 70px; }
    .pulse-ring-2 { width: 90px; height: 90px; }
    .pulse-ring-3 { width: 110px; height: 110px; }

    .overlay-text {
        font-size: 1.4rem;
        margin-top: 22px;
    }
}

/* ==========================================================================
   1. Header Styles
   ========================================================================== */
.ac-page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    z-index: 1000;
    background: rgba(32, 43, 109, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.ac-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ac-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ac-logo img {
    height: 40px;
    width: auto;
}

.ac-header-buttons {
    display: flex;
    gap: 30px;
}

.ac-btn-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ac-btn-link:hover {
    color: #A7DBEE;
}

.ac-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 768px) {
    .ac-page-header {
        padding: 15px 20px;
    }

    .ac-logo img {
        height: 32px;
    }

    .ac-mobile-toggle {
        display: block;
    }

    .ac-header-buttons {
        display: none;
    }

    .ac-header-buttons.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(32, 43, 109, 0.98);
        padding: 20px;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   2. Page Layout
   ========================================================================== */
.appointment-competitor-main {
    min-height: 100vh;
    background: linear-gradient(180deg, #202B6D 0%, #1a2352 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.appointment-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   3. Floating Geometric Shapes Background
   ========================================================================== */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0;
    animation: shapeFloat 8s ease-in-out infinite;
}

/* Diamond shapes */
.shape-1 {
    width: 20px;
    height: 20px;
    background: rgba(254, 196, 0, 0.15);
    top: 10%;
    left: 8%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape-2 {
    width: 15px;
    height: 15px;
    background: rgba(167, 219, 238, 0.15);
    top: 20%;
    right: 12%;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

.shape-3 {
    width: 25px;
    height: 25px;
    background: rgba(254, 196, 0, 0.1);
    top: 35%;
    left: 5%;
    transform: rotate(45deg);
    animation-delay: 1s;
}

.shape-4 {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    top: 45%;
    right: 8%;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

/* Circle shapes */
.shape-5 {
    width: 30px;
    height: 30px;
    background: rgba(167, 219, 238, 0.1);
    border-radius: 50%;
    top: 55%;
    left: 10%;
    animation-delay: 0.3s;
}

.shape-6 {
    width: 20px;
    height: 20px;
    background: rgba(254, 196, 0, 0.12);
    border-radius: 50%;
    top: 65%;
    right: 15%;
    animation-delay: 0.8s;
}

/* Square shapes */
.shape-7 {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(254, 196, 0, 0.15);
    top: 75%;
    left: 12%;
    animation-delay: 1.2s;
}

.shape-8 {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(167, 219, 238, 0.15);
    top: 25%;
    left: 15%;
    animation-delay: 0.7s;
}

/* More diamonds */
.shape-9 {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.08);
    top: 80%;
    right: 10%;
    transform: rotate(45deg);
    animation-delay: 1.8s;
}

.shape-10 {
    width: 20px;
    height: 20px;
    background: rgba(254, 196, 0, 0.1);
    bottom: 15%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 0.4s;
}

.shape-11 {
    width: 25px;
    height: 25px;
    border: 2px solid rgba(167, 219, 238, 0.1);
    border-radius: 50%;
    bottom: 25%;
    right: 20%;
    animation-delay: 1.4s;
}

.shape-12 {
    width: 15px;
    height: 15px;
    background: rgba(254, 196, 0, 0.08);
    top: 15%;
    left: 50%;
    transform: rotate(45deg);
    animation-delay: 2s;
}

@keyframes shapeFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) rotate(45deg);
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
    }
    80% {
        opacity: 1;
    }
}

/* ==========================================================================
   4. Diagonal Lines Background
   ========================================================================== */
.diagonal-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.diag-line {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(254, 196, 0, 0.15), transparent);
    transform: rotate(-45deg);
    opacity: 0;
    animation: diagLineMove 6s ease-in-out infinite;
}

.diag-line-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.diag-line-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.diag-line-3 {
    top: 50%;
    left: 25%;
    animation-delay: 2s;
}

.diag-line-4 {
    top: 70%;
    right: 30%;
    animation-delay: 0.5s;
}

.diag-line-5 {
    bottom: 20%;
    left: 35%;
    animation-delay: 1.5s;
}

.diag-line-6 {
    bottom: 10%;
    right: 15%;
    animation-delay: 2.5s;
}

@keyframes diagLineMove {
    0%, 100% {
        opacity: 0;
        transform: rotate(-45deg) translateY(0);
    }
    20% {
        opacity: 0.8;
    }
    50% {
        transform: rotate(-45deg) translateY(-30px);
    }
    80% {
        opacity: 0.8;
    }
}

/* ==========================================================================
   5. DOC2U Device Celebration - Main Page
   ========================================================================== */
.device-celebration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    height: 300px;
}

/* Radial Burst Effect */
.radial-burst {
    position: absolute;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burst-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(254, 196, 0, 0.2);
    opacity: 0;
    animation: burstExpand 3s ease-out infinite;
}

.burst-ring-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.burst-ring-2 {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

.burst-ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

@keyframes burstExpand {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Particle Container */
.particle-container {
    position: absolute;
    width: 400px;
    height: 400px;
}

.particle {
    position: absolute;
    border-radius: 3px;
    opacity: 0;
    animation: particleFloat 4s ease-out infinite;
}

/* Position particles in a radial pattern */
.particle-1 { width: 6px; height: 14px; background: #FEC400; top: 50%; left: 50%; --angle: 0deg; --distance: 100px; animation-delay: 0.1s; }
.particle-2 { width: 5px; height: 5px; background: #A7DBEE; top: 50%; left: 50%; --angle: 22.5deg; --distance: 115px; border-radius: 50%; animation-delay: 0.2s; }
.particle-3 { width: 7px; height: 16px; background: #ffffff; top: 50%; left: 50%; --angle: 45deg; --distance: 105px; animation-delay: 0.3s; }
.particle-4 { width: 4px; height: 4px; background: #FEC400; top: 50%; left: 50%; --angle: 67.5deg; --distance: 120px; border-radius: 50%; animation-delay: 0.4s; }
.particle-5 { width: 6px; height: 15px; background: #A7DBEE; top: 50%; left: 50%; --angle: 90deg; --distance: 108px; animation-delay: 0.5s; }
.particle-6 { width: 5px; height: 5px; background: #ffffff; top: 50%; left: 50%; --angle: 112.5deg; --distance: 118px; border-radius: 50%; animation-delay: 0.6s; }
.particle-7 { width: 7px; height: 14px; background: #FEC400; top: 50%; left: 50%; --angle: 135deg; --distance: 102px; animation-delay: 0.7s; }
.particle-8 { width: 4px; height: 4px; background: #A7DBEE; top: 50%; left: 50%; --angle: 157.5deg; --distance: 122px; border-radius: 50%; animation-delay: 0.8s; }
.particle-9 { width: 6px; height: 16px; background: #ffffff; top: 50%; left: 50%; --angle: 180deg; --distance: 110px; animation-delay: 0.9s; }
.particle-10 { width: 5px; height: 5px; background: #FEC400; top: 50%; left: 50%; --angle: 202.5deg; --distance: 116px; border-radius: 50%; animation-delay: 1.0s; }
.particle-11 { width: 7px; height: 15px; background: #A7DBEE; top: 50%; left: 50%; --angle: 225deg; --distance: 104px; animation-delay: 1.1s; }
.particle-12 { width: 4px; height: 4px; background: #ffffff; top: 50%; left: 50%; --angle: 247.5deg; --distance: 124px; border-radius: 50%; animation-delay: 1.2s; }
.particle-13 { width: 6px; height: 14px; background: #FEC400; top: 50%; left: 50%; --angle: 270deg; --distance: 106px; animation-delay: 1.3s; }
.particle-14 { width: 5px; height: 5px; background: #A7DBEE; top: 50%; left: 50%; --angle: 292.5deg; --distance: 120px; border-radius: 50%; animation-delay: 1.4s; }
.particle-15 { width: 7px; height: 16px; background: #ffffff; top: 50%; left: 50%; --angle: 315deg; --distance: 112px; animation-delay: 1.5s; }
.particle-16 { width: 4px; height: 4px; background: #FEC400; top: 50%; left: 50%; --angle: 337.5deg; --distance: 118px; border-radius: 50%; animation-delay: 1.6s; }

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--distance) * -1)) rotate(360deg);
    }
}

/* Device Glow */
.device-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(254, 196, 0, 0.25) 0%, rgba(254, 196, 0, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    animation: glowPulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Device Image */
.device-image {
    position: relative;
    z-index: 5;
    width: 320px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: deviceAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes deviceAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* DOC2U Page Icon */
.doc2u-page-icon {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* ==========================================================================
   6. Typography
   ========================================================================== */
.success-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideUp 0.8s ease forwards;
    animation-delay: 0.6s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleSlideUp 0.7s ease forwards;
    animation-delay: 0.8s;
}

@keyframes subtitleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   7. Action Button (Yellow)
   ========================================================================== */
.action-buttons {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonSlideUp 0.7s ease forwards;
    animation-delay: 1s;
}

@keyframes buttonSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: #FEC400;
    color: #202B6D;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(254, 196, 0, 0.35);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect */
.btn-primary-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(254, 196, 0, 0.5);
    color: #202B6D;
    background: #FFD23F;
}

.btn-primary-action:hover::before {
    left: 100%;
}

.btn-primary-action:active {
    transform: translateY(-1px);
}

/* ==========================================================================
   8. Responsive Styles
   ========================================================================== */
@media (max-width: 992px) {
    .device-celebration {
        height: 260px;
        margin-bottom: 15px;
    }

    .radial-burst {
        width: 400px;
        height: 400px;
    }

    .particle-container {
        width: 320px;
        height: 320px;
    }

    .device-glow {
        width: 220px;
        height: 220px;
    }

    .device-image {
        width: 240px;
    }

    .success-title {
        font-size: 2.5rem;
    }

    .success-subtitle {
        font-size: 1.15rem;
        margin-bottom: 35px;
    }

    .shape:nth-child(n+9) {
        display: none;
    }

    .diag-line:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .appointment-competitor-main {
        padding: 100px 16px 50px;
    }

    .device-celebration {
        height: 220px;
        margin-bottom: 10px;
    }

    .radial-burst {
        width: 320px;
        height: 320px;
    }

    .particle-container {
        width: 260px;
        height: 260px;
    }

    .device-glow {
        width: 180px;
        height: 180px;
    }

    .device-image {
        width: 200px;
    }

    /* Hide some particles on tablet */
    .particle:nth-child(n+13) {
        display: none;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .btn-primary-action {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .shape:nth-child(n+7) {
        display: none;
    }

    .diag-line:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .appointment-competitor-main {
        padding: 90px 12px 40px;
    }

    .device-celebration {
        height: 180px;
        margin-bottom: 8px;
    }

    .radial-burst {
        width: 250px;
        height: 250px;
    }

    /* Hide radial burst on mobile */
    .burst-ring-3 {
        display: none;
    }

    .particle-container {
        width: 200px;
        height: 200px;
    }

    /* Hide most particles on mobile */
    .particle:nth-child(n+9) {
        display: none;
    }

    .device-glow {
        width: 140px;
        height: 140px;
    }

    .device-image {
        width: 160px;
    }

    .success-title {
        font-size: 1.75rem;
    }

    .success-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .btn-primary-action {
        padding: 15px 35px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    .btn-primary-action::before {
        display: none;
    }

    .shape:nth-child(n+5) {
        display: none;
    }

    .diag-line {
        display: none;
    }
}
