@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --theme: #0e1a2b;
    --primary: #28edf8;
    --secondary: #212f42;
    --para: #ffffff;
    --border: #212f42;
}
body {
  background: var(--theme);
}
h1,
h2,
h3,
h4,
h5,
p,
span,
a,
label,
li,
del,
input,
select,
button,
textarea {
    font-family: 'Familjen Grotesk';
    color: var(--para) !important;
    background-color: transparent;
}
p {
    color: var(--para);
    font-size: 14px;
    word-break: break-word;
}
ul {
    padding-left: 0px;
}
li {
    list-style: none;
}
.btn-transparent, .bg-secondary {
  border: 1px solid var(--primary);
  transition: all 0.3s linear;
}
.btn-secondary {
  background-color: var(--secondary);
  transition: all 0.3s linear;
}
.theme-btn , .btn-transparent:hover{
  background-color: var(--primary);
  transition: all 0.3s linear;
  border: 1px solid transparent;
  color: #000000 !important;
  padding: 10px 30px !important;
  border-radius: 10px;
}
.theme-btn:hover, .btn-gradient:hover,  .btn-transparent:hover{
  transform: translateY(-3px);
}
.btn-gradient, .theme-btn:hover , .btn-secondary:hover{
  background-image: linear-gradient(to right, #69edfd, #49defe, #29cefe, #18befd, #29acf8);
  transition: all 0.3s linear;
}
.bg-black {
  background-color: #000000;
}
/**/
@keyframes slides-ltr {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

@keyframes slides-rtl {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.exchange-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #2d3e52;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
}


.input-section {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.input-container {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.amount-input {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 16px;
    background: transparent;
}

.currency-selector {
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-left: 1px solid #ddd;
    cursor: pointer;
    background-color: var(--primary);
}

.currency-selector select {
    border: none;
    background: transparent;
    font-weight: bold;
    cursor: pointer;
    color: #000 !important;
}

.currency-ticker {
    font-weight: bold;
    margin: 0 8px;
}

.rate-info {
    padding: 12px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    border: 1px solid #fff;
}

.rate-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.rate-value {
    color: #00c26f;
    font-weight: bold;
}

.wallet-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: transparent;
    color: #fff !important;
}

.wallet-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.wallet-hint {
    font-size: 12px;
    color: #fff;
    margin-top: 4px;
    margin-bottom: 15px;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.terms-text {
    font-size: 14px;
    margin-left: 8px;
}

.confirm-button {
    width: 100%;
    padding: 14px;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    background-image: linear-gradient(to right, #69edfd, #49defe, #29cefe, #18befd, #29acf8);
    transition: all 0.3s linear;
}

.confirm-button:hover {
    background-color: #00a85f;
}

.payment-offers {
    margin: 20px 0;
}

.offer-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.offer-item.selected {
    background-color: var(
    --theme);
}

.offer-checkbox {
    margin-right: 12px;
}

.offer-details {
    flex-grow: 1;
}

.offer-provider {
    font-weight: bold;
    margin-bottom: 4px;
    color: #fff;
}

.offer-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
}

.offer-amount {
    font-weight: bold;
    color: #00c26f;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.input-block {
    margin-bottom: 20px;
}

.tab-buttons {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 -6px;
}

.tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    border: none;
    background: none;
}

.tab-buttons .tab.active {background-image: linear-gradient(to right, #69edfd, #49defe, #29cefe, #18befd, #29acf8);transition: all 0.3s linear;}

.checkbox-block {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.checkbox-block input {
    margin-right: 10px;
}

.cashback-notice {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
}

.swap-icon {
    text-align: center;
    margin: 10px 0;
    color: #00c26f;
    font-size: 20px;
    cursor: pointer;
}

/* Transaction Page Styles */
.transaction-header {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.transaction-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.transaction-info div {
    margin-bottom: 10px;
}

#depositAddress {
    font-family: monospace;
    background: #fff;
    padding: 8px;
    border-radius: 4px;
    word-break: break-all;
    font-size: 14px;
    border: 1px solid #ddd;
}

.qr-code {
    text-align: center;
    margin: 15px 0;
}

.qr-code img {
    width: 150px;
    height: 150px;
    border: 1px solid #eee;
    padding: 5px;
    background: white;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    position: relative;
}

.progress-steps:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    color: #adb5bd;
    border: 1px solid #e9ecef;
}

.step.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.final-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.final-info div {
    margin-bottom: 10px;
}

.final-info strong {
    display: inline-block;
    min-width: 120px;
    color: #666;
}
.header {
    color: #fff;
    padding-bottom: 13px;
}
.tab-buttons button.tab {
    font-size: 18px;
    border-radius: 10px;
    color: #fff !important;
    font-weight: 700;
    background-color: var(--secondary);
    transition: all 0.3s linear;
    border: 1px solid #8c8c8c;
    margin: 0 6px;
}
div#buySection {
    padding-top: 11px;
}
.offer-methods img {
    filter: invert(1);
}
button {
    background-color: var(--primary) !important;
}
.main-tab-btns a {background-color: var(--primary);transition: all 0.3s linear;border: 1px solid transparent;color: #000000 !important;margin: 0 11px;}
.wallet-input::placeholder {
    color: #fff;
}
