body.dark {
    background: url('../images/home-bg.gif') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}
/* OVERLAY */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;

    background: radial-gradient(
        circle at top,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.8) 60%
    );
}


 .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; /* above overlay */
    background: rgba(12, 12, 21, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* LOGO */
.site-header .logo {
    max-width: 170px;
}

/* MENU ICON */
.site-header .menu-icon {
    font-size: 30px;
    color: #e5e7eb;
    cursor: pointer;
}




@media (min-width: 200px) and (max-width: 767px) {

.header-menu-panel {
    border-radius: 0 0 0 200px;
    width:270px;
}

}

@media (min-width: 768px) and (max-width: 1024px) {

.header-menu-panel {
    border-radius: 0 0 0 150px;
    width: 500px;
}

}

@media (min-width: 1025px) and (max-width: 3024px) {

.header-menu-panel {
    border-radius: 0 0 0 400px;
    width: 500px;
}

}

.header-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(12, 12, 21, 0.90);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -0 40px rgba(127,0,255,0.6);
    padding: 25px;
    z-index: 9999;
    transition: all 0.4s ease;
    min-height: 100vh;
    float: right;
}


.header-menu-panel.active {
    display: block;
}

.top-row {
    margin-top:100px;
}


.trade-buttons {
    display: flex;
    gap: 8px;
    background: rgba(15, 12, 40, 0.6);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
    align-items: center;

    margin: 0 auto;   /* 👈 centers the whole block */
}


/* BASE BUTTON */
.trade-btn {
    min-width: 120px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all .25s ease;
    color: #e5e7eb;
}

/* ACTIVE – BUY (VIOLET GRADIENT) */
.trade-btn.buy.active {
    background: linear-gradient(
        135deg,
        #8b5cf6,
        #6d28d9
    );
    color: #ffffff;
    box-shadow:
        0 6px 20px rgba(139, 92, 246, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* INACTIVE – SELL (ASH / BLUEISH) */
.trade-btn.sell {
    background: linear-gradient(
        135deg,
        #2e3348,
        #1e2235
    );
    color: #9ca3af;
}

/* HOVER (INACTIVE ONLY) */
.trade-btn.sell:hover {
    background: linear-gradient(
        135deg,
        #3a4060,
        #252a42
    );
    color: #e5e7eb;
}

/* ACTIVE PRESS */
.trade-btn:active {
    transform: scale(0.97);
}

.exchange-box {
    background:rgba(255,255,255,0.04);
    border:1px solid #7f00ff;
    border-radius:18px;
    box-shadow:0 0 30px rgba(127,0,255,.4);
}
.btn-gradient {
    background:linear-gradient(45deg,#7f00ff,#c77dff);
    border:none;
    color:#fff;
}

input, select, button {
    transition: all .25s ease;
}

input:focus, select:focus {
    box-shadow:0 0 10px rgba(127,0,255,.6);
}

.exchange-box:hover {
    transform: translateY(-4px);
}


@media (min-width: 200px) and (max-width: 767px) {

.confirm-buy-panel {
    border-radius: 100px 100px 0 0;
}

}

@media (min-width: 768px) and (max-width: 1024px) {

.confirm-buy-panel {
    border-radius: 150px 150px 0 0;
}

}

@media (min-width: 1025px) and (max-width: 3024px) {

.confirm-buy-panel {
    border-radius: 400px 400px 0 0;
}

}

.confirm-buy-panel {
    position: relative;
    margin-top: -260px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 21, 0.94);
    -webkit-backdrop-filter: blur(10px);
    border-top: 3px solid #7f00ff;
    box-shadow: 0 -0 40px rgba(127,0,255,0.6);
    padding: 25px;
    display: none; /* hidden by default */
    z-index: 999;
    transition: all 0.4s ease;
    width: 100%;
}


.confirm-buy-panel.active {
    display: block;
}




@media (min-width: 200px) and (max-width: 767px) {

.confirm-sell-panel {
    border-radius: 100px 100px 0 0;
}

}

@media (min-width: 768px) and (max-width: 1024px) {

.confirm-sell-panel {
    border-radius: 150px 150px 0 0;
}

}

@media (min-width: 1025px) and (max-width: 3024px) {

.confirm-sell-panel {
    border-radius: 400px 400px 0 0;
}

}

.confirm-sell-panel {
    position: relative;
    margin-top: -260px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 21, 0.94);
    -webkit-backdrop-filter: blur(10px);
    border-top: 3px solid #7f00ff;
    box-shadow: 0 -0 40px rgba(127,0,255,0.6);
    padding: 25px;
    display: none; /* hidden by default */
    z-index: 999;
    transition: all 0.4s ease;
    width: 100%;
}


.confirm-sell-panel.active {
    display: block;
}

.text-neon {
    color: #c77dff;
    text-shadow: 0 0 8px #7f00ff, 0 0 20px #c77dff;
}

input[readonly] {
    background-color: #1c1c2e;
    border: 1px solid #7f00ff;
    color: #fff;
}

input:focus, select:focus {
    box-shadow: 0 0 10px #c77dff;
    border-color: #c77dff;
}

.btn-gradient {
    background: linear-gradient(45deg,#7f00ff,#c77dff);
    border: none;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 0 10px #c77dff;
}

.btn-gradient:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px #c77dff, 0 0 30px #7f00ff;
}

 















 
    .invoice-card {
        background: radial-gradient(
        circle at top,
        rgba(27, 16, 58, 0.7),
        rgba(12, 12, 21, 0.7) 60%
    );

        border-radius: 18px;
        padding: 20px;
        box-shadow:
            0 0 30px rgba(127, 0, 255, 0.35),
            inset 0 0 20px rgba(127, 0, 255, 0.08);
        border: 1px solid rgba(127,0,255,0.4);
        animation: fadeUp 0.6s ease;
        position: relative;
        z-index: 12;
    }

    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .invoice-title {
        font-size: 0.9rem;
        letter-spacing: 2px;
        color: #bfa5ff;
        text-transform: uppercase;
    }

    .invoice-code {
        font-size: 1.6rem;
        font-weight: 700;
        color: #e8dcff;
        text-shadow: 0 0 10px rgba(127,0,255,.6);
    }

    .divider {
        height: 1px;
        background: linear-gradient(to right, transparent, #7f00ff, transparent);
        margin: 20px 0;
    }

    .label {
        font-size: 0.75rem;
        color: #9c89d9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .value {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
    }

    .value-client {
        font-size: 0.8rem;
        font-weight: 550;
        color: #ffffff;
    }

    .total-box {
        background: rgba(127,0,255,0.1);
        border: 1px dashed #7f00ff;
        border-radius: 12px;
        padding: 15px;
        margin-top: 15px;
    }

    .total-label {
        font-size: 0.8rem;
        color: #cbb7ff;
    }

    .total-amount {
        font-size: 1.8rem;
        font-weight: 800;
        color: #ffffff;
        text-shadow: 0 0 12px rgba(127,0,255,.7);
    }

    .account-name {
        font-size: 1.3rem;
        font-weight: 750;
        color: #ffffff;
        text-shadow: 0 0 12px rgba(127,0,255,.7);
    }


    .btn-pay {
        margin-top: 25px;
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #fff;
        background: linear-gradient(45deg, #7f00ff, #c77dff);
        border: none;
        border-radius: 14px;
        box-shadow: 0 0 20px rgba(127,0,255,0.7);
        transition: all 0.3s ease;
    }

    .btn-pay:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 0 30px rgba(199,125,255,1);
    }

    .invoice-status-h2 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #e8dcff;
        text-shadow: 0 0 10px rgba(127,0,255,.6);
    }

    .label-link {
        font-size: 0.9rem;
        color: #9c89d9;
        text-decoration: none;
        font-weight: 650;
    }

    .crypto-invoice-card{
      background: linear-gradient(180deg, #14142b, #0f0f1d);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 15px 50px rgba(127,0,255,.25);
      border: 1px solid rgba(255,255,255,.05);
    }

    .section-title{
      font-size: 14px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #9a9aff;
      margin-bottom: 20px;
    }

    .field-label{
      font-size: 13px;
      color: #cfd3ff;
      margin-bottom: 6px;
    }

    .crypto-input{
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      color: #fff;
      border-radius: 14px;
      padding: 14px 16px;
      font-size: 14px;
      resize: none;
      height: 100%;
    }

    .crypto-input:focus{
      border-color: #7f00ff;
      box-shadow: 0 0 0 2px rgba(127,0,255,.25);
    }

    .copy-field{
      position: relative;
    }

    .copy-btn{
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      background: rgba(127,0,255,.15);
      border: none;
      color: #cbb7ff;
      border-radius: 10px;
      padding: 6px 12px;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all .25s ease;
    }

    .copy-btn:hover{
      background: #7f00ff;
      color: #fff;
    }

    .copy-btn.copied{
      background: #00d18f;
      color: #0c0c15;
    }

    .hint-text{
      font-size: 13px;
      color: #9aa0ff;
    }

    .qr-box{
      background: #fff;
      padding: 15px;
      border-radius: 18px;
      display: inline-block;
    }

    .qr-box img{
      width: 100%;
      max-width: 220px;
    }

    .qr-hint{
      display: block;
      margin-top: 10px;
      color: #aaa;
    }

@media (min-width: 200px) and (max-width: 767px) {

.confirm-panel {
    border-radius: 100px 100px 0 0;
}

}

@media (min-width: 768px) and (max-width: 1024px) {

.confirm-panel {
    border-radius: 150px 150px 0 0;
}

}

@media (min-width: 1025px) and (max-width: 3024px) {

.confirm-panel {
    border-radius: 400px 400px 0 0;
}

}

.confirm-panel {
    position: relative;
    margin-top: -570px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 21, 0.94);
    -webkit-backdrop-filter: blur(10px);
    border-top: 3px solid #7f00ff;
    box-shadow: 0 -0 40px rgba(127,0,255,0.6);
    padding: 25px;
    z-index: 999;
    transition: all 0.4s ease;
    width: 100%;
    min-height: 100vh;
}


.confirm-panel.active {
    display: block;
}


@media (min-width: 200px) and (max-width: 767px) {

.confirm-hash-panel {
    border-radius: 100px 100px 0 0;
}

}

@media (min-width: 768px) and (max-width: 1024px) {

.confirm-hash-panel {
    border-radius: 150px 150px 0 0;
}

}

@media (min-width: 1025px) and (max-width: 3024px) {

.confirm-hash-panel {
    border-radius: 400px 400px 0 0;
}

}

.confirm-hash-panel {
    position: relative;
    margin-top: -700px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 21, 0.94);
    -webkit-backdrop-filter: blur(10px);
    border-top: 3px solid #7f00ff;
    box-shadow: 0 -0 40px rgba(127,0,255,0.6);
    padding: 25px;
    z-index: 999;
    transition: all 0.4s ease;
    width: 100%;
    min-height: 100vh;
}


.confirm-hash-panel.active {
    display: block;
}

:root {
    --bg-dark: #0f0c1d;
    --bg-input: #14122a;
    --bg-input-focus: #18163a;

    --border-input: #2b2850;
    --border-focus: #8b5cf6;
    --glow-focus: rgba(139, 92, 246, 0.45);

    --text-main: #f1f5f9;
    --text-muted: #a5b4fc;
    --text-disabled: #6b7280;

    --danger: #f87171;
    --success: #34d399;
}

/* BASE INPUT */
.form-control {
    width: 100%;
    padding: 10px 12px;
    background-color: var(--bg-input);
    color: var(--text-main);
    border: 1px solid var(--border-input);
    border-radius: 6px;
    font-size: 14px;
    caret-color: var(--border-focus);
    transition: border-color .2s ease,
                box-shadow .2s ease,
                background-color .2s ease;
}

/* PLACEHOLDER */
.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

/* HOVER */
.form-control:hover {
    border-color: #4c3fbf;
}

/* FOCUS */
.form-control:focus {
    outline: none;
    background-color: var(--bg-input-focus);
    color: var(--text-main);
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--glow-focus);
}

/* READONLY */
.form-control[readonly] {
    background-color: #0f0d24;
    color: #c7d2fe;
    border-color: #2a2660;
    cursor: not-allowed;
}

.form-control[readonly]:focus {
    box-shadow: none;
}

/* DISABLED */
.form-control:disabled {
    background-color: #0b0a1a;
    color: var(--text-disabled);
    border-color: #1e1b3a;
    cursor: not-allowed;
}

/* INVALID */
.form-control.is-invalid {
    border-color: var(--danger);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.45);
}

/* VALID */
.form-control.is-valid {
    border-color: var(--success);
}

.form-control.is-valid:focus {
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.45);
}

/* TEXTAREA */
textarea.form-control {
    resize: vertical;
}

/* CHECKBOX & RADIO */
input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--border-focus);
}


  .select2-container--default .select2-selection--single {
    background-color: #14122a !important;
    color: #d2d2d2 !important;
    border: 1px solid #444 !important;
    border-radius: 6px;
    height: 40px;
    display: flex;
    align-items: center;
  }

  .select2-container--default .select2-selection__rendered {
    color: #d2d2d2 !important;
  }

  .select2-container--default .select2-results>.select2-results__options {
    background-color: #14122a !important;
    color: #d2d2d2 !important;
  }

  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #444 !important;
    color: #d2d2d2 !important;
  }

  .select2-container--default .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
  }


.btn-gradient {
    background:linear-gradient(45deg,#7f00ff,#c77dff);
    border:none;
    color:#fff;
}

/* SweetAlert2 Dark Theme */
.swal2-popup {
    background: #0c0c15 !important;
    color: #ffffff !important;
    border-radius: 14px;
    border: 1px solid #7f00ff; /* violet border */
    box-shadow: 0 0 25px rgba(127, 0, 255, 0.35);
}

.swal2-title,
.swal2-html-container {
    color: #ffffff !important;
}

.swal2-timer-progress-bar {
    background: linear-gradient(90deg, #7f00ff, #9b5cff);
}


.swal2-icon.swal2-success {
    border-color: #7f00ff;
    color: #7f00ff;
}

.tx-pending-card {
    background: linear-gradient(160deg, #141428, #0c0c15);
    border: 1px solid rgba(127,0,255,.6);
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(127,0,255,.35);
    color: #fff;
    overflow: hidden;
}

.tx-header {
    background: linear-gradient(45deg, #7f00ff, #c77dff);
    padding: 14px 20px;
    font-weight: 600;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top-left-radius:20px;
    border-top-right-radius:20px;
    z-index:12;
    position:relative;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #00ffcc;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,255,204,.6); }
    70% { box-shadow: 0 0 0 10px rgba(0,255,204,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,204,0); }
}

.tx-body {
    padding: 0px;
}

.tx-line {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.tx-line.small {
    font-size: .9rem;
    opacity: .85;
}

.tx-amount {
    color: #c77dff;
    font-weight: 700;
}

.tx-mono {
    font-family: monospace;
    font-size: .85rem;
    word-break: break-all;
    color: #9ad7ff;
}

.tx-divider {
    border-color: rgba(255,255,255,.08);
    margin: 16px 0;
}

.tx-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.tx-meta label {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    opacity: .6;
}

.tx-status {
    color: #ffc107;
    font-weight: 600;
}

.tx-footer {
    background: rgba(255,255,255,.03);
    padding: 14px 20px;
    font-size: .85rem;
    opacity: .8;
}

.tx-sell-body {
    border-top-left-radius:0px;
    border-top-right-radius:0px;
}


.rate-form-left {
    width:60%;
    float:left;
    border-top-right-radius:0px;
    border-bottom-right-radius:0px;
}

.rate-form-right {
    width:40%;
    float:right;
    border-top-left-radius:0px;
    border-bottom-left-radius:0px;
}

.site-footer {
    text-align: center;
    padding: 20px 15px;
    font-size: 13px;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
    position: relative;

}

.site-footer a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #a78bfa;
    text-decoration: underline;
}


/* MODAL BACKDROP */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 20, 0.75);
    backdrop-filter: blur(6px);

    display: flex;
    justify-content: center;   /* center horizontally */
    align-items: flex-end;     /* push to bottom */

    padding: 20px;             /* spacing from edge */
    z-index: 9999;
}

/* MODAL BOX */
.cookie-box {
    max-width: 420px;
    width: 90%;
    background: linear-gradient(145deg, #151922, #10131a);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    color: #e5e7eb;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* TITLE */
.cookie-box h5 {
    margin-bottom: 12px;
    font-weight: 600;
}

/* TEXT */
.cookie-box p {
    font-size: 14px;
    color: #b3b8c5;
    margin-bottom: 20px;
}

/* BUTTON CONTAINER */
.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* BASE BUTTON */
.cookie-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* ACCEPT (VIOLET ACTIVE) */
.cookie-btn.accept {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    box-shadow: 0 5px 18px rgba(139, 92, 246, 0.45);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
}

/* REJECT (ASH BLUE) */
.cookie-btn.reject {
    background: linear-gradient(135deg, #2e3348, #1e2235);
    color: #9ca3af;
}

.cookie-btn.reject:hover {
    background: linear-gradient(135deg, #3a4060, #252a42);
    color: #fff;
}

.wrap-word {
    display:flex;
    word-break: break-all;
    overflow-wrap: break-word;
}


.privacy-terms-card {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    color: #cbd5e1;
    position: relative;
    z-index: 12;
}

.privacy-terms-card h5 {
    color: #fff;
}

.text-gradient {
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-section h6 {
    color: #a78bfa;
}

.privacy-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.terms-card {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
    color: #cbd5e1;
    position: relative;
    z-index: 12;
}

.text-gradient {
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.terms-section h6 {
    color: #a78bfa;
}

.terms-section p {
    font-size: 14px;
    line-height: 1.65;
    opacity: 0.92;
}



.about-wrapper {
    color: #cbd5e1;
    position: relative;
    z-index: 12;
}

.about-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 15px 50px rgba(0,0,0,0.45);
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    font-size: 16px;
    opacity: 0.85;
}

.section-title {
    color: #a78bfa;
    font-weight: 600;
}

.about-card {
    background: linear-gradient(145deg, #111827, #1f2937);
    border-radius: 18px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.step-box {
    background: rgba(139, 92, 246, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.about-cta {
    background: linear-gradient(135deg, #1e1b4b, #0f172a);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
