.nsk-codes-container {
display: flex;
flex-direction: column;
gap: 12px;
margin: 20px 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.nsk-code-row {
display: flex;
align-items: center;
justify-content: space-between;
background: #ffffff;
border: 1px solid #eef0f6;
border-radius: 14px;
padding: 16px 20px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
transition: all 0.2s ease;
}
.nsk-code-row:hover {
border-color: #7293c4;
box-shadow: 0 4px 12px rgba(43, 83, 140, 0.08);
}
.nsk-code-left {
display: flex;
flex-direction: column;
gap: 10px;
}
.nsk-code-top-group {
display: flex;
align-items: center;
gap: 10px;
position: relative;
} .nsk-code-value {
background: #eef4fb;
color: #2b538c;
font-weight: 700;
font-size: 15px;
padding: 6px 14px;
border-radius: 8px;
font-family: inherit;
position: relative;
letter-spacing: 0.3px;
} .nsk-code-value::after {
content: '';
position: absolute;
bottom: -27px;
left: 8px;
width: 26px;
height: 26px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e11d48' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M 4 2 C 4 13, 4 18, 18 18' /%3E%3Cpath d='M 13 13 L 19 18 L 13 23' /%3E%3C/svg%3E");
background-size: contain;
background-repeat: no-repeat;
pointer-events: none;
} .nsk-code-flag {
background: #ea580c;
color: #ffffff;
font-size: 11px;
font-weight: 800;
padding: 3px 9px;
border-radius: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
} .nsk-code-rewards {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 4px;
padding-left: 36px;
}
.nsk-reward-badge {
background: #f1f5f9;
color: #334155;
font-size: 13px;
font-weight: 500;
padding: 5px 12px;
border-radius: 6px;
} .nsk-copy-btn {
display: inline-flex;
align-items: center;
gap: 6px;
background: #ffffff;
border: 1px solid #7293c4;
color: #2b538c;
font-weight: 600;
font-size: 14px;
padding: 8px 18px;
border-radius: 20px;
cursor: pointer;
transition: all 0.2s ease;
}
.nsk-copy-btn:hover {
background: #eef4fb;
border-color: #2b538c;
}
.nsk-copy-btn.copied {
background: #2b538c;
color: #ffffff;
border-color: #2b538c;
} .nsk-expired-toggle {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
background: #f8fafc;
border: 1px dashed #cbd5e1;
padding: 12px 18px;
border-radius: 10px;
font-weight: 600;
color: #64748b;
cursor: pointer;
margin: 15px 0 10px;
transition: all 0.2s ease;
}
.nsk-expired-toggle:hover {
background: #f1f5f9;
color: #334155;
border-color: #94a3b8;
}
.nsk-expired-toggle .arrow {
transition: transform 0.2s ease;
}
.nsk-expired-toggle.active .arrow {
transform: rotate(180deg);
} @media (max-width: 640px) {
.nsk-code-row {
flex-direction: column;
align-items: flex-start;
gap: 14px;
}
.nsk-copy-btn {
width: 100%;
justify-content: center;
}
}