/* =======================
   CryptoATM Light Theme
   ======================= */
/* Telegram Button Style */

.telegram-navbar-btn {
    border: 2px solid #0057b8;
    border-radius: 25px;
    padding: 8px 20px !important;
    color: #0057b8 !important;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.telegram-navbar-btn:hover {
    background-color: #0057b8;
    color: #fff !important;
    text-decoration: none;
}


body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #222;
    font-weight: 400;
    line-height: 1.6;
    padding-top: 70px;
    overflow-x: hidden;
}

html {
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #111;
    margin-top: 0;
    margin-bottom: 20px;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

a {
    color: #0057b8;
    text-decoration: none;
    transition: 0.3s ease;
}
a:hover {
    color: #003c7c;
}

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h1 {
    font-size: 32px;
    color: #111;
}
.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Navigation */
.navbar-default {
    background: #ffffff;
    border: none;
    margin: 0;
    box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}
.navbar-default .navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #111;
    letter-spacing: 1px;
}
.navbar-default .navbar-nav > li > a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #444;
    padding: 18px 20px;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > .active > a {
    color: #0057b8;
    background: transparent;
}
.navbar-toggle {
    border: none;
    background: transparent !important;
}
.navbar-toggle .icon-bar {
    background-color: #333;
}

/* Buttons */
.btn-success {
    background-color: #0057b8;
    border-color: #004a9c;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 26px;
    transition: 0.3s ease;
}
.btn-success:hover {
    background-color: #003c7c;
    color: #fff;
}

/* Home section */
#home {
    background: linear-gradient(to right, #0057b8, #002e6d);
    color: #fff;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
}
#home .overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#home .container {
    position: relative;
    z-index: 2;
}
#home h1 {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
}
#home p {
    color: #eee;
    font-size: 18px;
    margin-top: 20px;
}
/* Cards — тарифы, блоки, преимущества */
.extra-card,
.pricing-plan {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.extra-card:hover,
.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.extra-card h4,
.pricing-plan h4 {
    font-weight: 600;
    font-size: 18px;
    color: #003c7c;
    margin-bottom: 15px;
}
.extra-card ul,
.pricing-plan ul {
    padding-left: 20px;
    font-size: 15px;
    color: #333;
}
.extra-card p,
.pricing-plan p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

/* Interface section (картинки интерфейса) */
#interface {
    background: #f9f9f9;
    padding: 80px 0;
}
#interface img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}
#interface img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Owl carousel override */
.owl-carousel .item {
    padding: 15px;
}

/* Footer */
footer {
    background: #f4f4f4;
    padding: 60px 0;
    font-size: 14px;
    color: #666;
    text-align: center;
    border-top: 1px solid #e2e2e2;
}
footer a {
    color: #0057b8;
}
footer a:hover {
    text-decoration: underline;
}

/* Contact section */
#contact {
    background: #fafafa;
    padding: 80px 0;
}
#contact form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
#contact .form-control {
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: none;
    border: 1px solid #ccc;
    font-size: 15px;
}
#contact .form-control:focus {
    border-color: #0057b8;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 87, 184, 0.2);
}
/* Cards — тарифы, блоки, преимущества */
.extra-card,
.pricing-plan {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.extra-card:hover,
.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.extra-card h4,
.pricing-plan h4 {
    font-weight: 600;
    font-size: 18px;
    color: #003c7c;
    margin-bottom: 15px;
}
.extra-card ul,
.pricing-plan ul {
    padding-left: 20px;
    font-size: 15px;
    color: #333;
}
.extra-card p,
.pricing-plan p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

/* Interface section (картинки интерфейса) */
#interface {
    background: #f9f9f9;
    padding: 80px 0;
}
#interface img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}
#interface img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Owl carousel override */
.owl-carousel .item {
    padding: 15px;
}

/* Footer */
footer {
    background: #f4f4f4;
    padding: 60px 0;
    font-size: 14px;
    color: #666;
    text-align: center;
    border-top: 1px solid #e2e2e2;
}
footer a {
    color: #0057b8;
}
footer a:hover {
    text-decoration: underline;
}

/* Contact section */
#contact {
    background: #fafafa;
    padding: 80px 0;
}
#contact form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
#contact .form-control {
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: none;
    border: 1px solid #ccc;
    font-size: 15px;
}
#contact .form-control:focus {
    border-color: #0057b8;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 87, 184, 0.2);
}
/* Animations */
.wow {
    visibility: hidden;
}

/* Overlay */
.overlay {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* Section spacing fix */
section {
    position: relative;
    z-index: 1;
}

/* Inputs + Form general */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    margin-bottom: 20px;
    box-shadow: none;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: #0057b8;
    box-shadow: 0 0 6px rgba(0,87,184,0.15);
}

/* Owl carousel nav override */
.owl-prev,
.owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #0057b8;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
}
.owl-prev {
    left: -25px;
}
.owl-next {
    right: -25px;
}
.owl-prev:hover,
.owl-next:hover {
    background: #003c7c;
}

/* Popup images */
.image-popup img {
    cursor: zoom-in;
}

/* Pricing badge */
.pricing-plan .badge-popular {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #0057b8;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Smooth scroll fix */
html {
    scroll-behavior: smooth;
}

#referral {
    background: #f9f9f9;
    color: #222;
    padding: 80px 0;
}

#referral h2 {
    color: #003c7c;
}

#referral h4 {
    color: #0057b8;
    font-weight: 600;
    margin-bottom: 15px;
}

#referral ul {
    padding-left: 20px;
    color: #444;
    font-size: 15px;
    line-height: 1.8;
}

#referral p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

#referral a {
    color: #0057b8;
    text-decoration: underline;
}
#referral a:hover {
    color: #003c7c;
}
.referral-section {
    background-color: #f9f9f9;
    color: #222;
    padding: 80px 0;
}

.referral-section h2 {
    color: #003c7c;
    font-weight: 700;
    margin-bottom: 20px;
}

.referral-section h4 {
    color: #0057b8;
    font-weight: 600;
    margin-top: 30px;
}

.referral-section p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.referral-section ul {
    padding-left: 20px;
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.referral-section a {
    color: #0057b8;
    text-decoration: underline;
}

.referral-section a:hover {
    color: #003c7c;
}

form.extra-card {
    margin-left: auto;
    margin-right: auto;
    float: none;
}
.telegram-btn-outline {
    color: #0057b8 !important;
    border: 2px solid #0057b8;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    background: transparent;
    margin-top: 8px;
}

.telegram-btn-outline:hover {
    background-color: #0057b8;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 87, 184, 0.3);
}
/* ----- Referral cards ----- */
.referral-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    padding:30px;
    box-shadow:0 3px 12px rgba(0,0,0,0.05);
    transition:all .3s ease;
}
.referral-card:hover{
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
}
.referral-card h4{
    font-weight:600;
    margin-bottom:15px;
}
.referral-card ul{
    padding-left:20px;
    font-size:15px;
    color:#444;
    line-height:1.8;
}
.referral-card p{
    font-size:15px;
    color:#444;
    line-height:1.6;
}

.lb-prev, .lb-next, .lb-close {
    opacity: 1 !important;
}

.telegram-navbar-btn {
    border: 2px solid #0057b8;
    color: #0057b8;
    font-weight: 600;
    background-color: white;
    transition: all 0.3s ease;
}

<style>
     /* Telegram-кнопка в хедере */
 .telegram-navbar-btn {
     border: 2px solid #0057b8;
     color: #0057b8;
     font-weight: 600;
     background-color: white;
     transition: all 0.3s ease;
 }

.telegram-navbar-btn:hover {
    background-color: #0057b8;
    color: white;
    border-color: #0057b8;
    text-decoration: none;
}

/* Magnific Popup стрелки и крестик */
.mfp-arrow {
    opacity: 1 !important;
}
.mfp-close {
    color: white !important;
    font-size: 32px !important;
    top: 10px !important;
    right: 10px !important;
}
</style>

  .social-icon {
      display: inline-block;
      width: 36px;
      height: 36px;
      line-height: 36px;
      background-color: #111;
      color: #fff;
      text-align: center;
      border-radius: 50%;
      font-size: 16px;
      transition: all 0.3s ease;
  }

.social-icon:hover {
    background-color: #00c7a2;
    color: #000;
    text-decoration: none;
}
#faq .card {
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

#faq .card-header {
    background: #fff;
    padding: 18px 20px;
}

#faq .btn-link {
    font-weight: 600;
    font-size: 17px;
    color: #0057b8;
    text-decoration: none;
}

#faq .btn-link:hover {
    text-decoration: underline;
}
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #003c7c;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f4f9ff;
}

.faq-question .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    font-family: 'Roboto', sans-serif;
    background: #fbfbfb;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 16px 20px;
    max-height: 500px;
}

.faq-item.open .arrow {
    transform: rotate(45deg);
}

.bot-details {
    background: #f7f7f7;
    padding: 15px;
    margin-top: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}
