/*
Theme Name: Cryptocode
Theme URI: 
Author: Moksha Design Studio
Author URI: 
Description: Cryptocode is specially designed product packaged for Cryptocode by Moksha.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Floating & Alignment
  2.3 Forms
  2.4 Lists
  2.5 Code
  2.6 Tables
  2.7 Spacing
  2.8 Utilities
  2.9 Misc
    - Row Border
    - Zoom Effect
  2.10 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns

  2.11 Section
    - Hero Section
    - Section Title
    - Section Paddings
    - Section Margins
    - Section Bg Colors
    - Content Colors
    - Content Borders

3. EXTENDED TYPOGRAPHY
  3.1 Blockquote / Pullquote
  3.2 Text Highlights

4. CONTENT ELEMENTS
  4.1 Tabs
  4.2 Accordions

5. BLOG STYLES
  5.1 Blog Single Post
  5.2 About Author
  5.3 Comments List
  5.4 Comments Form3

6. SITE STRUCTURE
  6.1 Header
    - Header Menu
    - Nav Sidebar
  6.2 Billboard
  6.3 About Us Section
  6.4 Video Section
  6.5 Selling Products Section
  6.6 Quotation Section
  6.7 Latest Blogs Section
  6.8 Newsletter Section
  6.9 Instagram Section
  6.10 Footer
    - Footer Top
    - Footer Bottom

7. OTHER PAGES

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
    /* widths for rows and containers
     */
    --header-height       : 160px;
    --header-height-min   : 80px;
}
/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
    :root {
        --header-height : 100px;
        --header-height-min   : 80px;
    }
}
/* Theme Colors */
:root {
    --accent-color       : #44E5AE;
    --dark-color         : #151515;
    --light-color        : #f2f2f2;
    --dim-light-color    : #9d9d9d;
    --primary-color      : #44E5AE;
    --secondary-color    : #74CFCA;
}

/* Fonts */
:root {
    --body-font           : "Lato", sans-serif;
    --heading-font        : "Inter", sans-serif;
}


/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* offset for sticky ticker + navbar */
  scroll-padding-top: 100px;
}
body {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  margin: 0;
  overflow-x: hidden;
}
body.no-scroll {
    overflow: hidden;
}
a {
  color: var(--dim-light-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a.light {
  color: var(--light-color);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 5px;
  margin-bottom: 0;
}
ul li, ol li {
  margin-bottom: 5px;
  outline: 0;
}
ul li.active a{
  color: var(--dark-color);
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
dl {
  margin-top: 0;
  margin-bottom: 2rem;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
}
figure {
  margin: 0;
}
img {
  display: inline-block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
::selection {
  background: var(--light-color);
  color: var(--dark-color);
  text-shadow: none;
}
::-moz-selection {
  background: var(--light-color);
  color: var(--dark-color);
  text-shadow: none;
}

/* Typography */
/*----------------------------------------------*/

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--heading-font);
  line-height: 1.2;
  letter-spacing: 2px;
}
h1.light, .h1, h2.light, .h2, h3.light, .h3, h4.light, .h4, h5.light, .h5, h6.light, .h6 {
  color: var(--light-color);
}
h1, h2, h3 {
  margin: 14px 0;
  text-transform: capitalize;
}
h5, h6 {
  letter-spacing: 1px;
}
h1, .h1 {
  font-size: 3.4em;
  line-height: 1.4;
}
h2, .h2 {
  font-size: 2.4em;
  line-height: 1.4;
}
h3, .h3 {
  font-size: 1.7em;
  line-height: 1.4;
}
h4, .h4 {
  font-size: 1.5em;
  line-height: 1.4;
}
h5, .h5 {
  font-size: 1.45em;
  line-height: 1.25;
}
h6, .h6 {
  font-size: 1.2em;
  line-height: 1.1;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}
p {
   font-size: 19px;
   line-height: 2;
   margin: 0 0 20px 0;
}
p.dark {
    color: var(--dark-color);
}
p.light {
    color: var(--light-color);
}
p:empty {
  display: none;
}
small {
  font-size: 85%;
}
mark {
  background-color: var(--grey-color);
  padding: 0.28rem;
}
dfn, cite, em, i {
  font-style: italic;
}
::placeholder {
    color: var(--dim-light-color);
}

/*----------------------------------------------*/
/* 2.1 Floating & Alignment */
/*----------------------------------------------*/
.align-left {
  float: left;
  text-align: left;
}
.align-right {
  float: right;
  text-align: right;
}
.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/**::after,*/
.container::after,
.row::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/** Text Align
--------------------------------------------------------------*/
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lead {
  font-size: 120%;
  line-height: 1.7em;
}
.text-lead strong {
  font-size: 115%;
  font-weight: 500;
}
.text-muted {
  color: var(--primary-color);
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/*------------------------------------------------
/* 2.3 Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 50px;
    padding: 6px 15px;
    background-color: var(--light-background-color);
    border: 1px solid var(--grey-color);
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box; 
  }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 130px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--grey-color);
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; 
}
fieldset {
  padding: 0;
  border-width: 0; 
}
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

/*------------------------------------------------
/* 2.4 Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }

/*------------------------------------------------
/* 2.5 Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  border-radius: 4px; 
  background-color: var(--accent-color);
  color: var(--light-color);
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: normal; 
  }

/*------------------------------------------------
/* 2.6 Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
   }
th:first-child,
td:first-child {
  padding-left: 0; 
  }
th:last-child,
td:last-child {
  padding-right: 0; 
  }

/*------------------------------------------------
/* 2.7 Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
form {
  margin-bottom: 2rem; 
}

/*------------------------------------------------
/* 2.8 Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; 
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; 
}
.u-pull-right {
  float: right; 
}
.u-pull-left {
  float: left; 
}
.list-unstyled {
  list-style: none;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize;
}
.overflow-hidden {
    overflow: hidden;
}
.hide {
    display: none !important;
}

/* position */
.position-relative {
    position: relative !important;
}

/* display flex utilities */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.justify-content-end {
  -ms-flex-pack: justify !important;
  justify-content: end !important;
}
.justify-content-center {
  -ms-flex-pack: justify !important;
  justify-content: center !important;
}
.justify-content-evenly {
  -ms-flex-pack: justify !important;
  justify-content: space-evenly !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
/* disable selction in section title */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

/*------------------------------------------------
/* 2.9 Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* -Row Border
------------------------------------------*/
hr {
  margin-top: 1.5rem;
  margin-bottom:2.5rem;
  border-width: 0;
  border-top: 1px solid rgba(83, 84, 136, 0.5); 
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
a.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
button {
  background-image: none;
  text-decoration: none !important;
  display: inline-block;
  position: relative;
  border: 2px solid transparent;
  text-transform: capitalize;
  border-radius: 0;
  padding: 0.75em 1.5em;
  margin-top: 15px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  color: var(--light-color);
  z-index: 1;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:hover,
.btn:focus,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="file"]:focus,
input[type="file"]:hover,
button:focus,
button:hover {
  text-decoration: none;
  outline: 0;
}
.light .btn:hover {
  color: var(--light-color);
}
.btn:last-child {
  margin-right: 0;
}
.btn:active,
.btn.btn-outline-light:active,
.btn.btn-outline-dark:active,
.btn.btn-outline-accent:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="file"]:active,
button:active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.6em;
}
.btn.btn-medium {
    padding: 1.5em 3.9em;
    font-size: 1.0em;
}
.btn.btn-large {
  padding: 1.5em 5.5em;
  font-size: 1.3em;
}
.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  text-align: center;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 10px;
}
.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}

/*---- Button Outline 
----------------------------------------------*/
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}
.btn.btn-outline-dark {
  border-color: rgba(0,0,0,1);
  color: var(--dark-color);
}
.btn.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-outline-accent {
  border-color: var(--accent-color);
  color: var(--light-color);
}
.btn.btn-outline-accent:hover {
  background: linear-gradient(var(--primary-color), var(--secondary-color));
  color: var(--dark-color);
}
.btn.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--light-color);
}
.btn.btn-outline-light:hover {
  border-color: rgba(0,0,0,0.5);
  color: var(--dark-color);
}
.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.btn-check:active+.btn-outline-primary, .btn-check:checked+.btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
  color: #fff;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.btn-check:active+.btn-outline-primary:focus, .btn-check:checked+.btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
  box-shadow: none;
}


/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-normal {
  color: var(--light-color);
}
.btn.btn-normal:hover {  
  color: var(--dark-color);
  background: linear-gradient(var(--primary-color), var(--secondary-color));
}
.btn.btn-accent {
  color: var(--light-color);
  background-color: var(--accent-color);
}
.btn.btn-accent:hover {
  color: var(--light-color) !important;
  background-color: var(--primary-color);
}
.btn.btn-secondary {
  background: transparent;
  color: var(--secondary-color);
}
.btn.btn-secondary:hover {
  color: var(--light-color);
}
.btn.btn-linear {
  background-color: var(--primary-color); /* For browsers that do not support gradients */
  background: linear-gradient(var(--primary-color), var(--secondary-color));
  background: linear-gradient(180deg, var(--primary-color), transparent) var(--secondary-color);

  color: var(--dark-color);
  border: none;
  transition: background-color 0.3s ease-out;
}
.btn.btn-linear:hover {
  background-color: #1d9fba;
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left{
  text-align: left;
  display: block;
}
.btn-center{
  text-align: center;
  display: block;
}
.btn-right{
  text-align: right;
  display: block;
}

/*----------------------------------------------*/
/* 2.11 Section */
/*-----------------------------------------------------------*/

/*--- Section Title
-----------------------------------------------*/
.section-header {
    padding-bottom: 24px;
    margin: 0 auto;
}
.section-title h2 {
    font-size: 4.1em;
    font-weight: 700;
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}
.padding-large {
  padding-top: 5em;
  padding-bottom: 5em;
}
.padding-xlarge {
  padding-top: 7em;
  padding-bottom: 7em;
}

/* no padding */
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-gutter {
  padding: 0 !important;
}

/* no padding and margin */
.no-padding {
  padding: 0;
}
.no-margin {
  margin: 0;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-medium {
  margin-top: 4.5em;
  margin-bottom: 4.5em;
}
.margin-large {
  margin-top: 6em;
  margin-bottom: 6em;
}
.margin-xlarge {
  margin-top: 7.5em;
  margin-bottom: 7.5em;
}

@media only screen and (max-width: 768px) {
  .margin-small,
  .margin-medium,
  .margin-large,
  .margin-xlarge {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* - Section Bg Colors
--------------------------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}
.bg-accent {
  background-color: var(--accent-color) !important;
}
.bg-dark {
  background-color: var(--dark-color) !important;
}
.bg-blue-trans {
  background: rgba(134, 155, 223, 0.14) !important;
  border: 2px solid rgba(83, 84, 136, 0.4);
}

/* - Content Colors
--------------------------------------------------------------*/

/* - Content Border
--------------------------------------------------------------*/
table.border-bottom tr {
    border-bottom: 1px solid rgba(0,0,0,0.125);
}
.content-light table.border-bottom tr {
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.border-top {
   border-top: 1px solid rgba(0,0,0,0.125);
}
.border-right {
   border-right: 1px solid rgba(0,0,0,0.125);
}
.border-bottom {
   border-bottom: 1px solid rgba(0,0,0,0.125);
}
.border-left {
   border-left: 1px solid rgba(0,0,0,0.125);
}
.border-set-thin {
    border: 2px solid rgba(197, 229, 228, 0.2);
}
.border-set-bold {
    border: 6px solid rgba(197, 229, 228, 0.2);
}
.border-rounded-10 {
   border-radius: 10px;
}
.border-rounded-20 {
   border-radius: 20px;
}
.border-rounded-50 {
   border-radius: 50px;
}
.border-rounded-circle {
   border-radius: 50%;
}

/* - Content Border None
--------------------------------------------------------------*/
.no-border-top {
   border-top: none !important;
}
.no-border-right {
   border-right: none !important;
}
.no-border-bottom {
   border-bottom: none !important;
}
.no-border-left {
   border-left: none !important;
}

/*====================================================================*/
/* 3. EXTENDED TYPOGRAPHY */
/*====================================================================*/
/*----------------------------------------------*/
/* 3.1 Blockquote /Pullquote */
/*----------------------------------------------*/
.single-post .content p:first-child, 
.quote blockquote, blockquote, 
.single-post .content blockquote p, 
.pullquote-right, 
.pullquote-left {
    font-family: var(--heading-font);
    font-size: 1.5em;
    line-height: 1.4em;
    font-weight: 500;
    letter-spacing: 2px;
    font-style: normal;
    margin: 0 0 20px;
    padding: 20px 40px;
    border-left: 1px solid var(--primary-color);
}
.pullquote-right, .pullquote-left {
  width: 40%;
} 
blockquote cite {
  display: block;
  font-size: 0.8em;
  margin-top: 20px;
  font-style: italic;
}
.pullquote-left {
  float: left;
  margin: 20px 20px 20px 0;
} 
.pullquote-right {
  float: right;
  margin: 20px 0 20px 20px;
}
  
/*----------------------------------------------*/
/* 3.2 Text Highlights */
/*----------------------------------------------*/
.highlight {
  background: var(--primary-color);
  color: var(--light-color);
  padding: 1px 5px;
}

/*====================================================================*/
/* 4. CONTENT ELEMENTS */
/*====================================================================*/

/*--------------------------------------------------------------
/** 4.1 General Tabs
--------------------------------------------------------------*/


/*--------------------------------------------------------------
/** 4.3 Images and Text Style
--------------------------------------------------------------*/

/* Text Style
------------------------------------------*/
.text-linear {
  background: linear-gradient(297deg, var(--primary-color), var(--secondary-color));
  background: -webkit-linear-gradient(297deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*====================================================================*/
/* 5. BLOG STYLES */
/*====================================================================*/

/* 5.1 Blog Single Post
------------------------------------------*/
/* breadcrumbs */
.breadcrumbs span {
  display: inline-block;
}

/* 5.2 About Author
------------------------------------------*/
.author-post {
  padding-left: 30px;
}
.author-post h4 {
  margin: 0;
  font-weight: 700;
  text-transform: none;
}

/* 5.3 Comments List
------------------------------------------*/
.comment-list .comment-item {
    display: flex;
}
.comment-item .comment-meta {
    display: flex;
    align-items: baseline;
}
.comment-meta span.meta-date {
    font-size: 13px;
    padding-right: 50px;
}
.comments-wrap .child-comments {
  padding-left: 50px;
}

/* 5.4 Comments Form
------------------------------------------*/
.comment-respond .comment-form {
  display: flex;
}

/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/

/* 6.1 Header
--------------------------------------------------------------*/
@media (min-width: 992px) {
  nav.navbar .container-fluid {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* - Site Logo
--------------------------------------------------------------*/
a.site-logo {
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    line-height: 1;
}
.logo-icon {
    height: 44px;
    width: auto;
}
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}
.logo-kraken {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}
.logo-sub {
    font-family: var(--heading-font);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}
a.site-logo:hover .logo-kraken {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}


/* - Top Left Login
--------------------------------------------------------------*/
.btn-wrap .btn {
  margin: 0;
}
.btn-wrap a.login-btn {
    margin-right: 20px;
}

/* - Language Bar
--------------------------------------------------------------*/
#lang-bar {
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(68, 229, 174, 0.12);
}

#lang-bar-inner {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ── Dropdown wrapper ───────────────────────────────────── */
.lang-dropdown {
  position: relative;
  box-sizing: border-box;
}

/* Trigger button */
.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.lang-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.lang-btn-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-btn-name {
  font-size: 0.82rem;
}

.lang-dropdown-chevron {
  font-size: 0.55rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.lang-dropdown.open .lang-dropdown-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown panel ─────────────────────────────────────── */
.lang-dropdown-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 9999;
  box-sizing: border-box;
  background: #1e1e30;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  width: 240px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.lang-dropdown.open .lang-dropdown-panel {
  display: block;
}

/* ── Language list ──────────────────────────────────────── */
.lang-links {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap;
  padding: 6px;
  width: 100%;
  box-sizing: border-box;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.lang-links::-webkit-scrollbar { width: 4px; }
.lang-links::-webkit-scrollbar-track { background: transparent; }
.lang-links::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }

.lang-link {
  display: flex !important;
  align-items: center;
  gap: 11px;
  width: 100%;
  box-sizing: border-box;
  padding: 9px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.lang-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.lang-link.active {
  background: rgba(68, 229, 174, 0.1);
  color: #fff;
  font-weight: 600;
}

.lang-flag {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.lang-name {
  flex: 1;
}

.lang-check {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: auto;
}

/* ── Mobile adjustments ─────────────────────────────────── */
@media (max-width: 991px) {
  #lang-bar-inner {
    padding: 6px 1rem;
  }

  .lang-dropdown-panel {
    right: 0;
    width: 220px;
  }
}

/* - Header Menu
--------------------------------------------------------------*/
.main-menu li.menu-item {
    padding: 10px 20px;
}

.main-menu li.menu-item a {
    color: #ffffff;
}

.main-menu li.menu-item a:hover,
.main-menu li.menu-item a.active {
    color: var(--secondary-color);
}

/* dropdown */
.dropdown-item.active, .dropdown-item:active {
  color: var(--dark-color);
  text-decoration: none;
  background-color: var(--dim-light-color);
}

/* offcanvas */
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: var(--dark-color);
  background-clip: padding-box;
  outline: 0;
  transition: transform .3s ease-in-out;
}

iconify-icon.hamburger-menu{
  font-size: 2rem;
  color: var(--primary-color);
}

/* modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}



/* 6.2 Billboard
--------------------------------------------------------------*/
#billboard .image-holder {
    padding: 40px;
}
#billboard .banner-title {
    color: var(--light-color);
}
#billboard .banner-content p {
    width: 90%;
    font-size: 1.3em;
    line-height: 2;
}

/* 6.3 Association With — marquee
--------------------------------------------------------------*/
#association-with {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}
.marquee-track {
    overflow: hidden;
    width: 100%;
}
.marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}
.marquee-inner:hover {
    animation-play-state: paused;
}
.marquee-group {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}
.image-association {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}
.image-association:hover {
    opacity: 1;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* 6.4 Collection NFT Card
--------------------------------------------------------------*/
#product-card .product-item {
    padding: 32px 20px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
#product-card .icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
}
#product-card i.icon {
    font-size: 2.6em;
    color: var(--primary-color);
}
#product-card iconify-icon.crypto-icon {
    font-size: 2.6em;
    color: var(--primary-color);
}
#product-card .product-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
}
#product-card .product-detail h3.card-title {
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}
#product-card .product-detail .currency {
    font-size: 1.05em;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
}
#product-card .card-change {
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-height: 1em;
}
#product-card .btn-card {
    margin-top: 12px;
    width: 100%;
}
.btn.btn-sm-card {
    padding: 0.55em 1.4em;
    font-size: 0.75em;
    width: 100%;
}
.pattern-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* 6.5 Track Earning
--------------------------------------------------------------*/

/* 6.6 Subscribe
--------------------------------------------------------------*/
.subscribe-content form#form {
    max-width: 820px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
}
.subscribe-content input {
    flex: 1;
    min-width: 0;
    font-size: 1.6em;
    font-style: italic;
    padding-left: 40px;
    color: var(--dim-light-color);
}

/* 6.7 Footer
--------------------------------------------------------------*/

/*  Footer Top
--------------------------------------------------------------*/
#footer .footer-item.item-001 {
    margin-right: 140px;
}
#footer .footer-item.item-001 p {
    margin: 20px 0;
}
.footer-item h4.widget-title {
    font-size: 1.9em;
    font-weight: 400;
    margin-bottom: 25px;
}
.footer-item ul.footer-menu a {
    color: var(--dim-light-color);
    font-weight: 600;
    letter-spacing: 2px;
}
.footer-item ul.footer-menu a:hover {
    color: var(--light-color);
}
#footer .footer-item .social-links li {
    margin: 2px;
}
#footer .footer-item .social-links a {
    color: var(--light-color);
    text-align: center;
    display: inline-block;
    padding: 6px 10px;
}
#footer .footer-item .social-links a:hover  {
    color: var(--dark-color);
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

/* Footer Bottom
--------------------------------------------------------------*/
#footer-bottom a {
    font-weight: 700;
}

/* Comment section */
.commentorImg {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  border-radius: 50%;
}


/* Bootstrap theme override 
--------------------------------------------------------------*/
@media (min-width: 1400px){
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1440px;
  }
}

.nav-link {
    color: #9099a7;
}
.nav-link:hover {
    color: #111;
}
.tab-content {
    padding: 20px 0;
}


/* primary button */
.btn-link,
.link-primary {
    color: #44E5AE;
}
.btn-link:focus, .btn-link:hover,
.link-primary:focus, .link-primary:hover {
    color: #74CFCA;
}
.btn-primary {
    background-color: #44E5AE;
    border-color: #44E5AE;
}
.btn-primary:hover {
    color: #fff;
    background-color: #74CFCA;
    border-color: #74CFCA;
}
.border-primary {
    border-color: #44E5AE !important;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #44E5AE !important;
}
.text-white .border-top {
    border-top: 1px solid #3b3e42!important;
}
.text-white p {
  color: var(--dim-light-color)
}
.display-3,
.display-5,
.display-6 {
  font-weight: 700;
}
.display-3 {
  font-size: 4rem !important;
}
.display-5 {
  font-size: 2.6rem !important;
}
.display-6 {
  font-size: 2rem !important;
}


/*--------------------------------------------------------------
contact page style start
--------------------------------------------------------------*/
iconify-icon .social-icon{
  color: var(--light-color);
}



/*--------------------------------------------------------------
FAQs page style start
--------------------------------------------------------------*/
.accordion-item {
  background-color: transparent;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  margin: 0px;
  font-size: 1rem;
  color: #ffffff;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}

.accordion-button:focus {
  border-color: #e5e6e7;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background-color: transparent;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url('https://api.iconify.design/iconamoon/arrow-down-2-fill.svg?color=white');
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: url('https://api.iconify.design/iconamoon/arrow-down-2-fill.svg?color=white');
  transform: rotate(-180deg);
}


/*--------------------------------------------------------------
support page style start
--------------------------------------------------------------*/
textarea.form-control {
  min-height: calc(2em + 7rem + 2px);
}


/*--------------------------------------------------------------
services page style start
--------------------------------------------------------------*/
iconify-icon.services{
  font-size: 5rem;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
Back to top button
--------------------------------------------------------------*/
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 3000;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-color);
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(68, 229, 174, 0.35);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  box-shadow: 0 6px 22px rgba(68, 229, 174, 0.55);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
Offcanvas z-index — must sit above the sticky ticker (z-index: 2000)
--------------------------------------------------------------*/
.offcanvas {
  z-index: 2100 !important;
}
.offcanvas-backdrop {
  z-index: 2050 !important;
}

/*--------------------------------------------------------------
Offcanvas close button
--------------------------------------------------------------*/
.offcanvas-close-btn {
  background: none;
  border: none;
  color: var(--light-color);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.offcanvas-close-btn:hover,
.offcanvas-close-btn:focus {
  opacity: 1;
  color: var(--primary-color);
  outline: none;
}

/*--------------------------------------------------------------
Offcanvas — "More" dropdown expands inline on mobile only (< lg breakpoint)
--------------------------------------------------------------*/
@media (max-width: 991px) {
  #offcanvasNavbar .dropdown-menu {
    position: static !important;
    width: 100%;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
    border-radius: 0;
    display: none;
  }
  #offcanvasNavbar .dropdown-menu.show {
    display: block !important;
  }
  #offcanvasNavbar .dropdown-menu .dropdown-item {
    color: var(--dim-light-color) !important;
    padding: 0.5rem 1.5rem;
    font-size: 0.85em;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: transparent !important;
  }
  #offcanvasNavbar .dropdown-menu .dropdown-item:hover,
  #offcanvasNavbar .dropdown-menu .dropdown-item:focus {
    color: var(--primary-color) !important;
    background: rgba(68,229,174,0.06) !important;
  }
  #offcanvasNavbar .menu-item.dropdown > .dropdown-menu {
    padding-left: 0.5rem;
    border-left: 2px solid rgba(68,229,174,0.25);
    margin-left: 1rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
Crypto Ticker
--------------------------------------------------------------*/
#crypto-ticker {
    position: sticky;
    top: 0;
    z-index: 2000;
    background-color: #0d0d0d;
    border-bottom: 1px solid rgba(68, 229, 174, 0.2);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}
.ticker-track {
    overflow: hidden;
    width: 100%;
}
.ticker-inner {
    display: flex;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
    align-items: center;
}
.ticker-inner:hover {
    animation-play-state: paused;
}
.ticker-group {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 8px;
    font-size: 0.75rem;
    font-family: var(--heading-font);
    font-weight: 500;
}
.ticker-icon {
    color: var(--primary-color);
    font-size: 0.8rem;
}
.ticker-symbol {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.ticker-price {
    color: var(--dim-light-color);
}
.tick-up {
    color: #44E5AE;
    font-weight: 600;
}
.tick-down {
    color: #e55444;
    font-weight: 600;
}
.ticker-sep {
    color: rgba(255,255,255,0.1);
    font-size: 0.7rem;
    padding: 0 2px;
}
.ticker-loading {
    font-size: 0.75rem;
    color: var(--dim-light-color);
    padding: 0 20px;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
Responsive styles
--------------------------------------------------------------*/

/* Tablet (≤ 992px) */
@media only screen and (max-width: 992px) {
  #billboard .banner-content {
    margin: 2rem 1rem !important;
  }
  #billboard .banner-content p {
    font-size: 1.2em;
  }
  #product-card .product-item {
    padding: 28px 16px 20px;
  }
  .subscribe-content input {
    font-size: 1.2em;
  }
  #footer .footer-item.item-001 {
    margin-right: 60px;
  }
}

/* Mobile (≤ 768px) */
@media only screen and (max-width: 768px) {
  /* Give the container real breathing room on mobile */
  .container,
  .container-sm,
  .container-md {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  /* Prevent row gutters from creating negative-margin overflow */
  .row {
    --bs-gutter-x: 1rem;
  }

  /* Section spacing */
  .padding-large {
    padding-top: 2.8em;
    padding-bottom: 2.8em;
  }
  .padding-medium {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  /* Buttons — never overflow their container */
  .btn {
    white-space: normal !important;
    word-break: break-word;
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn.btn-large {
    padding: 1em 2em !important;
    font-size: 1.05em;
    width: 100%;
    display: block;
  }
  .btn.btn-medium {
    padding: 1em 2em !important;
    font-size: 0.95em;
  }

  /* Reduce heavy p-5 padding on cards/boxes to p-3 equivalent */
  .rating-box.p-5,
  .snippet-box.p-5 {
    padding: 1.5rem !important;
  }
  #final-verdict .bg-blue-trans.p-5 {
    padding: 2rem 1.25rem !important;
  }
  #subscribe .subscribe-content .p-5 {
    padding: 1.5rem !important;
  }

  /* Billboard */
  #billboard .banner-title {
    font-size: 1.9rem !important;
    margin-bottom: 1.5rem !important;
  }
  #billboard .image-holder {
    padding: 16px;
    text-align: center;
  }
  #billboard .banner-content {
    margin: 1rem 0 !important;
    text-align: center;
    padding: 0 !important;
  }
  #billboard .banner-content p {
    width: 100%;
    font-size: 1em;
  }
  #billboard .btn-wrap {
    display: flex;
    justify-content: center;
  }

  /* Rating box — stack score above details */
  #overall-rating .rating-box .row {
    flex-direction: column;
    align-items: center !important;
  }
  #overall-rating .rating-details {
    padding-left: 0 !important;
    text-align: center;
  }
  #overall-rating .rating-details .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Stat highlights in snippet section */
  .stat-highlight {
    padding: 0.75rem !important;
  }

  /* Step items — reduce gap */
  .step-item {
    gap: 1rem !important;
  }

  /* Security checklist — prevent icon/text overflow */
  .security-icon {
    font-size: 1.1rem;
    margin-top: 4px;
  }

  /* Mobile feature mini-cards: icon left, text right */
  .mobile-feature {
    padding: 0.75rem !important;
    column-gap: 0.75rem;
  }

  /* Feedback tips */
  .feedback-tip {
    padding: 0.75rem !important;
  }

  /* User type cards */
  .user-type-card {
    padding: 1.25rem !important;
  }

  /* Pros/cons boxes */
  .pros-box,
  .cons-box {
    padding: 1.25rem !important;
  }

  /* Inner content padding */
  .inner-content {
    padding: 1rem !important;
  }

  /* Subscribe form */
  .subscribe-content form#form {
    margin: 20px auto;
    padding: 16px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .subscribe-content input {
    font-size: 1em;
  }
  .subscribe-content form#form .btn {
    width: 100%;
  }

  /* Footer */
  #footer .footer-item.item-001 {
    margin-right: 0;
  }
  #footer .footer-item {
    margin-bottom: 2rem;
  }

  /* Navbar login/register buttons stack properly */
  .btn-wrap {
    flex-direction: column;
    width: 100%;
  }
  .btn-wrap a.login-btn {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .btn-wrap .btn {
    width: 100%;
    text-align: center;
  }

  /* Section headers */
  .section-header {
    padding-bottom: 16px;
  }

  /* Accordion — prevent overflow on mobile */
  .accordion-item {
    overflow: hidden;
  }
  .accordion-button {
    font-size: 0.9em;
    padding: 0.85rem 2.75rem 0.85rem 1rem;
    word-break: break-word;
    white-space: normal;
    line-height: 1.5;
  }
  .accordion-button::after {
    position: absolute;
    right: 1rem;
    flex-shrink: 0;
  }
  .accordion-body {
    padding: 0.75rem 1rem 1rem;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 0.9em;
    line-height: 1.7;
  }

  /* Review quotes */
  .review-quote {
    padding: 1rem 1.25rem;
  }

  /* Comparison table — constrain kraken-header-label */
  .kraken-header-label {
    gap: 4px;
  }
  .kraken-badge {
    font-size: 0.6em;
  }
}

/*--------------------------------------------------------------
Review Article Styles
--------------------------------------------------------------*/

/* Overall Rating Box */
.rating-box {
  background: rgba(68, 229, 174, 0.04);
}
.rating-stars {
  font-size: 1.6rem;
  color: var(--primary-color);
  letter-spacing: 4px;
  line-height: 1;
}
.score-out {
  font-size: 1.2rem;
  color: var(--dim-light-color);
  font-family: var(--heading-font);
  font-weight: 600;
  margin-top: 4px;
}
.rating-label {
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dim-light-color);
  margin: 8px 0 0;
}

/* Stat highlights */
.stat-highlight {
  background: rgba(134, 155, 223, 0.06);
}
.stat-label {
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dim-light-color);
  display: block;
  margin-top: 4px;
}

/* Pros / Cons */
.pros-icon {
  color: var(--accent-color);
  font-size: 1.1em;
  font-weight: 800;
  line-height: 1.7;
  min-width: 18px;
  text-align: center;
}
.cons-icon {
  color: #e55444;
  font-size: 1.1em;
  font-weight: 800;
  line-height: 1.7;
  min-width: 18px;
  text-align: center;
}
.cons-title {
  color: #e55444;
}
.pros-box {
  background: rgba(68, 229, 174, 0.03);
}
.cons-box {
  background: rgba(229, 84, 68, 0.03);
}

/* Feature cards */
.feature-card {
  background: rgba(134, 155, 223, 0.05);
  transition: background 0.3s ease, transform 0.2s ease;
  text-align: center;
}
.feature-card:hover {
  background: rgba(68, 229, 174, 0.08);
  transform: translateY(-3px);
}
iconify-icon.feature-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fee calc boxes */
.fee-calc {
  background: rgba(134, 155, 223, 0.06);
  transition: background 0.2s ease;
}
.fee-calc:hover {
  background: rgba(68, 229, 174, 0.1);
}

/* Security section */
iconify-icon.security-icon {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-top: 2px;
}
.security-callout {
  background: rgba(68, 229, 174, 0.05);
}

/* Trading cards */
.trading-card {
  background: rgba(134, 155, 223, 0.05);
  transition: background 0.3s ease;
}
.trading-card:hover {
  background: rgba(68, 229, 174, 0.07);
}

/* Funding section */
iconify-icon.funding-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.funding-card {
  background: rgba(134, 155, 223, 0.05);
  text-align: center;
}

/* Step paragraph text */
.step-p {
  font-size: 1.15em;
}

/* Step items */
.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1em;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

/* Mobile feature cards */
.mobile-feature {
  background: rgba(134, 155, 223, 0.06);
  transition: background 0.2s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  align-items: center;
}
.mobile-feature:hover {
  background: rgba(68, 229, 174, 0.08);
}
/* Icon always sits in column 1, spanning all text rows */
.mobile-feature > :first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  flex-shrink: 0;
}
/* Title row */
.mobile-feature > :nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  word-break: break-word;
}
/* Subtitle row (lang files) or text wrapper (root) */
.mobile-feature > :nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  word-break: break-word;
}
/* Text wrapper used in root index.html */
.mobile-feature-text {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
  word-break: break-word;
}

/* Support tips */
.tip-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8em;
  font-family: var(--heading-font);
  margin-top: 2px;
}

/* Review quotes / testimonials */
.review-quote {
  border-left: 3px solid var(--primary-color);
  padding: 1.5rem 2rem;
  background: rgba(68, 229, 174, 0.04);
  border-radius: 0 12px 12px 0;
  font-family: var(--heading-font);
  font-size: 0.95em;
  line-height: 1.8;
  margin: 0;
}
.review-quote.review-negative {
  border-left-color: #e55444;
  background: rgba(229, 84, 68, 0.04);
}
.review-quote p {
  font-size: 1em;
  margin-bottom: 0.5rem;
}
.review-quote cite {
  font-size: 0.82em;
  color: var(--dim-light-color);
  display: block;
  font-style: italic;
}

/* Feedback tips */
.feedback-tip {
  background: rgba(134, 155, 223, 0.06);
}
iconify-icon.feedback-icon {
  font-size: 2rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* User type cards */
.user-type-card {
  background: rgba(134, 155, 223, 0.05);
  transition: background 0.3s ease, transform 0.2s ease;
}
.user-type-card:hover {
  background: rgba(68, 229, 174, 0.08);
  transform: translateY(-3px);
}
iconify-icon.user-type-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   TABLE SYSTEM
   ============================================================ */

/* Wrapper: rounded corners + subtle accent border */
.table-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(68, 229, 174, 0.18);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
}

/* Reset Bootstrap table-dark defaults */
.table-dark {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: transparent;
  --bs-table-border-color: transparent;
  color: #ffffff;
  margin-bottom: 0;
  border-collapse: collapse;
  width: 100%;
}

/* Header */
.table-dark thead tr {
  background: linear-gradient(135deg, rgba(68, 229, 174, 0.18), rgba(116, 207, 202, 0.1));
  border-bottom: 1px solid rgba(68, 229, 174, 0.3);
}
.table-dark th {
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 16px 20px;
  white-space: nowrap;
  background: transparent !important;
  border: none !important;
}

/* Body rows */
.table-dark tbody tr {
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid rgba(197, 229, 228, 0.07);
  transition: background 0.15s ease;
}
.table-dark tbody tr:last-child {
  border-bottom: none;
}
.table-dark tbody tr:nth-child(even) {
  background: rgba(134, 155, 223, 0.05);
}
.table-dark tbody tr:hover {
  background: rgba(68, 229, 174, 0.09) !important;
}

/* Cells */
.table-dark td {
  padding: 14px 20px;
  vertical-align: middle;
  border: none !important;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* First column: label style */
.table-dark td:first-child {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.88em;
}

/* Highlighted first row (fees table standard tier) */
.table-dark tbody tr.standard-tier {
  background: rgba(68, 229, 174, 0.07) !important;
}
.table-dark tbody tr.standard-tier td:first-child::after {
  content: "Standard";
  display: inline-block;
  margin-left: 8px;
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-color);
  background: var(--primary-color);
  padding: 1px 7px;
  border-radius: 4px;
  vertical-align: middle;
}

/* Kraken column highlight (comparison table) */
.table-dark thead .kraken-col {
  background: rgba(68, 229, 174, 0.22) !important;
  border-left: 2px solid rgba(68, 229, 174, 0.5) !important;
  border-right: 2px solid rgba(68, 229, 174, 0.5) !important;
}
.table-dark tbody td.kraken-col {
  background: rgba(68, 229, 174, 0.06) !important;
  border-left: 2px solid rgba(68, 229, 174, 0.25) !important;
  border-right: 2px solid rgba(68, 229, 174, 0.25) !important;
}
.table-dark tbody tr:last-child td.kraken-col {
  border-bottom: 2px solid rgba(68, 229, 174, 0.25) !important;
}
.table-dark tbody tr:hover td.kraken-col {
  background: rgba(68, 229, 174, 0.14) !important;
}

/* Kraken recommended badge in header */
.kraken-header-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.kraken-badge {
  display: inline-block;
  font-size: 0.65em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 2px 9px;
  border-radius: 20px;
  font-family: var(--heading-font);
  -webkit-text-fill-color: var(--dark-color);
}

/* Support channel icons */
.channel-icon {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-right: 7px;
  vertical-align: middle;
}

/* 24/7 availability badge */
.availability-badge {
  display: inline-block;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(68, 229, 174, 0.1);
  border: 1px solid rgba(68, 229, 174, 0.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-family: var(--heading-font);
  white-space: nowrap;
}

/* Accordion override for dark bg */
.accordion-body {
  background: rgba(134, 155, 223, 0.04);
  padding: 1rem 1.5rem 1.5rem;
  font-size: 0.95em;
  line-height: 1.9;
}

/* Tables → Cards on mobile (≤ 768px) */
@media only screen and (max-width: 768px) {
  /* Unwrap the outer container so cards flow naturally */
  .table-wrapper {
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: visible;
    background: transparent;
  }

  table > :not(:first-child) {
    border-top: none;
  }

  /* Hide column headers */
  .table-wrapper .table-dark thead {
    display: none;
  }

  /* Each row becomes a card */
  .table-wrapper .table-dark tbody tr {
    display: block;
    background: rgba(134, 155, 223, 0.07) !important;
    border: 1px solid rgba(68, 229, 174, 0.2);
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
  }
  .table-wrapper .table-dark tbody tr:last-child {
    margin-bottom: 0;
  }
  .table-wrapper .table-dark tbody tr:hover {
    background: rgba(68, 229, 174, 0.1) !important;
  }
  .table-wrapper .table-dark tbody tr.standard-tier {
    border-color: rgba(68, 229, 174, 0.45) !important;
  }

  /* Each cell as a labelled row */
  .table-wrapper .table-dark tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(197, 229, 228, 0.08) !important;
    border-left: none !important;
    border-right: none !important;
    text-align: right !important;
    font-size: 0.92em;
    line-height: 1.4;
  }
  .table-wrapper .table-dark tbody tr td:last-child {
    border-bottom: none !important;
  }

  /* Label injected via data-label */
  .table-wrapper .table-dark tbody td::before {
    content: attr(data-label);
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--heading-font);
    text-align: left;
    flex-shrink: 0;
    margin-right: 14px;
    white-space: nowrap;
  }

  /* First cell = card title row, no label prefix */
  .table-wrapper .table-dark tbody td:first-child {
    background: rgba(68, 229, 174, 0.1);
    font-weight: 700;
    font-size: 0.95em;
    justify-content: flex-start;
    text-align: left !important;
    gap: 8px;
  }
  .table-wrapper .table-dark tbody td:first-child::before {
    display: none;
  }

  /* Kraken column on mobile — strip left/right borders, keep tint */
  .table-wrapper .table-dark tbody td.kraken-col {
    background: rgba(68, 229, 174, 0.08) !important;
    border-left: none !important;
    border-right: none !important;
  }
}

/* Small mobile (≤ 576px) */
@media only screen and (max-width: 576px) {
  /* Slightly tighter on very small screens but still breathable */
  .container,
  .container-sm {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .padding-large {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .padding-medium {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  /* Headings */
  h1, .h1 { font-size: 2em; }
  h2, .h2 { font-size: 1.6em; }
  h3, .h3 { font-size: 1.3em; }
  h4, .h4 { font-size: 1.1em; }
  h5, .h5 { font-size: 1em; }
  .display-3 { font-size: 1.9rem !important; }
  .display-5 { font-size: 1.5rem !important; }
  .display-6 { font-size: 1.2rem !important; }

  /* Body text */
  p { font-size: 16px; }
  .step-p { font-size: 1em; }

  /* Buttons */
  .btn {
    white-space: normal !important;
    word-break: break-word;
  }
  .btn.btn-large,
  .btn.btn-medium {
    padding: 0.9em 1.5em !important;
    font-size: 0.9em;
    width: 100%;
    display: block;
  }

  /* Navbar */
  nav.navbar {
    padding: 1rem !important;
  }
  .btn-wrap .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    text-align: center;
    margin-right: 0 !important;
  }

  /* Rating box score */
  .score-number { font-size: 2.5rem !important; }
  .rating-stars { font-size: 1.2rem; }

  /* Remove heavy padding on all bordered boxes */
  [class*="border-rounded-20"].p-4,
  [class*="border-rounded-20"].p-5 {
    padding: 1rem !important;
  }
  [class*="border-rounded-10"].p-4 {
    padding: 0.75rem !important;
  }

  /* Step items */
  .step-item { gap: 0.75rem !important; }
  .step-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 0.95em;
  }

  /* Feature cards */
  .feature-card { padding: 1rem !important; }

  /* Pros/cons */
  .pros-box, .cons-box { padding: 1rem !important; }

  /* Section header */
  .section-header { padding-bottom: 12px; }

  /* Review quotes */
  .review-quote { padding: 0.9rem 1rem; }
  .review-quote p { font-size: 0.9em; }

  /* Subscribe */
  .subscribe-content input { font-size: 0.9em; }

  /* Footer */
  #footer-bottom p { font-size: 0.8em; }

  /* Remove Bootstrap table section border on mobile */
  .table > :not(:first-child) { border-top: none; }

}
