/*
Theme Name: NextGen NFT
Theme URI: https://mokshastudio.com/
Author: Moksha Design Studio
Author URI: https://mokshastudio.com/
Description: Gem Stone is specially designed product packaged for NextGen NFT by Moksha.
Version: 1.1
*/

/*------------------------------------*\
    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 - 基于logo的极光渐变色彩 */
:root {
  --accent-color: #F0F0F0;
  --dark-color: #04040C;
  --light-color: #f2f2f2;
  --dim-light-color: rgba(240, 240, 240, 0.7);
  
  /* 主要渐变色彩 - 基于logo的紫色极光主题 */
  --primary-color: #6B46C1; /* 深紫色 */
  --secondary-color: #A855F7; /* 亮紫色 */
  --tertiary-color: #3B82F6; /* 电蓝色 */
  --quaternary-color: #06B6D4; /* 青色 */
  
  /* 渐变组合 */
  --aurora-gradient: linear-gradient(135deg, #6B46C1 0%, #A855F7 25%, #8B5CF6 50%, #3B82F6 75%, #06B6D4 100%);
  --aurora-gradient-vertical: linear-gradient(180deg, #6B46C1 0%, #A855F7 25%, #8B5CF6 50%, #3B82F6 75%, #06B6D4 100%);
  --aurora-gradient-radial: radial-gradient(circle, #A855F7 0%, #6B46C1 30%, #3B82F6 60%, #06B6D4 100%);
  --aurora-gradient-diagonal: linear-gradient(45deg, #8B5CF6 0%, #A855F7 25%, #6B46C1 50%, #3B82F6 75%, #06B6D4 100%);
  
  /* 星空纹理色彩 */
  --starfield-bg: #1E1B4B; /* 深蓝紫色背景 */
  --star-color: #E0E7FF; /* 白色星点 */
  --star-color-bright: #FFFFFF; /* 明亮星光 */
  
  /* 兼容性色彩 */
  --blue-color: #3B82F6;
  --swiper-pagination: #D9D8E2;
}

/* Fonts */
:root {
  --body-font: "Montserrat", sans-serif;
  --heading-font: "Montserrat", 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;
}

body {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: var(--accent-color);
  margin: 0;
  background-image: url('images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--accent-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);
  color: var(--dark-color);
  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: 25px 0; */
  text-transform: capitalize;
}

h5,
h6 {
  letter-spacing: 1px;
}

h1,
.h1 {
  font-size: 3em;
  line-height: 1.4;
}

h2,
.h2 {
  font-size: 2em;
  line-height: 1.4;
}

h3,
.h3 {
  font-size: 1.4em;
  line-height: 1.4;
}

h4,
.h4 {
  font-size: 1.1em;
  line-height: 1.4;
}

h5,
.h5 {
  font-size: .83em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: .67em;
  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: 14px;
  line-height: 2;
  /* margin: 0 0 20px 0; */
}

p.dark {
  color: var(--dark-color);
}

p.light {
  color: var(--light-color);
}

p.dim-light {
  color: var(--dim-light-color);
}

p.grey {
  color: var(--grey-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(--grey-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;
  margin: 0 auto;
}

.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: #e8edf1 !important;
}

.text-light {
  color: #ffffff !important;
}
.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;
}

.form-control {
  color:  var(--accent-color);
}

.form-control:focus {
  color: var(--accent-color);
  border-color: rgba(120, 121, 182, 0.4);
  box-shadow: none;
}

.placeholder-color::placeholder {
  color: rgba(240, 240, 240, 0.70);}


/* 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;
}

.text-capitalize {
  text-transform: capitalize;
}

.overflow-hidden {
  overflow: hidden;
}

.hide {
  display: none !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 {
  stroke-width: 2px;
  stroke: rgba(83, 84, 136, 0.30);
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
a.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
button {
  background-image: none;
  background: var(--dark-color);
  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: 500;
  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;
}


/* form dark style */
[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url('https://api.iconify.design/ion/caret-down.svg?color=white');
  background-color: rgba(134, 155, 223, 0.14);
  border: 2px solid rgba(83, 84, 136, 0.4);
}

.option-item{
  color: var(--dark-color);
}



/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.6em;
}

.btn.btn-medium {
  padding: 0.9em 2.6em;
  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(--accent-color);
}

.btn.btn-outline-accent:hover {
  background: var(--accent-color);
  color: var(--light-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.btn-outline-primary {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--dark-color);
}

.btn.btn-outline-primary:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}

.btn.btn-outline-linear {
  border-width: 1px;
  /* border-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)) 1; */
}

.btn.btn-outline-linear:hover {
  background: linear-gradient(var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.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);
  /* 使用新的极光渐变 */
  background: var(--aurora-gradient);
  color: var(--light-color);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn.btn-linear::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--aurora-gradient-diagonal);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn.btn-linear:hover {
  background: var(--aurora-gradient-diagonal);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.btn.btn-linear:hover::before {
  left: 0;
}

/* - 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: 35px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.9em;
  font-weight: 900;
  line-height: 4.235rem;
  letter-spacing: 0.105rem;
}

h3.block-title {
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--light-color);
  color: #F2F2F2;
  letter-spacing: 0.04125rem;
}

.section-header p {
  width: 100%;
  margin: 0 auto;
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}

.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}

.padding-large {
  padding-top: 7em;
  padding-bottom: 5em;
}

.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}

/* 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:#222222 !important;
  color: var(--light-color);
  /* overflow:scroll; */
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.bg-dark {
  background-color: transparent !important;
}

.bg-blue-trans {
  background: rgba(134, 155, 223, 0.14) !important;
  border: 2px solid rgba(83, 84, 136, 0.4);
}

/* - Content Colors
--------------------------------------------------------------*/
.content-light h1,
.content-light h2,
.content-light h3,
.content-light h4,
.content-light h5,
.content-light h6 {
  color: var(--light-color);
}

.primary-color h1,
.primary-color h2,
.primary-color h3,
.primary-color h4,
.primary-color h5,
.primary-color h6 {
  color: var(--primary-color);
}

.content-dim-light {
  color: var(--dim-light-color);
}

.content-light a,
.content-light {
  color: var(--light-color);
}

.content-light a:hover {
  color: var(--light-color);
}

.content-light li.menu-item .icon {
  color: var(--light-color);
}

.content-dark h1,
.content-dark h2,
.content-dark h3,
.content-dark h4,
.content-dark h5,
.content-dark h6 {
  color: var(--dark-color);
}

.content-dark a,
.content-dark {
  color: var(--dark-color);
}

.content-dark a:hover {
  color: var(--dark-color);
}

.content-dark li.menu-item .icon {
  color: var(--dark-color);
}

/* - 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);
}

.content-light .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.border-right {
  border-right: 1px solid rgba(0, 0, 0, 0.125);
}

.content-light .border-right {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.content-light .border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.border-left {
  border-left: 1px solid rgba(0, 0, 0, 0.125);
}

.content-light .border-left {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.border-rounded {
  border-radius: 14px;
}

.border-rounded-pill {
  border-radius: 2em;
}

.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: 5px solid var(--accent-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
--------------------------------------------------------------*/
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent-color);
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

/* .nav-tabs {
  border-bottom: 1px solid #dee2e6;
} */

.nav-tabs .nav-link {
  color: #8A8A8A;
  padding: 10px 30px;
  margin-bottom: -1px;
  background: none;
  border: none;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #FFFFFF;
  border-color: #dee2e6 #dee2e6 #fff;
  background-color: transparent;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill>.nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified>.nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.bootstrap-tabs .tab-content {
  padding: 20px 0;
}

.bootstrap-tabs .tab-content>.tab-pane {
  display: none;
}

.bootstrap-tabs .tab-content>.active {
  display: block;
}

/*--------------------------------------------------------------
/** 4.2 Accordions
--------------------------------------------------------------*/
.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 1rem;
  color: var(--dark-color);
  text-align: left;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow-anchor: none;
  background-color: var(--light-background-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.accordion-header {
  margin: 0;
}

.accordion-item {
  background-color: var(--light-background-color);
  /* border-bottom: 1px solid var(--accent-color); */
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

/*--------------------------------------------------------------
/** 4.3 Images
--------------------------------------------------------------*/

/* Image Shape
------------------------------------------*/
img.circle-shape {
  border-radius: 50%;
  width:100px;
}

img.rounded-shape {
  border-radius: 10px;
  
}

/* Pattern Overlay
------------------------------------------*/
.pattern-blur,
.pattern-circle {
  position: relative;
}

.pattern-blur .pattern-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: -1;
}

.pattern-blur .pattern-overlay .pattern-blur-left {
  left: 0;
}

.pattern-blur .pattern-overlay.pattern-blur-right {
  right: 0;
}

.pattern-blur .pattern-overlay.pattern-blur-footer {
  right: 0;
  top: -95%;
}

.pattern-circle .pattern-overlay {
  position: absolute;
  left: -80px;
  bottom: -210px;
  z-index: -1;
}

/*====================================================================*/
/* 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
--------------------------------------------------------------*/

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

.main-menu li.menu-item a {
  color: var(--accent-color);
}

.main-menu li.menu-item a:hover,
.main-menu li.menu-item a.active {
  color: var(--secondary-color);
  background: var(--aurora-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.main-menu li.menu-item a:hover::after,
.main-menu li.menu-item a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--aurora-gradient);
  border-radius: 1px;
}
.btn-wrap{
  align-items: center;
}

.btn-wrap .btn{
  margin-right: 40px;
  height: 50px;
  text-align: center;
  border-radius: 10px;
  line-height: 20px;
}

/* dropdown */
.dropdown-item.active,
.dropdown-item:active {
  color: var(--primary-color);
  text-decoration: none;
  background-color: #52575C;
}

.dropdown-item {
  padding: 0px var(--bs-dropdown-item-padding-x);
}

iconify-icon.hamburger-menu{
 color: var(--accent-color);
 font-size: 35px;
}

/* offcanvas style */
.offcanvas {
  background-color: var(--dark-color);
}

/* Mobile offcanvas menu width */
@media (max-width: 768px) {
  .offcanvas-end {
    width: 50% !important;
  }
  
  .offcanvas-header {
    padding: 1rem !important;
  }
  
  .offcanvas-body {
    padding: 1rem !important;
  }
  
  .offcanvas-title {
    font-size: 1.2rem !important;
  }
  
  .main-menu .menu-list {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  
  .main-menu .menu-item {
    padding: 0.5rem 0 !important;
  }
  
  .main-menu .menu-item a {
    font-size: 1rem !important;
    padding: 0.5rem 1rem !important;
    display: block !important;
    text-align: center !important;
  }
  
  .btn-wrap {
    margin-top: 1rem !important;
    justify-content: center !important;
  }
  
  .btn-wrap .btn {
    width: 100% !important;
    margin: 0 !important;
  }
}

/* - Main Navigation
------------------------------------------------------------- */
#header{
    background-color: rgba(34, 34, 34, 0.9); 
    backdrop-filter: blur(10px);
    position: fixed; /* 固定在顶部 */
    top: 0; /* 距离顶部0像素 */
    width: 100%; /* 100%宽度 */
    height: 100px;
    padding: 10px;
    /* align-items: center; */
    z-index: 1000; /* 确保在其他内容上方 */
}
.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 10px;
}
.navbar img{
  margin-right: 100px;
}
.navbar ul.menu-list a {
  font-weight: 500;
  padding-left: 20px;
}

.main-menu .hamburger {
  display: none;
}

@media only screen and (max-width: 1400px) {
  .primary-nav .hamburger {
    display: block;
  }

  .primary-nav .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--light-color);
  }

  /* .navbar ul.menu-list {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    display: flex;
    width: 100%;
    padding: 40px;
    flex-direction: column;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    transition: 0.8s;
    z-index: 99;
  } */

  .navbar ul.menu-list.responsive {
    left: 0;
  }

  .navbar ul.menu-list a {
    font-size: 2em;
    font-weight: 600;
    color: var(--light-color);
    border-bottom: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }

  .navbar ul.menu-list.responsive a:after {
    content: "\e90b";
    font-size: 25px;
    font-family: "icomoon";
  }

  .navbar .hamburger {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    cursor: pointer;
    background: var(--light-grey-color);
    padding: 10px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media only screen and (max-width: 599px) {
  .navbar .hamburger {
    top: -40px;
  }

  .btn.btn-medium {
    font-size: 0.8em;
  }
  
  /* Extra small mobile navigation */
  #header {
    height: 60px !important;
    padding: 3px !important;
  }
  
  .navbar {
    padding: 3px 5px !important;
  }
  
  .navbar img {
    height: 35px !important;
    margin-right: 15px !important;
  }
  
  .main-menu li.menu-item a {
    font-size: 0.8rem !important;
    padding-left: 5px !important;
  }
  
  .btn-wrap .btn {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.8rem !important;
    height: 30px !important;
    margin-right: 5px !important;
  }
  
  iconify-icon.hamburger-menu {
    font-size: 20px !important;
  }
}

/* Mobile Navigation Optimization */
@media (max-width: 768px) {
  #header {
    height: 70px !important;
    padding: 5px !important;
  }
  
  .navbar {
    max-width: 100% !important;
    padding: 5px 10px !important;
  }
  
  .navbar img {
    height: 40px !important;
    margin-right: 20px !important;
  }
  
  .main-menu li.menu-item {
    padding: 5px 10px !important;
  }
  
  .main-menu li.menu-item a {
    font-size: 0.9rem !important;
    padding-left: 10px !important;
  }
  
  .btn-wrap .btn {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    height: 35px !important;
    margin-right: 10px !important;
  }
  
  iconify-icon.hamburger-menu {
    font-size: 25px !important;
  }
}

/* 6.2 Billboard
--------------------------------------------------------------*/
#billboard .container {
  width: 1620px;
}

#billboard .banner-content {
  margin-top: 120px;
}

h1.banner-title {
  font-size: 2.1em;
  font-weight: 700;
  /* 使用新的极光渐变 */
  background: var(--aurora-gradient);
  background: -webkit-linear-gradient(297deg, #6B46C1, #A855F7, #8B5CF6, #3B82F6, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 7.26rem;
  letter-spacing: 0.18rem;
  position: relative;
}

h1.banner-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--aurora-gradient);
  opacity: 0.1;
  z-index: -1;
  border-radius: 10px;
  filter: blur(20px);
}

#billboard .banner-content p {
  width: 85%;
  font-size: 14px;
  line-height: 2;
}

@media only screen and (max-width: 1380px) {
  #billboard .container {
    width: 1360px;
  }

  #billboard .banner-content h1.banner-title {
    font-size: 4.1em;
  }
}

@media only screen and (max-width: 991px) {
  #billboard .row {
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 768px) {
  #billboard .container {
    width: 700px;
  }

  #billboard .banner-content h1.banner-title {
    font-size: 3.1em;
  }

  #billboard .banner-content p {
    width: 75%;
    font-size: 16px;
  }
}

@media only screen and (max-width: 501px) {
  #billboard .container {
    width: 360px;
  }

  #billboard .banner-content h1.banner-title {
    font-size: 2.1em;
    line-height: 1.5em;
  }

  #billboard .banner-content p,
  #billboard .btn-wrap a.btn {
    width: 100%;
  }
}

/* 6.3 Association With
--------------------------------------------------------------*/
/* img.image-association {
    width: auto;
    height: 100%;
    object-fit: cover;
}
#association-with img {
    margin: 0 30px 30px 0;
} */

/* 6.3 Collection NFT Card
--------------------------------------------------------------*/
#product-card {
  position: relative;
}

#product-card .swiper.product-swiper {
  height: 750px;
}

#product-card .product-detail {
  width: 90%;
  position: absolute;
  bottom: 160px;
  left: 16px;
  padding: 20px;
  border-radius: 20px;
  transition: 0.8s ease-out;
}
#about .product-detail{
  padding: 10px;
  width:400px;
  height:300px;
  margin:auto;
  font-size: 14px;
}  
#about{
  margin-top: 50px;
}
#about h3{
  font-weight: 900px;
  margin: 10px;
}
/* 展开折叠效果 */

#solution .product-item{
  width:600px;
  margin-bottom: 15px;
  margin-top: 10px;
  padding: 10px;
}
#solution .image-holder{
  margin-top: 20px;
}
/* #product-card .product-item:hover .product-detail {
  bottom: 180px;
}

#product-card .product-detail h3.card-title,
#product-card .product-detail .currency {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04125rem;
  color: var(--dark-color);
 
}

#product-card span.clients-name {
  font-size: 1.1em;
  font-weight: 500;
  padding-left: 10px;
  color: var(--dark-color);
}

#product-card .btn-card .btn {
  margin: 20px 0 0;
}

#product-card .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  background-color: var(--swiper-pagination);
  border-radius: 50%;
}

#product-card .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--swiper-pagination);
} */
.swiper-wrapper .swiper-slide {
  color: #04040C;
}
@media only screen and (max-width: 767px) { /* 针对手机模式 */
  #about.swiper-wrapper {
    display: flex;
  }
  #about.swiper-slide{
    max-width: 700px;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1599px) {
  #product-card .product-detail {
    bottom: 150px;
  }

  #product-card .product-item:hover .product-detail {
    bottom: 170px;
  }
}

@media only screen and (max-width: 1279px) {

  #product-card .product-detail h3.card-title,
  #product-card .product-detail .currency {
    font-size: 1em;
    line-height: 1.1;
  }
}

/* 6.4 Top Creators
--------------------------------------------------------------*/
#top-creators .product-item {
  position: relative;
  padding: 50px 0;
  margin-bottom: 60px;
}

#top-creators .product-item .btn-card {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
}

@media only screen and (max-width: 1279px) {
  .section-header p {
    width: 70%;
  }
}

/* 6.5 Subscribe
--------------------------------------------------------------*/
#subscribe .image-holder {
  margin-bottom: 50px;
}
#home .image-holder{
  margin-top: 100px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

/* Banner图片动态效果 */
.banner-image {
  transition: all 0.6s ease;
  position: relative;
  z-index: 2;
}

.banner-image:hover {
  transform: scale(1.05) rotate(2deg);
  filter: brightness(1.1) saturate(1.2);
}

/* 添加浮动动画 */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.banner-image {
  animation: float 3s ease-in-out infinite;
}


/* 响应式动画调整 */
@media (max-width: 768px) {
  .banner-image {
    animation: float 4s ease-in-out infinite;
  }
  
  .banner-image:hover {
    transform: scale(1.02) rotate(1deg);
  }
}

@media (max-width: 480px) {
  .banner-image {
    animation: none;
  }
  
  .banner-image:hover {
    transform: scale(1.01);
  }
}

/* 粒子效果样式 */
#particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--aurora-gradient);
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat 8s linear infinite;
}

.particle:nth-child(odd) {
  background: rgba(168, 85, 247, 0.6);
  animation-duration: 12s;
}

.particle:nth-child(even) {
  background: rgba(59, 130, 246, 0.4);
  animation-duration: 10s;
}

.particle:nth-child(3n) {
  background: rgba(6, 182, 212, 0.5);
  animation-duration: 14s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* 粒子大小变化 */
.particle:nth-child(1) { width: 8px; height: 8px; }
.particle:nth-child(2) { width: 12px; height: 12px; }
.particle:nth-child(3) { width: 6px; height: 6px; }
.particle:nth-child(4) { width: 10px; height: 10px; }
.particle:nth-child(5) { width: 8px; height: 8px; }
.particle:nth-child(6) { width: 14px; height: 14px; }
.particle:nth-child(7) { width: 6px; height: 6px; }
.particle:nth-child(8) { width: 10px; height: 10px; }
.particle:nth-child(9) { width: 8px; height: 8px; }
.particle:nth-child(10) { width: 12px; height: 12px; }

/* 粒子位置随机化 */
.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }
.particle:nth-child(10) { left: 15%; animation-delay: 9s; }

/* 响应式粒子效果 */
@media (max-width: 768px) {
  .particle {
    animation-duration: 6s;
  }
  
  .particle:nth-child(odd) {
    animation-duration: 8s;
  }
  
  .particle:nth-child(even) {
    animation-duration: 7s;
  }
  
  .particle:nth-child(3n) {
    animation-duration: 9s;
  }
}

@media (max-width: 480px) {
  .particle {
    animation-duration: 4s;
  }
  
  .particle:nth-child(odd) {
    animation-duration: 5s;
  }
  
  .particle:nth-child(even) {
    animation-duration: 4.5s;
  }
  
  .particle:nth-child(3n) {
    animation-duration: 6s;
  }
}
.product-swiper .image-holder{
  padding-top: 50px;
  width: 400px; /* 设置图片宽度 */
  height: 380px; /* 设置剪切高度 */
  overflow: hidden; /* 隐藏超出部分 */
  position: relative;
  margin: auto;
}

.subscribe-content h3.subscribe-title.light {
  font-size: 2.9em;
  font-weight: 900;
}

.subscribe-content form#form {
  padding-right: 15px;
  padding: 10px;
  margin-top: 70px;
}

.subscribe-content form#form input,
.subscribe-content form#form button {
  margin: 0;
}

@media only screen and (max-width: 1279px) {
  .subscribe-content h3.subscribe-title.light {
    font-size: 2.3em;
  }

  .subscribe-content form#form {
    flex-wrap: wrap;
  }

  .subscribe-content form#form button {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .subscribe-content h3.subscribe-title.light {
    font-size: 2.9em;
  }

  .subscribe-content form#form button {
    width: unset;
  }
}

/* 6.6 NFT Collection
--------------------------------------------------------------*/
#token .product-item {
  padding: 35px 35px 70px;
  margin-bottom: 15px;
}

#token .product-item h3 {
  margin: 30px 0 0;
}

#token .btn-card>a {
  margin-top: 5px;
}

#chart {
	display: flex;
	justify-content: center;
	min-width:400px;
	height: 400px;
	text-align: center;
	margin: 0 auto;
	
  }
#charten {
	display: flex;
	justify-content: center;
	min-width:400px;
	height: 400px;
	text-align: center;
	margin: 0 auto;	
	position: relative;
	background: radial-gradient(circle at center, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
  }

  /* 团队 */
/* Application Section Styles */
.application-card {
  background: linear-gradient(135deg, rgba(159, 64, 255, 0.1) 0%, rgba(24, 221, 201, 0.1) 100%);
  border: 1px solid rgba(159, 64, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(159, 64, 255, 0.3);
  border-color: rgba(159, 64, 255, 0.6);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.application-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(159, 64, 255, 0.8) 0%, rgba(24, 221, 201, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.application-card:hover .card-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  color: white;
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: #b8c5d1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.feature-list i {
  color: #18DDC9;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.detailed-features {
  background: rgba(159, 64, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #9F40FF 0%, #18DDC9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.feature-item h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #b8c5d1;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-body {
    padding: 1.5rem;
  }
  
  .detailed-features {
    padding: 2rem 1rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
}

/* About ARV Section Styles
--------------------------------------------------------------*/

.about-section {
  position: relative;
  padding: 80px 0;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.about-card-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 25px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--aurora-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 25px;
}

.about-card-item:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.4);
}

.about-card-item:hover::before {
  opacity: 0.1;
}

.card-image {
  width: 100%;
  height: 150px;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card-image:hover img {
  transform: scale(1.05);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--aurora-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
  border-radius: 20px;
}

.card-icon i {
  font-size: 2rem;
  color: white;
  z-index: 1;
  position: relative;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--aurora-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-text {
  color: var(--accent-color);
  line-height: 1.5;
  font-size: 0.95rem;
}

.card-description {
  flex: 1;
}

.card-description p {
  color: var(--accent-color);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #A855F7;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

.section-subtitle:first-child {
  margin-top: 0;
}

.vision-section, .mission-section {
  margin-bottom: 1.5rem;
}

.mission-list {
  margin: 0.8rem 0 0 0;
  padding-left: 1.2rem;
  color: var(--accent-color);
}

.mission-list li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.mission-list li:last-child {
  margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .about-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .about-card-item {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-card-item {
    padding: 1.5rem;
  }
  
  .card-image {
    height: 130px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-icon i {
    font-size: 1.5rem;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-card-item {
    padding: 1.2rem;
  }
  
  .card-image {
    height: 120px;
  }
  
  .feature-item {
    padding: 0.8rem;
  }
  
  .feature-text {
    font-size: 0.9rem;
  }
}

/* Core Values Icons Styles
--------------------------------------------------------------*/

.aurora-icon {
  background: var(--aurora-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.aurora-icon:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Application Scenarios Section Styles
--------------------------------------------------------------*/

.application-scenarios-section {
  position: relative;
}

.application-scenarios-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.application-scenarios-section .container {
  position: relative;
  z-index: 2;
}

/* Application Cards Grid */
.application-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.application-card-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.application-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--aurora-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.application-card-item:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

.application-card-item:hover::before {
  opacity: 0.1;
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--aurora-gradient);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

.card-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .application-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  
  .application-card-item {
    padding: 1.5rem;
  }
  
  .card-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.2rem;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
}

/* Application Timeline Styles (保留原有样式作为备用)
--------------------------------------------------------------*/

.application-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 2rem;
  background: var(--aurora-gradient-vertical);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.4);
}

.timeline-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--aurora-gradient);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
  position: relative;
  overflow: hidden;
}

.timeline-number::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--aurora-gradient-radial);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.timeline-number:hover::before {
  opacity: 0.3;
}

.timeline-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.timeline-description {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.timeline-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(168, 85, 247, 0.15);
  color: #A855F7;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(168, 85, 247, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--aurora-gradient);
  opacity: 0.1;
  transition: left 0.3s ease;
  z-index: -1;
}

.feature-tag:hover {
  background: rgba(168, 85, 247, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

.feature-tag:hover::before {
  left: 0;
}

.timeline-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-image img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.timeline-image:hover img {
  transform: scale(1.05);
}

.timeline-item.reverse .timeline-content {
  text-align: right;
}

.timeline-item.reverse .timeline-features {
  justify-content: flex-end;
}

/* Core Values Styles */
.core-values {
  margin-top: 3rem;
  padding: 2rem 0;
}

.value-card {
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.value-icon {
  margin-bottom: 1.5rem;
}

.value-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
.value-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #b8c5d1;
}
/* Responsive Design */
@media (max-width: 991.98px) {
  .timeline-item:not(:last-child)::after {
    display: none;
  }
  
  .timeline-item.reverse .timeline-content {
    text-align: left;
  }
  
  .timeline-item.reverse .timeline-features {
    justify-content: flex-start;
  }
  
  .timeline-content {
    margin-bottom: 2rem;
  }
  
  .timeline-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.2rem;
  }
  
  .timeline-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .timeline-features {
    justify-content: center;
  }
  
  .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .value-card {
    margin-bottom: 1.5rem;
  }
}


/* Token Info Cards */
.token-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.token-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.token-info-title {
  color: #b8b8b8;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.token-info-value {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: var(--aurora-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .token-info-value {
    font-size: 1.5rem;
  }
}

/* Team Section Styles */









/* Team Section - Simple PC Layout */
#team.team-section {
  padding: 5rem 0 !important;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(25, 25, 55, 0.95) 100%) !important;
  position: relative;
  overflow: hidden;
}

#team.team-section .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  position: relative;
  z-index: 2;
}

#team .team-header {
  text-align: center !important;
  margin-bottom: 4rem !important;
}

#team .team-title {
  font-size: 3rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 1.5rem !important;
}

#team .team-description {
  font-size: 1.1rem !important;
  color: #b8c5d1 !important;
  line-height: 1.8 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

#team .team-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
  margin-top: 3rem !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: stretch !important;
}

#team .team-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(168, 85, 247, 0.2) !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
  position: relative;
  overflow: hidden;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 450px !important;
}

#team .team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--aurora-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 20px;
}

#team .team-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(168, 85, 247, 0.5) !important;
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3) !important;
}

#team .team-card:hover::before {
  opacity: 0.1;
}

#team .team-avatar {
  position: relative;
  margin-bottom: 1.5rem !important;
  height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#team .avatar-img {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid rgba(168, 85, 247, 0.3) !important;
  transition: all 0.3s ease !important;
  position: relative;
}

#team .avatar-img::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--aurora-gradient);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#team .team-card:hover .avatar-img {
  transform: scale(1.1) !important;
  border-color: rgba(168, 85, 247, 0.8) !important;
}

#team .team-card:hover .avatar-img::before {
  opacity: 0.5;
}

#team .team-info {
  position: relative;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 300px !important;
}

#team .team-name {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 0.5rem !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#team .team-role {
  font-size: 0.9rem !important;
  color: #A855F7 !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  background: var(--aurora-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  padding: 5px 0 !important;
}

#team .team-bio {
  font-size: 0.85rem !important;
  color: #b8c5d1 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-align: left !important;
  flex: 1 !important;
  display: flex !important;
  align-items: flex-start !important;
  min-height: 180px !important;
  padding-top: 0 !important;
}

/* Tablet Layout */
@media (max-width: 1024px) {
  #team .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
  }
  
  #team .team-card {
    padding: 1.5rem !important;
    min-height: 500px !important;
  }
  
  #team .team-avatar {
    height: 120px !important;
  }
  
  #team .team-info {
    min-height: 300px !important;
  }
  
  #team .team-name {
    height: 40px !important;
  }
  
  #team .team-role {
    height: 50px !important;
  }
  
  #team .team-bio {
    min-height: 220px !important;
  }
}

/* Mobile Layout */
@media (max-width: 768px) {
  #team.team-section {
    padding: 2rem 0 !important;
  }
  
  #team.team-section .container {
    padding: 0 15px !important;
  }
  
  #team .team-header {
    margin-bottom: 2rem !important;
  }
  
  #team .team-title {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }
  
  #team .team-description {
    font-size: 1rem !important;
    padding: 0 10px !important;
  }
  
  #team .team-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
    max-width: 100% !important;
    align-items: stretch !important;
  }
  
  #team .team-card {
    padding: 1.5rem 1rem !important;
    margin-bottom: 1rem !important;
    min-height: 400px !important;
    height: auto !important;
  }
  
  #team .team-avatar {
    height: 100px !important;
  }
  
  #team .team-info {
    min-height: 250px !important;
  }
  
  #team .team-name {
    height: 35px !important;
  }
  
  #team .team-role {
    height: 45px !important;
  }
  
  #team .team-bio {
    min-height: 180px !important;
  }
  
  .team-avatar {
    margin-bottom: 1rem;
  }
  
  .avatar-img {
    width: 70px;
    height: 70px;
  }
  
  .team-name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .team-role {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .team-bio {
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  #team.team-section {
    padding: 1.5rem 0 !important;
  }
  
  #team.team-section .container {
    padding: 0 10px !important;
  }
  
  #team .team-title {
    font-size: 1.8rem !important;
  }
  
  #team .team-description {
    font-size: 0.9rem !important;
    padding: 0 5px !important;
  }
  
  #team .team-grid {
    gap: 0.8rem !important;
    align-items: stretch !important;
  }
  
  #team .team-card {
    padding: 1rem 0.8rem !important;
    min-height: 350px !important;
    height: auto !important;
  }
  
  #team .team-avatar {
    height: 80px !important;
  }
  
  #team .team-info {
    min-height: 220px !important;
  }
  
  #team .team-name {
    height: 30px !important;
  }
  
  #team .team-role {
    height: 40px !important;
  }
  
  #team .team-bio {
    min-height: 160px !important;
  }
  
  .avatar-img {
    width: 60px;
    height: 60px;
  }
  
  .team-name {
    font-size: 1rem;
  }
  
  .team-role {
    font-size: 0.75rem;
  }
  
  .team-bio {
    font-size: 0.8rem;
    line-height: 1.4;
}
}
