 

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden; 
    overflow-y: hidden;  
} 
* { box-sizing: border-box }
.chat-btns {
    padding: 15px 50px;
    background: #1680F0;
    color: white;
    border: none;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: buttonPulse 1.5s ease-in-out infinite;
    overflow: hidden;
}
.progress-text-topc{ 
    display: flex;
    align-items: center;
    justify-content: center;
} 
.bottomN{
    padding-bottom: 15px;
}
.progress-text-top{  
    margin-bottom: 10px;
    border-radius: 25px;
    padding: 10px 20px;
    background-color: #16a34a;
    color: white;
    font-weight: 700;
}
.code-view-wrapper {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
}
.code-view-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    pointer-events: none;
}
@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}
.container {
    background: white;
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 700px;
    width: 100%;
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.8) inset;
    position: relative;
    z-index: 1;
    overflow: hidden !important; /* Prevent content overflow */
}
.confirmation {
    text-align: center;
    animation: fadeInUp 0.6s ease;
    width: 100%;
    overflow: hidden; /* Prevent overflow */
}
@keyframes fadeInUp {
from { 
    opacity: 0; 
    transform: translateY(30px); 
}
to { 
    opacity: 1; 
    transform: translateY(0); 
}
} 

.code-copy-wrapper{
    padding: 30px 0px;
}

.success-icon {
    font-size: 100px;
    margin-bottom: 30px;
    animation: bounceIn 0.8s ease;
}
@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.confirmation h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 900;
    word-wrap: break-word; /* Prevent text overflow */
}
.confirmation p {
    color: #6b7280;
    font-size: 17px;
    margin-bottom: 30px;
    font-weight: 500;
    word-wrap: break-word;
    padding: 0 10px;
}
.code-display {
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 10px 15px;
    border-radius: 24px;
    margin: 40px auto;
    max-width: 100%;
    width: fit-content; 
    overflow: hidden; /* Prevent overflow */
} 
.code-display1 {
    cursor: pointer;
padding: 10px 10px 10px 25px;
font-size: 22px;
font-weight: 900;
background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
color: #92400e;
border-radius: 24px;
margin: 40px 10px;
max-width: 100%;
width: fit-content;
letter-spacing: 12px;
animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
0%, 100% { 
    box-shadow: 
    0 20px 50px rgba(245,158,11,0.3),
    0 0 0 4px #fbbf24;
}
50% { 
    box-shadow: 
    0 25px 60px rgba(245,158,11,0.5),
    0 0 0 6px #fbbf24,
    0 0 30px rgba(245,158,11,0.4);
}
}
.urgency-badge {
display: inline-block;
background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
color: white;
padding: 10px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 800;
margin-bottom: 25px;
box-shadow: 0 4px 12px rgba(220,38,38,0.3);
animation: wiggle 1s ease-in-out infinite;
max-width: 100%;
}
@keyframes wiggle {
0%, 100% { transform: rotate(-3deg); }
50% { transform: rotate(3deg); }
}
.progress-section {
margin: 30px 0;
width: 100%;
overflow: hidden;
}
.progress-text {
color: #16a34a;
font-size: 18px;
font-weight: 700;
margin-bottom: 12px;
}
.progress-bar-container {
height: 12px;
background: #e5e7eb;
border-radius: 10px;
overflow: hidden;
max-width: 100%;
width: 100%;
margin: 0 auto;
}
.progress-bar-fill {
height: 100%;
width: 90%;
background: linear-gradient(90deg, #3b82f6, #2563eb);
border-radius: 10px;
animation: fillProgress 1s ease-out;
}
@keyframes fillProgress {
from { width: 0%; }
to { width: 90%; }
}
.next-steps {
background: #eff6ff;
padding: 24px;
border-radius: 16px;
margin: 30px 0;
text-align: left;
width: 100%;
overflow: hidden;
}
.next-steps h3 {
color: #1e40af;
margin-bottom: 16px;
font-size: 18px;
text-align: center;
}
.next-steps ul {
list-style: none;
padding-left: 0;
margin: 0;
}
.next-steps li {
padding: 10px 0;
color: #374151;
font-size: 15px;
font-weight: 500;
word-wrap: break-word;
}
.next-steps li:before {
content: "✓ ";
color: #16a34a;
font-weight: bold;
margin-right: 10px;
font-size: 18px;
}
.chat-btn {
width: 100%;
max-width: 100%;
padding: 22px;
background: linear-gradient(135deg, #dc2626, #b91c1c);
color: white;
border: none;
border-radius: 18px;
font-size: 20px;
font-weight: 800;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 8px 24px rgba(220,38,38,0.4);
animation: buttonPulse 1.5s ease-in-out infinite;
margin-top: 20px;
overflow: hidden;
}
@keyframes buttonPulse {
0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 8px 24px #1680F0; 
}
50% { 
    transform: scale(1.02); 
    box-shadow: 0 12px 32px #1680F0; 
}
}
.chat-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(220,38,38,0.6);
}
.social-proof {
    background: #eff6ff;
    padding: 14px;
    border-radius: 12px;
    margin-top: 24px;
    font-size: 14px;
    color: #1e40af;
    font-weight: 600;
    width: 100%;
    overflow: hidden;
    word-wrap: break-word;
}
/* Mobile Responsive */
@media (max-width: 640px) { 
    .code-copy-wrapper{
    padding: 20px 0px;
}
  
    .chat-btns {
    padding: 15px 20px;
    }
.code-display1 {
    padding: 7px 7px 7px 16px;
    font-size: 20px;
    letter-spacing: 6px; 
    line-height: 2rem;
}
.code-view-wrapper {
    padding: 15px;
}
.container {
    padding: 40px 24px;
    border-radius: 24px;
}

.confirmation h2 {
    font-size: 24px;
}

.code-display {
    cursor: pointer;
    font-size: 14px;
    padding: 9px 12px;
    margin: 30px auto;
}
.chat-btn {
    font-size: 18px;
    padding: 18px;
}
.next-steps {
    padding: 20px;
}
.next-steps li {
    font-size: 14px;
}
}
/* Extra small screens */
@media (max-width: 400px) { 
    .code-copy-wrapper{
    padding: 15px 0px;
}

    .chat-btns {
    padding: 15px 20px;
    }
.code-display1 {
    padding: 7px 7px 7px 16px;
    font-size: 20px;
    letter-spacing: 6px; 
    line-height: 3rem;
}
.code-display {
    cursor: pointer;
    font-size: 14px;
    padding: 7px 9px;
}
.confirmation h2 {
    font-size: 24px;
}
.success-icon {
    font-size: 80px;
}
}