@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove outline for all interactive elements */
button:focus,
button:active,
select:focus,
select:active,
input:focus,
input:active,
textarea:focus,
textarea:active,
a:focus,
a:active,
.convert-btn:focus,
.convert-btn:active,
.swap-btn:focus,
.swap-btn:active,
.currency-select:focus,
.currency-select:active,
.copy-btn:focus,
.copy-btn:active,
.confirm-btn:focus,
.confirm-btn:active,
.cancel-btn:focus,
.cancel-btn:active,
.new-swap-btn:focus,
.new-swap-btn:active,
.status-btn:focus,
.status-btn:active,
.mini-btn:focus,
.mini-btn:active,
.update-btn:focus,
.update-btn:active,
.contact-links a:focus,
.contact-links a:active,
.quick-links a:focus,
.quick-links a:active,
.back-link-modern:focus,
.back-link-modern:active {
    outline: none !important;
    box-shadow: none !important;
}

input[type="number"]:focus,
input[type="number"]:active,
input[type="text"]:focus,
input[type="text"]:active {
    outline: none !important;
    box-shadow: none !important;
}

body {
    font-family: 'JetBrains Mono', 'Roboto Mono', 'Courier New', monospace;
    background: #f5f7fc;
    color: #1a2c3e;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #5b3cc4 #e0e5ec;
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #e0e5ec;
    border-radius: 20px;
}
::-webkit-scrollbar-thumb {
    background: #5b3cc4;
    border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4a2fb0;
}

/* ============================================ */
/* MAIN CONTAINERS                              */
/* ============================================ */

.container {
    max-width: 620px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 24px 48px;
}

.blog-wrapper {
    max-width: 1200px;
    width: 90%;
    padding: 10px 20px;
    margin: 0 auto;
}

.confirmation-container {
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 24px 48px;
}

.success-container {
    max-width: 600px;
    width: 95%;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    width: 95%;
    margin: 0 auto;
    padding: 20px 0;
}

/* ============================================ */
/* HEADER STYLES                                */
/* ============================================ */

header {
    text-align: center;
    margin-bottom: 1rem;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a2fb0, #7b5fe0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

header h1 i {
    background: none;
    color: #f0b90b;
    -webkit-background-clip: unset;
    background-clip: unset;
    font-size: 2rem;
}

.modern-header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(100, 100, 140, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.modern-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #4a2fb0, #7b5fe0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.modern-header p {
    color: #5a6e8a;
    font-size: 1rem;
}

/* ============================================ */
/* WARNING BANNER                               */
/* ============================================ */

.warning-banner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 12px 20px;
    margin-bottom: 24px;
    border-left: 4px solid #f59e0b;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    color: #5a4a2a;
}

.warning-banner p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.warning-banner i {
    color: #f59e0b;
    width: 22px;
}

/* ============================================ */
/* BLOG STYLES                                  */
/* ============================================ */

.blog-modern-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid rgba(100, 100, 140, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.back-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #5b3cc4, #7b5fe0);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.back-link-modern:hover {
    background: linear-gradient(135deg, #4a2fb0, #6b4fd8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 60, 196, 0.3);
}

.blog-article {
    line-height: 1.8;
}

.blog-article h2 {
    font-size: 1.8rem;
    color: #4a2fb0;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #5b3cc4;
    display: inline-block;
}

.blog-article h3 {
    font-size: 1.4rem;
    color: #4a2fb0;
    margin: 1.5rem 0 1rem 0;
}

.blog-article p {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.blog-article ul {
    margin: 1rem 0 1rem 2rem;
    list-style: none;
}

.blog-article ul li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2c3e50;
    font-size: 0.95rem;
}

.blog-article ul li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #5b3cc4;
    font-weight: bold;
}

.feature-box {
    background: #f0f2f8;
    border-left: 4px solid #5b3cc4;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #4a2fb0;
}

.crypto-tag {
    display: inline-block;
    background: #6c757d;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.platform-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.platform-item {
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e4ec;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
}

.platform-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #5b3cc4;
}

.platform-item strong {
    color: #5b3cc4;
}

.platform-item a {
    color: #4a6fa5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.platform-item a:hover {
    color: #5b3cc4;
    text-decoration: underline;
}

.note-box {
    background: #fef9e6;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    color: #856404;
}

.note-box i {
    color: #ffc107;
    margin-right: 0.5rem;
}

/* ============================================ */
/* SWAP CONTAINER & CARD                        */
/* ============================================ */

.swap-container {
    margin: 16px 0 20px;
}

.swap-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 28px 24px 32px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(100, 100, 140, 0.15);
}

/* ============================================ */
/* FORM STYLES                                  */
/* ============================================ */

.swap-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-section {
    background: #f8fafd;
    border-radius: 28px;
    padding: 8px 16px 16px;
    margin-bottom: 12px;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.input-group {
    background: #f8fafd;
    border-radius: 28px;
    padding: 8px 16px 16px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.input-group label,
.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.input-group label i,
.section-label i {
    font-size: 1rem;
    color: #5b3cc4;
}

.input-with-unit {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 70px;
    padding: 5px 10px 5px 18px;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}

.input-with-unit:focus-within {
    border-color: #5b3cc4;
    box-shadow: 0 0 0 2px rgba(91, 60, 196, 0.15);
}

.input-with-unit input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a2c3e;
    outline: none;
    padding: 12px 0;
    min-width: 100px;
    font-family: inherit;
}

.input-with-unit input[readonly] {
    color: #4a6fa5;
    cursor: default;
}

.currency-select {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 10px 16px;
    font-weight: 600;
    color: #1a2c3e;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: 0.2s;
    font-family: inherit;
    min-width: 120px;
}

.currency-select:hover {
    background: #f8fafd;
    border-color: #cbd5e1;
}

.currency-select option {
    background: #ffffff;
    color: #1a2c3e;
}

.usd-value {
    font-size: 0.8rem;
    color: #6b7c9e;
    margin-top: 10px;
    margin-left: 8px;
    letter-spacing: -0.2px;
    font-family: inherit;
}

/* ============================================ */
/* BUTTON STYLES                                */
/* ============================================ */

.convert-button-container {
    display: flex;
    justify-content: center;
    margin: 12px 0 8px;
    position: relative;
    z-index: 10;
}

.convert-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 60px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
    font-family: inherit;
}

.convert-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

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

.swap-btn {
    width: 100%;
    background: linear-gradient(95deg, #5b3cc4, #7b5fe0);
    border: none;
    border-radius: 60px;
    padding: 16px 20px;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-top: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(91, 60, 196, 0.25);
    font-family: inherit;
}

.swap-btn:hover {
    background: linear-gradient(95deg, #4a2fb0, #6b4fd8);
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(91, 60, 196, 0.35);
}

.mini-btn {
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
}

.mini-btn:hover {
    background: #229954;
}

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.button-group button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.update-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.update-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
}

.copy-btn {
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-family: inherit;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: #229954;
}

/* ============================================ */
/* INFO BOXES                                   */
/* ============================================ */

.info-box {
    background: #f0f4fa;
    border-radius: 20px;
    padding: 12px 18px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    border-left: 4px solid;
    font-family: inherit;
}

.fee-info {
    border-left-color: #10b981;
    background: #e6f7ef;
    justify-content: space-between;
    color: #0a7c46;
}

.fee-info i {
    color: #10b981;
}

.fee-info strong {
    color: #0a7c46;
}

.min-amount-info {
    background: #e8f0fe;
    border-left-color: #3498db;
    color: #2c6e9e;
}

.min-amount-info i {
    color: #3498db;
}

.warning-box {
    border-left-color: #f59e0b;
    background: #fef3e2;
    color: #b85c00;
}

.warning-box i {
    color: #f59e0b;
}

.info-box-note {
    border-left-color: #5b3cc4;
    background: #f0ebff;
    color: #4a2fb0;
}

.info-box-note i {
    color: #5b3cc4;
}

/* ============================================ */
/* ADDRESS FIELDS                               */
/* ============================================ */

.input-group input[type="text"] {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 70px;
    padding: 14px 18px;
    color: #1a2c3e;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s;
    font-family: inherit;
}

.input-group input[type="text"]:focus {
    border-color: #5b3cc4;
    box-shadow: 0 0 0 2px rgba(91, 60, 196, 0.1);
}

/* ============================================ */
/* STATUS MESSAGES                              */
/* ============================================ */

.status-message {
    margin: 16px 0 0;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    background: #f8fafd;
    font-family: inherit;
}

.status-message.success {
    background: #e6f7ef;
    color: #0a7c46;
    border-left: 4px solid #2ecc71;
}

.status-message.error {
    background: #feeeee;
    color: #c0392b;
    border-left: 4px solid #e74c3c;
}

.status-message.info {
    background: #e8f0fe;
    color: #2c6e9e;
    border-left: 4px solid #3b82f6;
}

/* ============================================ */
/* API INFO & LIVE RATE                         */
/* ============================================ */

.api-info {
    margin-top: 28px;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7c9e;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    font-family: inherit;
}

.api-info a {
    color: #5b3cc4;
    text-decoration: none;
}

.live-rate {
    background: #f0f4fa;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 60px;
    margin-top: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.rate-value {
    color: #f0b90b;
    font-weight: 700;
}

/* ============================================ */
/* FOOTER - SOLID LINE DESIGN - LIGHT MODE     */
/* ============================================ */

footer {
    margin-top: 60px;
    background: #f8fafd;
    border-top: 2px solid #e2e8f0;
    padding: 50px 0 30px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand h2 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #4a2fb0, #7b5fe0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h2 i {
    color: #f0b90b;
    font-size: 1.5rem;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.footer-brand p {
    color: #5a6e8a;
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    min-width: 150px;
}

.footer-section h4 {
    color: #4a2fb0;
    font-size: 0.85rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #5b3cc4;
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #5a6e8a;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a i {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5b3cc4;
    transform: translateX(5px);
}

.footer-section ul li a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    background: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b3cc4;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.footer-social a:hover {
    background: #5b3cc4;
    color: white;
    transform: translateY(-3px);
    border-color: #5b3cc4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-bottom p {
    color: #6b7c9e;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.footer-bottom .copyright {
    margin-top: 8px;
    font-size: 0.65rem;
    color: #8a9ab0;
}

/* Legacy footer support for older pages */
.contact-section,
.quick-links {
    display: inline-block;
    vertical-align: top;
}

/* ============================================ */
/* CONFIRMATION PAGE STYLES                     */
/* ============================================ */

.summary-section,
.deposit-section,
.recipient-section,
.notes-section {
    background: #f8fafd;
    border-radius: 28px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.summary-section h2,
.deposit-section h2,
.recipient-section h2,
.notes-section h2 {
    color: #4a2fb0;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #5b3cc4;
    padding-bottom: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 12px 0;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 15px;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .label {
    color: #4a5568;
    font-weight: 600;
    font-size: 0.85rem;
}

.summary-item .value {
    color: #0a7c46;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: right;
    word-break: break-word;
}

.address-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 18px;
    margin: 15px 0;
    border: 2px solid #27ae60;
}

.address-display {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.address-display code {
    flex: 1;
    background: #f0f4fa;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.8rem;
    word-break: break-all;
    color: #1a2c3e;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.4;
}

.address-note {
    color: #6b7c9e;
    font-size: 0.75rem;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
}

.qr-code {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
}

.qr-code h3 {
    color: #4a2fb0;
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.qr-placeholder {
    background: #f8fafd;
    border-radius: 16px;
    padding: 20px;
    display: inline-block;
    border: 2px dashed #5b3cc4;
}

.qr-placeholder img {
    width: 180px;
    height: 180px;
}

.detail-item {
    margin: 15px 0;
}

.detail-item .label {
    color: #4a5568;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.detail-item .value {
    background: #f0f4fa;
    padding: 12px;
    border-radius: 12px;
    word-break: break-all;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    color: #1a2c3e;
}

.notes-list {
    list-style: none;
    padding-left: 0;
}

.notes-list li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #2c3e50;
    padding: 8px;
    background: #ffffff;
    border-radius: 12px;
}

.notes-list li i {
    color: #27ae60;
    width: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.confirm-btn {
    flex: 2;
    min-width: 200px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
    background: linear-gradient(135deg, #229954, #27ae60);
}

.cancel-btn {
    flex: 1;
    min-width: 150px;
    background: #feeeee;
    color: #c0392b;
    border: 2px solid #e74c3c;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    text-align: center;
}

.cancel-btn:hover {
    background: #fce4e4;
    transform: translateY(-2px);
}

/* ============================================ */
/* SUCCESS PAGE STYLES                          */
/* ============================================ */

.success-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    border: 2px solid #27ae60;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.success-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 20px;
}

.success-card h2 {
    color: #4a2fb0;
    margin-bottom: 30px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.8rem;
}

.transaction-details {
    background: #f8fafd;
    border-radius: 28px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.transaction-details p {
    margin: 10px 0;
    color: #2c3e50;
    font-family: inherit;
    font-size: 0.9rem;
}

.status-pending {
    color: #f39c12;
    font-weight: bold;
}

.instructions {
    text-align: left;
    margin: 30px 0;
}

.instructions h3 {
    color: #4a2fb0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.2rem;
}

.instructions ol {
    padding-left: 20px;
    color: #2c3e50;
}

.instructions li {
    margin: 10px 0;
    font-family: inherit;
    font-size: 0.9rem;
}

.new-swap-btn,
.status-btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.new-swap-btn {
    background: #5b3cc4;
    color: white;
}

.new-swap-btn:hover {
    background: #4a2fb0;
    transform: translateY(-2px);
}

.status-btn {
    background: #e8f0fe;
    color: #2c6e9e;
    border: 2px solid #3b82f6;
}

.status-btn:hover {
    background: #d4e2fc;
    transform: translateY(-2px);
}

/* ============================================ */
/* FAQ PAGE STYLES                              */
/* ============================================ */

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #4a2fb0, #7b5fe0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-header p {
    color: #5a6e8a;
    font-size: 1rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #5b3cc4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    cursor: pointer;
    background: #ffffff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafd;
}

.faq-question i:first-child {
    font-size: 20px;
    color: #5b3cc4;
    min-width: 30px;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    color: #1a2c3e;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 18px;
    color: #5b3cc4;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background: #f8fafd;
    border-top: 1px solid #e2e8f0;
    padding: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================ */
/* SWAP ARROW                                   */
/* ============================================ */

.swap-arrow {
    text-align: center;
    margin: 5px 0;
}

.swap-arrow i {
    font-size: 20px;
    color: #5b3cc4;
    background: #f0f4fa;
    padding: 8px;
    border-radius: 50%;
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS                       */
/* ============================================ */

@media (max-width: 768px) {
    .container,
    .confirmation-container {
        width: 95%;
        padding: 16px;
    }
    
    .blog-wrapper {
        width: 95%;
        padding: 10px 12px;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .footer-links {
        justify-content: flex-start;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 140px;
    }
    
    .platform-list {
        flex-direction: column;
    }
    
    .swap-card {
        padding: 20px;
    }
    
    .input-with-unit {
        gap: 8px;
    }
    
    .input-with-unit input {
        min-width: 80px;
        font-size: 1.2rem;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .summary-item .value {
        text-align: left;
    }
    
    .address-display {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .confirm-btn,
    .cancel-btn {
        width: 100%;
    }
    
    .qr-placeholder img {
        width: 150px;
        height: 150px;
    }
    
    .faq-question {
        gap: 10px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container,
    .confirmation-container {
        width: 100%;
        padding: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .input-with-unit {
        padding: 5px 8px 5px 14px;
    }
    
    .input-with-unit input {
        font-size: 1rem;
    }
    
    .currency-select {
        font-size: 0.7rem;
        min-width: 100px;
    }
    
    .swap-btn {
        gap: 8px;
        font-size: 1rem;
    }
    
    .convert-btn {
        gap: 6px;
    }
    
    .summary-section,
    .deposit-section,
    .recipient-section,
    .notes-section {
        padding: 15px;
    }
    
    .summary-section h2,
    .deposit-section h2,
    .recipient-section h2,
    .notes-section h2 {
        font-size: 1.1rem;
    }
    
    .qr-placeholder img {
        width: 120px;
        height: 120px;
    }
    
    .notes-list li {
        font-size: 0.75rem;
    }
    
    .confirm-btn,
    .cancel-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .success-card {
        padding: 25px;
    }
    
    .success-icon {
        font-size: 60px;
    }
    
    .success-card h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 360px) {
    .input-with-unit {
        padding: 5px 8px 5px 14px;
    }
    
    .convert-btn,
    .swap-btn {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 580px;
    }
    
    .footer-main {
        max-width: 900px;
    }
    
    .confirmation-container {
        max-width: 650px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 620px;
    }
    
    .blog-wrapper {
        max-width: 1200px;
    }
    
    .footer-main {
        max-width: 1200px;
    }
    
    .confirmation-container {
        max-width: 700px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    button,
    .convert-btn,
    .swap-btn,
    a {
        cursor: default;
    }
}

/* Body with confirmation container */
body:has(.summary-section) .container {
    max-width: 700px;
}