/* ===== Global Variables & Reset ===== */
:root {
  /* Light Theme Defaults */
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --secondary: #00D2FF;
  --accent: #FD79A8;
  --dark: #1A1A2E;
  --darker: #16213E;
  --light: #F5F6FA;
  --text: #2D3436;
  --text-light: #636E72;
  --card-bg: #FFFFFF;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --nav-bg: rgba(245, 246, 250, 0.95);
  --primary-bg: #ffffff;
  --secondary-bg: #f5f5f5;
  --accent-color: #6C5CE7;
  --text-primary: #2D3436;
  --text-secondary: #636E72;
  --up-color: #00C853;
  --down-color: #FF3D00;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

[data-theme="dark"] {
  --primary: #A29BFE;
  --primary-light: #6C5CE7;
  --secondary: #00D2FF;
  --accent: #FD79A8;
  --dark: #F5F6FA;
  --darker: #E4E8EB;
  --light: #1A1A2E;
  --text: #F5F6FA;
  --text-light: #B2BEC3;
  --card-bg: #16213E;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(26, 26, 46, 0.95);
  --primary-bg: #000000;
  --secondary-bg: #121212;
  --accent-color: #00ff88;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --up-color: #00ff88;
  --down-color: #ff3366;
}
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--text);
    transition: var(--transition);
    line-height: 1.6;
    padding-top: 80px;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}



h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ==================== Top Header ==================== */
.top-header {
    background: linear-gradient(135deg, #1877F2, #1459c2);
    height: 50px;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 1000;
}

.top-header-container {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-header-social {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
}

.top-header-social a {
    color: white;
    background: rgba(255,255,255,0.15);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 13px;
    text-decoration: none;
    backdrop-filter: blur(2px);
}

.top-header-social a:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.15) translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.top-header-auth {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
}

.top-header-auth a {
    padding: 5px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    line-height: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
}

.login-btn {
    color: white;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.login-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-1px);
}

.signup-btn {
    color: white;
    background: #1877F2;
    border: 1px solid #1877F2;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.signup-btn:hover {
    background: #166FE5;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ==================== Header ==================== */
/* ==================== Header ==================== */
header {
    position: fixed;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    transition: var(--transition);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
nav {
    margin-left: auto;
    margin-right: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

/* Header right section */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

/* Theme toggle */
.theme-toggle {
    position: relative;
}

#themeBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

#themeBtn i {
    position: absolute;
    transition: var(--transition);
}

#themeBtn .fa-moon {
    opacity: 1;
}

#themeBtn .fa-sun {
    opacity: 0;
}

[data-theme="dark"] #themeBtn .fa-moon {
    opacity: 0;
}

[data-theme="dark"] #themeBtn .fa-sun {
    opacity: 1;
}

#themeBtn:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Mobile menu styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
    position: relative;
    width: 40px;
    height: 40px;
}

.mobile-menu-btn .fa-times {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-btn .fa-bars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-btn.active .fa-bars {
    display: none;
}

.mobile-menu-btn.active .fa-times {
    display: block;
}

/* Mobile menu styles */
@media (max-width: 992px) {
    #mobileMenuBtn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--card-bg);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--nav-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 100px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    #nav-menu.active {
        right: 0;
    }
    
    #nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    #nav-menu ul li a {
        font-size: 1.2rem;
        padding: 8px 0;
        display: block;
    }
}
/* Scrolled header */
header.scrolled {
    top: 10px;
    padding: 10px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

header.scrolled .logo-img-container {
    width: 40px;
    height: 40px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    text-decoration: none;
}
/* ==================== Hero Section ==================== */

.banner {
  position: relative;
  height: 94vh;
  min-height: 600px;
  max-height: 1000px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.banner-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: brightness(0.85);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(22, 33, 62, 0.7) 0%,
    rgba(26, 26, 46, 0.8) 100%
  );
  z-index: -1;
}
/* Rest of your CSS remains exactly the same */
.banner-content {
  max-width: 1200px;
  width: 90%;
  padding: 40px;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  margin-top: 266px;
}

.banner-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}


.banner-title span {
  position: relative;
  background: linear-gradient(90deg, #6C5CE7, #00D2FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 5px;
}

.banner-title span:first-child {
  display: inline-block;
  animation: textShine 3s ease-in-out infinite alternate;
}

.banner-title span:last-child {
  display: inline-block;
  animation: textShine 3s ease-in-out 0.5s infinite alternate;
}

.banner-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.banner-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.1rem;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.banner-btn i {
  font-size: 1.2rem;
}

.primary-btn {
  background: linear-gradient(135deg, #6C5CE7, #00D2FF);
  color: white;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.5);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.7);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 992px) {
  .banner {
    height: 85vh;
    min-height: 500px;
  }
  
  .banner-content {
    margin-top: 200px;
    padding: 30px 20px;
  }
  
  .banner-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
  }
  
  .banner-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 80vh;
    min-height: 450px;
  }
  
  .banner-content {
    margin-top: 150px;
    width: 68%;
  }
  
  .banner-overlay {
    background: linear-gradient(
      135deg,
      rgba(22, 33, 62, 0.8) 0%,
      rgba(26, 26, 46, 0.9) 100%
    );
  }
  
  .banner-buttons {
    gap: 15px;
  }
  
  .banner-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .banner {
    height: 75vh;
    min-height: 400px;
  }
  
  .banner-content {
           margin-top: 247px;
        padding: 0px 0px;
  }
  
  .banner-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  
  .banner-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .banner-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .banner-overlay {
    background: linear-gradient(
      135deg,
      rgba(22, 33, 62, 0.85) 0%,
      rgba(26, 26, 46, 0.95) 100%
    );
  }
}

/* Animations remain unchanged */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* ==================== end Hero Section ==================== */
/* Crypto ticker */
.ticker-container {
    position: relative;
    width: 100%;
    background: var(--primary-bg);
    color: var(--text-primary);
    padding: 15px 0;
    overflow: hidden;
    z-index: 1;
}

.ticker-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(0,255,136,0) 0%, 
        rgba(0,255,136,1) 50%, 
        rgba(0,255,136,0) 100%);
    z-index: 2;
}

.ticker-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(0,255,136,0) 0%, 
        rgba(0,255,136,1) 50%, 
        rgba(0,255,136,0) 100%);
    z-index: 2;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.coin-item {
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    position: relative;
    height: 40px;
}

.coin-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.1);
}

.coin-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    object-fit: contain;
}

.coin-symbol {
    font-weight: 700;
    margin-right: 8px;
    color: var(--accent-color);
    font-size: 1.1em;
}

.coin-price {
    margin-right: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.coin-change {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
}

.up {
    color: var(--up-color);
}

.down {
    color: var(--down-color);
}

.change-icon {
    margin-right: 4px;
    font-size: 0.8em;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.particle {
    position: absolute;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
}

.loading {
    text-align: center;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    color: var(--text-secondary);
}

.volume-display {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
    border: 1px solid rgba(0,255,136,0.3);
    z-index: 3;
}

/* ==================== Courses Section ==================== */
/* ==================== Courses Section ==================== */
.courses {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
    text-align: center; /* Center all text in the section */
}

.courses::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.courses .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center container contents horizontally */
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    width: 100%; /* Ensure grid takes full width */
}

.course-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1;
    border: 1px solid rgba(108, 92, 231, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; /* Make all cards same height */
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
}

.course-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1; /* Make paragraphs take up available space to push buttons down */
}

.course-card .btn {
    margin-top: auto; /* Push button to bottom of card */
    width: fit-content; /* Make button width fit content */
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 210, 255, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.course-card:hover .card-bg {
    opacity: 1;
}

/* Ensure section title and subtitle are centered */
.section-title {
    text-align: center;
    width: 100%;
}

.text-center {
    text-align: center;
    width: 100%;
}

/* ==================== YouTube Section ==================== */
.youtube-profile-section {
    position: relative;
    width: 100%;
    background: #000000;
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    overflow: hidden;
}

.youtube-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    overflow: hidden;
    z-index: 1;
    background: #000000;
}

.youtube-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2;
}

.youtube-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,0,0,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(255,0,0,0.1) 0%, transparent 50%);
    animation: bgParticles 15s infinite alternate;
}

.youtube-profile-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 4;
}

.youtube-profile-header {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 120px;
    align-items: center;
}

.youtube-avatar-container {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.youtube-avatar-border {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.youtube-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.youtube-avatar-container:hover .youtube-avatar-border {
    border-color: rgba(255,0,0,0.5);
    box-shadow: 0 10px 40px rgba(255,0,0,0.3);
    transform: translateY(-5px);
}

.youtube-avatar-container:hover .youtube-avatar-img {
    transform: scale(1.08);
}

.youtube-verified-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.youtube-avatar-container:hover .youtube-verified-badge {
    transform: scale(1.1) rotate(15deg);
}

.youtube-profile-info {
    flex: 1;
    min-width: 300px;
}

.youtube-channel-name {
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.youtube-channel-name:hover {
    color: #ff0000;
    text-shadow: 0 2px 15px rgba(255,0,0,0.4);
}

.youtube-channel-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    color: #aaa;
    font-size: 16px;
}

.youtube-stats-divider {
    color: #606060;
    transition: all 0.3s ease;
}

.youtube-channel-meta:hover .youtube-stats-divider {
    color: #ff0000;
    transform: scale(1.2);
}

.youtube-channel-description {
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.youtube-channel-description:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.youtube-subscribe-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.youtube-subscribe-btn {
    position: relative;
    background: #FF0000;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
    z-index: 2;
}

.youtube-subscribe-btn:hover {
    background: #ff3333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.4);
}

.youtube-subscribe-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(255,0,0,0.3);
}

.youtube-subscribe-btn .subscribe-text {
    display: inline-block;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.youtube-subscribe-btn:hover .subscribe-text {
    transform: scale(1.05);
}

.youtube-subscribe-btn .subscribed-text {
    display: none;
    position: relative;
    z-index: 3;
}

.youtube-subscribe-btn.subscribed {
    background: #606060;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.youtube-subscribe-btn.subscribed:hover {
    background: #707070;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.youtube-subscribe-btn.subscribed .subscribe-text {
    display: none;
}

.youtube-subscribe-btn.subscribed .subscribed-text {
    display: inline-block;
}

.youtube-subscribe-btn .btn-ring-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.youtube-subscribe-btn:active .btn-ring-animation {
    animation: buttonRing 0.5s ease-out;
}

.youtube-notification-bell {
    position: relative;
}

.bell-checkbox {
    display: none;
}

.bell-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    background: rgba(255,255,255,0.1);
}

.bell-label:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bell-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bell-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: all 0.3s ease;
}

.bell-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background: #FF0000;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.bell-checkbox:checked + .bell-label {
    background: rgba(6, 95, 212, 0.2);
}

.bell-checkbox:checked + .bell-label .bell-icon {
    fill: #065fd4;
    animation: bellRing 0.8s ease;
}

.bell-checkbox:checked + .bell-label .bell-dot {
    opacity: 1;
    transform: scale(1);
}

.youtube-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

.youtube-loading-animation {
    text-align: center;
}

.youtube-loading-spinner {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    position: relative;
}

.youtube-spinner-svg {
    width: 100%;
    height: 100%;
    animation: youtubeSpinner 1.2s linear infinite;
    fill: #FF0000;
    opacity: 0.8;
}

/* ==================== Consultation Section ==================== */
.consultation {
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/1468070/crypto-bg-pattern-2.png') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.consultation-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(108, 92, 231, 0.1);
    transition: var(--transition);
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
}

.consultation-content {
    flex: 1;
    padding: 50px;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.8) 0%, rgba(228, 232, 235, 0.8) 100%);
}

[data-theme="dark"] .consultation-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
}

.consultation-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text);
}

.consultation-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.consultation-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.consultation-content li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.consultation-content i {
    color: var(--primary);
}

.consultation-action {
    width: 300px;
    background: var(--gradient);
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.consultation-action h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-align: center;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    font-size: 24px;
}

.payment-methods i {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.payment-methods i:hover {
    color: white;
    transform: translateY(-3px);
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .consultation-card {
        flex-direction: column;
    }
    
    .consultation-content,
    .consultation-action {
        width: 100%;
        text-align: center;
        padding: 30px 20px;
    }
    
        .consultation-content ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        width: 100%;
    }

    /* Ensure list items content stays properly aligned */
    .consultation-content li {
        justify-content: flex-start;
        width: fit-content;
        max-width: 80%;
        text-align: left;
    }

    
    .payment-methods {
        justify-content: center;
    }
    
    /* Center all text in the consultation section */
    .consultation h2.section-title,
    .consultation p.text-center {
        text-align: center;
    }
    
    /* Make sure the button is centered */
    .consultation-action .btn {
        display: block;
        margin: 0 auto;
    }
}
/* ==================== About Section ==================== */
.about-us-container {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.about-us-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/1468070/crypto-bg-pattern.png') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: var(--transition);
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
}

.profile h2 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.profile .title {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
}

/* Mission Box */
.mission {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.mission:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
}

.mission h3 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mission h3 i {
    color: var(--primary);
}

.mission p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Media Icons */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

/* Specific icon colors on hover */
.social-icon.fa-tiktok:hover { background: #000; color: #fff; }
.social-icon.fa-youtube:hover { background: #FF0000; color: #fff; }
.social-icon.fa-instagram:hover { background: #E4405F; color: #fff; }
.social-icon.fa-whatsapp:hover { background: #25D366; color: #fff; }
.social-icon.fa-telegram:hover { background: #0088CC; color: #fff; }
.social-icon.fa-x-twitter:hover { background: #000; color: #fff; }
.social-icon.fa-facebook:hover { background: #1877F2; color: #fff; }

/* ==================== Testimonials ==================== */
.testimonials {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(253, 121, 168, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.testimonials .swiper-slide {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==================== Newsletter ==================== */
.newsletter {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 20px;
    margin: 80px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/1468070/crypto-bg-pattern-2.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.newsletter h2 {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.newsletter-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    background-color: var(--dark);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: auto;
}

.newsletter-form button:hover {
    background-color: var(--darker);
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0f0f1a 0%, #0a0e1f 100%);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/1468070/crypto-bg-pattern-2.png') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-col {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 70px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin-bottom: 15px;
    opacity: 0.7;
}

.legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--secondary);
}

/* Floating coins animation for footer */
.floating-coins-footer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.coin-footer {
    position: absolute;
    width: 1em;
    height: 1em;
    font-size: 24px;
    animation: float-coin 15s linear infinite;
    opacity: 0.6;
    color: gold;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.coin-footer:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    color: #f7931a;
}

.coin-footer:nth-child(2) {
    top: 70%;
    right: 5%;
    animation-delay: 2s;
    animation-duration: 12s;
    color: #627eea;
}

.coin-footer:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 18s;
    color: #00ffbd;
}
/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    color: white;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0f0f1a 0%, #0a0e1f 100%);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/1468070/crypto-bg-pattern-2.png') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.footer-logo-col {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 15px 0;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 210, 255, 0.2);
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col {
    text-align: center;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary);
    font-weight: 600;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    padding: 3px 0;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom a {
    color: #0091ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #00b4ff;
    text-decoration: underline;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary);
}

/* Floating Coins */
.floating-coins-footer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.coin-footer {
    position: absolute;
    font-size: 24px;
    animation: float-coin 15s linear infinite;
    opacity: 0.6;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

@keyframes float-coin {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-logo span {
        font-size: 1.6rem;
    }
    
    .footer-grid {
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .footer-logo img {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo span {
        font-size: 1.3rem;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
}
/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* ==================== Section Titles ==================== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.section-title:hover::after {
    transform: scaleX(1);
}

/* ==================== Loading Screen ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.1s ease;
}

.loading-content {
    text-align: center;
}

.loading-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 1.1s infinite alternate;
}

.loading-text {
    color: white;
    font-size: 1.2rem;
    margin-top: 20px;
    opacity: 0.8;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0;
    background: var(--gradient);
    transition: width 0.5s ease;
}

/* ==================== Payment Popup ==================== */
.payment-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.payment-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-popup {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.payment-popup-overlay.active .payment-popup {
    transform: scale(1);
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    color: #333;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.popup-title {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.popup-title h2 {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.popup-title p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.payment-amount {
    background: rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.payment-amount h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.7);
}

.payment-amount .amount {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.payment-methods-popup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.payment-method:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 84, 200, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-method.active {
    border-color: #4e54c8;
    background: rgba(78, 84, 200, 0.08);
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.1);
}

.payment-method i {
    font-size: 40px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.payment-method:hover i {
    transform: scale(1.1);
}

.payment-method .method-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.payment-method .online-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.payment-details {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    animation: fadeIn 0.5s ease;
}

.payment-details.active {
    display: block;
}

.payment-details .address-title {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.payment-details .wallet-address {
    background: rgba(0, 0, 0, 0.05);
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    word-break: break-all;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: monospace;
}

.copy-btn {
    background: rgba(78, 84, 200, 0.1);
    border: none;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    font-weight: 500;
}

.copy-btn:hover {
    background: rgba(78, 84, 200, 0.2);
}

.payment-instructions {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 15px;
    line-height: 1.5;
}

.payment-instructions strong {
    color: #333;
}

.action-btn {
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.action-btn:active {
    transform: translateY(0);
}

.instagram-section {
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    margin-bottom: 15px;
}

.instagram-section.active {
    display: block;
}

.instagram-icon {
    font-size: 50px;
    margin-bottom: 15px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bounce 2s infinite;
}

.instagram-text {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
}

.instagram-link {
    color: #4e54c8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #8f94fb;
    text-decoration: underline;
}

.confirmation-message {
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 15px;
    display: none;
}

.confirmation-message.active {
    display: block;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
/* Floating animation for background elements */
.floating-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    z-index: -1;
}

.bg-1 {
    top: -50px;
    left: -50px;
    animation: float 15s infinite ease-in-out;
}

.bg-2 {
    bottom: -30px;
    right: -60px;
    width: 250px;
    height: 250px;
    animation: float 18s infinite ease-in-out reverse;
}

/* Platform card loading states */
.platform-card.loading {
    opacity: 0.7;
    position: relative;
}

.platform-card.loading::after {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.platform-card.error {
    border: 2px solid #ff4444;
}

.stat-item h3 {
    min-height: 24px; /* Prevent layout shift when loading */
}

/* Button loading states */
.platform-btn .btn-loader {
    display: none;
}

.platform-btn.loading .btn-text {
    display: none;
}

.platform-btn.loading .btn-loader {
    display: inline-block;
}

.platform-btn.success {
    background-color: #4CAF50 !important;
}

.platform-btn.error {
    background-color: #f44336 !important;
}

/* ==================== Animations ==================== */
@keyframes float {
    0% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
    100% { transform: translateY(0px) rotateY(0deg); }
}

@keyframes float-coin {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-30px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-60px) rotate(180deg) scale(1); }
    75% { transform: translateY(-30px) rotate(270deg) scale(0.9); }
    100% { transform: translateY(0) rotate(360deg) scale(1); }
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes instaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(108, 92, 231, 0.3); }
    100% { text-shadow: 0 0 20px rgba(108, 92, 231, 0.6); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes bgParticles {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.3; }
}

@keyframes youtubeSpinner {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes buttonRing {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 200px; height: 200px; opacity: 0; }
}

@keyframes bellRing {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(20deg); }
    30% { transform: rotate(-15deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-5deg); }
    75% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

@keyframes floatParticle {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(20px, 30px) scale(0); opacity: 0; }
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 1024px) {
    .consultation-card {
        flex-direction: column;
    }
    
    .consultation-action {
        width: 100%;
        padding: 40px;
    }
    
    .platform-card {
        min-width: 250px;
    }

    .payment-methods-popup {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 0px 0;
    }
    
    .hero {
        padding: 60px 20px;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile menu styles */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
        transition: right 0.4s ease;
        padding: 80px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    nav a {
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .newsletter {
        padding: 60px 20px;
        margin: 80px auto;
    }

    .youtube-profile-header {
        flex-direction: column;
        text-align: center;
        margin-top: 80px;
        gap: 30px;
    }
    
    .youtube-channel-meta {
        justify-content: center;
    }
    
    .youtube-bg-animated {
        height: 350px;
    }
    
    .youtube-avatar-container {
        width: 140px;
        height: 140px;
    }
    
    .youtube-channel-name {
        font-size: 28px;
    }
    
    .youtube-subscribe-container {
        justify-content: center;
        width: 100%;
    }
    
    .youtube-subscribe-btn {
        width: 100%;
        max-width: 220px;
    }

    .payment-methods-popup {
        grid-template-columns: 1fr;
    }
    
    .popup-title h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 20px;
    }
    
    .logo-img-container {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .consultation-content,
    .consultation-action {
        padding: 30px;
    }
    
    .footer-grid {
     grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}
/* Hover Effects */
a:hover {
    background: rgba(0, 255, 136, 0.1);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
    transform: translateY(-1px);
  }
  
  a:hover i {
    animation: pulse 0.5s ease;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }
  /* ==================== Blog Page Styles ==================== */
        .blog-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%),
                        url('/img/blog-bg.jpg') center/cover no-repeat;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
            z-index: 1;
        }

        .blog-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 100px 20px;
        }

        .blog-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00D2FF 0%, #A29BFE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        .blog-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .blog-search {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }

        .blog-search input {
            width: 100%;
            padding: 15px 25px;
            border-radius: 50px;
            border: none;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .blog-search input:focus {
            outline: none;
            box-shadow: 0 5px 20px rgba(108, 92, 231, 0.3);
            transform: translateY(-2px);
        }

        .blog-search button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .blog-search button:hover {
            transform: scale(1.05);
        }

        .blog-container {
            padding: 80px 0;
            position: relative;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .blog-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(0);
            opacity: 1;
            border: 1px solid rgba(108, 92, 231, 0.1);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
        }

        .blog-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-img {
            transform: scale(1.05);
        }

        .blog-card-content {
            padding: 25px;
        }

        .blog-card-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .blog-card-date {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }

        .blog-card-date i {
            margin-right: 5px;
            color: var(--primary);
        }

        .blog-card-category {
            background: rgba(108, 92, 231, 0.1);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .blog-card-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .blog-card:hover .blog-card-title {
            color: var(--primary);
        }

        .blog-card-excerpt {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(108, 92, 231, 0.1);
            padding-top: 15px;
        }

        .blog-card-author {
            display: flex;
            align-items: center;
        }

        .blog-card-author-img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
            border: 2px solid var(--primary);
        }

        .blog-card-author-name {
            font-size: 0.9rem;
            color: var(--text);
        }

        .blog-card-readmore {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .blog-card-readmore i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .blog-card-readmore:hover {
            color: var(--primary-light);
        }

        .blog-card-readmore:hover i {
            transform: translateX(3px);
        }

        .blog-pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .pagination-list {
            display: flex;
            list-style: none;
            gap: 10px;
        }

        .pagination-item {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--card-bg);
            color: var(--text);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            border: 1px solid rgba(108, 92, 231, 0.1);
        }

        .pagination-item:hover, .pagination-item.active {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
        }

        .pagination-item.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        .blog-sidebar {
            position: sticky;
            top: 100px;
        }

        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(108, 92, 231, 0.1);
        }

        .widget-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            color: var(--text);
        }

        .categories-list {
            list-style: none;
        }

        .category-item {
            margin-bottom: 10px;
        }

        .category-link {
            display: flex;
            justify-content: space-between;
            color: var(--text-light);
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
            border-bottom: 1px dashed rgba(108, 92, 231, 0.2);
        }

        .category-link:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .category-count {
            background: rgba(108, 92, 231, 0.1);
            color: var(--primary);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
        }

        .popular-posts {
            list-style: none;
        }

        .popular-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed rgba(108, 92, 231, 0.2);
        }

        .popular-post-img {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            object-fit: cover;
            margin-right: 15px;
            transition: transform 0.3s ease;
        }

        .popular-post:hover .popular-post-img {
            transform: scale(1.05);
        }

        .popular-post-content {
            flex: 1;
        }

        .popular-post-title {
            font-size: 0.95rem;
            margin-bottom: 5px;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .popular-post:hover .popular-post-title {
            color: var(--primary);
        }

        .popular-post-date {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            background: rgba(108, 92, 231, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .tag:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .newsletter-widget {
            background: var(--gradient);
            color: white;
            text-align: center;
            padding: 30px;
            border-radius: 15px;
        }

        .newsletter-widget h3 {
            color: white;
            margin-bottom: 15px;
        }

        .newsletter-widget p {
            opacity: 0.9;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .newsletter-widget input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 50px;
            border: none;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .newsletter-widget button {
            width: 100%;
            padding: 12px;
            border-radius: 50px;
            border: none;
            background: var(--dark);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-widget button:hover {
            background: var(--darker);
            transform: translateY(-2px);
        }

/* Blog Container */
.blog-container {
    padding: 60px 0;
    background-color: var(--light);
}

.blog-hero-box {
    text-align: center;
    margin-bottom: 50px;
}

.blog-hero-box h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.blog-hero-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Blog Search */
.blog-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.blog-search input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid var(--text-light);
    font-size: 1rem;
    background-color: var(--card-bg);
    color: var(--text);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.blog-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 85%;
    width: 40px;
    height: 34px;
    cursor: pointer;
    transition: var(--transition);
}

.blog-search button:hover {
    background: var(--primary-light);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-card-img-container {
    height: 200px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card-category {
    color: var(--primary);
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text);
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.blog-card-author {
    display: flex;
    align-items: center;
}

.blog-card-author-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.blog-card-author-name {
    font-size: 0.9rem;
    color: var(--text);
}

.blog-card-readmore {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-readmore:hover {
    color: var(--primary-light);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.pagination-item:hover {
    background: var(--primary);
    color: white;
}

.pagination-item.active {
    background: var(--primary);
    color: white;
}

.pagination-item.disabled {
    color: var(--text-light);
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-hero-box h1 {
        font-size: 2rem;
    }
    
    .blog-hero-box p {
        font-size: 1rem;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 70px;
    }
    
    .blog-container {
        padding: 40px 15px;
    }
    
    .blog-hero-box {
        margin-bottom: 30px;
    }
    
    .blog-hero-box h1 {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-img-container {
        height: 180px;
    }
    
    .pagination-item {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}



/* Ticker animations */
.ticker-container {
    position: relative;
    width: 100%;
    background: var(--primary-bg);
    color: var(--text-primary);
    padding: 15px 0;
    overflow: hidden;
    z-index: 1;
}

.ticker-container::before, .ticker-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(0,255,136,0) 0%, 
        rgba(0,255,136,1) 50%, 
        rgba(0,255,136,0) 100%);
    z-index: 2;
}

.ticker-container::before {
    top: 0;
}

.ticker-container::after {
    bottom: 0;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Keyframes for animations */
@keyframes float-particle {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translate(100px, -100px) scale(1.2);
        opacity: 0;
    }
}

@keyframes float-coin {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-30px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-60px) rotate(180deg) scale(1); }
    75% { transform: translateY(-30px) rotate(270deg) scale(0.9); }
    100% { transform: translateY(0) rotate(360deg) scale(1); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coin, .coin-footer {
        font-size: 20px;
    }
    
    .ticker-content {
        animation-duration: 60s;
    }
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}
/* ==================== Responsive Styles ==================== */
@media (max-width: 1200px) {
    .container {
        padding: 20px 20px;
    }
    
    .consultation-card {
        flex-direction: column;
    }
    
    .consultation-action {
        width: 100%;
        padding: 40px;
    }
    
    .platform-card {
        min-width: 250px;
    }

    .payment-methods-popup {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .dashboard {
        grid-template-columns: 1fr;
    }
    
    .market-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .indices-container {
        grid-template-columns: 1fr;
    }
    
    .card {
        grid-column: span 1 !important;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}


@media (max-width: 768px) {
    .top-header {
        height: auto;
        padding: 8px 0;
        margin-top: -70px;
    }
    
    .top-header-container {
        
        gap: 8px;
        padding: 0 15px;
        height: auto;
    }
    
    .top-header-social {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .top-header-social a {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .top-header-auth {
        width: 100%;
        justify-content: center;
        gap: 8px;
        margin-bottom: 5px;
    }
    
    .top-header-auth a {
        padding: 4px 12px;
        font-size: 12px;
        line-height: 18px;
    }
    
    .login-btn {
        margin-right: 0;
    }
    
    /* Disable hover effects on touch devices */
    .top-header-social a:hover,
    .login-btn:hover,
    .signup-btn:hover {
        transform: none;
        box-shadow: none;
    }
}

       
        /* ===== Book Section Styles ===== */
.book-section {
    background-color: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.book-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 0;
}

.book-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.book-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.book-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(0, 210, 255, 0.05) 100%);
    z-index: -1;
}

.book-details {
    flex: 1;
    min-width: 300px;
}

.book-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.book-image-wrapper:hover {
    transform: perspective(1000px) rotateY(-5deg) scale(1.02);
}

.book-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.book-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.book-title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.book-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.book-rating {
    margin-bottom: 25px;
}

.stars {
    color: #FFC107;
    font-size: 20px;
    margin-bottom: 5px;
}

.rating-text {
    color: var(--text-light);
    font-size: 14px;
    margin-left: 10px;
}

.book-description {
    margin-bottom: 30px;
}

.book-description p {
    margin-bottom: 15px;
    color: var(--text);
}

.book-description ul {
    list-style: none;
    margin-top: 15px;
}

.book-description li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.book-description i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 14px;
}

.book-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.discount-badge {
    background-color: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.order-now-btn {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    background: var(--gradient);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.order-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.order-now-btn:hover .btn-hover-effect {
    left: 100%;
}

.book-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.meta-item i {
    color: var(--primary);
}

/* Instagram Popup */
.instagram-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.instagram-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transform: translateY(50px);
    transition: var(--transition);
}

.instagram-popup.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.popup-close:hover {
    background-color: var(--accent);
    transform: rotate(90deg);
}

.instagram-icon {
    font-size: 50px;
    color: #E1306C;
    margin-bottom: 20px;
}

.instagram-popup h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text);
}

.instagram-popup p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.order-details {
    background-color: rgba(108, 92, 231, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.order-details p {
    color: var(--text);
    margin: 0;
}

.continue-btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
}

.continue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.small-text {
    font-size: 13px;
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .book-container {
        padding: 30px 20px;
    }
    
    .book-title {
        font-size: 28px;
                text-align: center;
    }
    
    .current-price {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .book-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Trading Journal Section */
.trading-journal-section {
    padding: 40px 0;
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trading-journal-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.trading-journal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: 0;
}

.journal-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
}

.journal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.journal-title span {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.journal-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: var(--gradient);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(var(--primary), 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary), 0.4);
}

.download-btn:active {
    transform: translateY(1px);
}

.download-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    fill: currentColor;
}

.journal-image {
    position: relative;
    z-index: 1;
}

.excel-icon {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 5px 15px rgba(var(--primary), 0.2));
    transition: var(--transition);
}

.trading-journal-card:hover .excel-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Design */
@media (min-width: 768px) {
    .trading-journal-card {
        flex-direction: row;
        text-align: left;
        padding: 60px;
    }
    
    .journal-content {
        margin-bottom: 0;
        margin-right: 40px;
        text-align: left;
        flex: 1;
    }
    
    .journal-title {
        font-size: 3rem;
    }
    
    .journal-description {
        margin-left: 0;
        margin-right: 0;
    }
    
    .excel-icon {
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 992px) {
    .journal-title {
        font-size: 3.5rem;
    }
    
    .excel-icon {
        width: 150px;
        height: 150px;
    }
}
/* Course Popup Styles */
.course-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.course-popup {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.course-popup-overlay.active .course-popup {
    transform: translateY(0);
}

.course-popup-content {
    color: #fff;
}

.course-popup h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4cc9f0;
    text-align: center;
    font-weight: 700;
}

.course-highlights {
    margin-bottom: 25px;
}

.course-highlights p {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.course-highlights i {
    color: #4cc9f0;
    margin-right: 10px;
    font-size: 18px;
    margin-top: 3px;
}

.course-price {
    text-align: center;
    margin: 25px 0;
}

.original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 18px;
    margin-right: 10px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #f72585;
}

.discount-badge {
    background-color: #f72585;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-left: 10px;
    display: inline-block;
    transform: translateY(-5px);
}

.book-seat-btn {
    background: linear-gradient(90deg, #f72585 0%, #7209b7 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.4);
}

.book-seat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 37, 133, 0.6);
}

.book-seat-btn:active {
    transform: translateY(1px);
}

/* Payment Popup Updates */
.payment-popup .amount {
    font-size: 32px;
    font-weight: 700;
    color: #f72585;
}

.payment-popup .amount-text {
    color: #f72585;
    font-weight: 600;
}

/* Instagram Popup Styles */
.instagram-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-popup.active {
    display: flex;
    opacity: 1;
}

.instagram-popup .popup-content {
    background: linear-gradient(135deg, #405DE6 0%, #5851DB 20%, #833AB4 40%, #C13584 60%, #E1306C 80%, #FD1D1D 100%);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.instagram-popup .instagram-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: white;
}

.instagram-popup h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.instagram-popup p {
    margin-bottom: 15px;
    font-size: 16px;
}

.instagram-popup .order-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.instagram-popup .order-details p {
    margin: 10px 0;
}

.instagram-popup .continue-btn {
    background: white;
    color: #E1306C;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-block;
}

.instagram-popup .continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.instagram-popup .small-text {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 20px;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: rotate(90deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .course-popup {
        width: 95%;
        padding: 20px;
    }
    
    .course-popup h2 {
        font-size: 24px;
    }
    
    .course-highlights p {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .book-seat-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}
.container-pop {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
        }

        section {
            padding: 50px 0;
            position: relative;
        }
/* Base Styles */
.x7f3k9p2 {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    text-align: center;
}

.x7f3k9p2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
    z-index: -1;
}

.x7f3k9p2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Instagram Payment Section */
.y4m2n8q1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    width: 100%;
}

.y4m2n8q1::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.z9p5r3s6 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 16px;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(253, 29, 29, 0.2);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.z9p5r3s6:hover {
    transform: scale(1.1) rotate(10deg);
}

.b2n7m4k8 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3436;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    text-align: center;
    width: 100%;
}

.c5d9e2f7 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 0;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(45deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(253, 29, 29, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: auto;
    max-width: 100%;
}

.c5d9e2f7::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.c5d9e2f7:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 29, 29, 0.4);
}

.c5d9e2f7:hover::before {
    left: 100%;
}

/* Thank You Message */
.a3b8c6d1 {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.6;
    padding: 1.5rem;
    margin: 1.5rem auto 0;
    background-color: rgba(255, 215, 0, 0.08);
    border-radius: 12px;
    border-left: 4px solid #fdcb6e;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    text-align: center;
    max-width: 90%;
}

.a3b8c6d1::before {
    content: '✓';
    position: absolute;
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #00b894;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 184, 148, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .x7f3k9p2 {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto;
        width: calc(100% - 2rem);
    }
    
    .y4m2n8q1 {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .z9p5r3s6 {
        width: 56px;
        height: 56px;
    }
    
    .c5d9e2f7 {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .a3b8c6d1 {
        padding: 1.25rem;
        margin-top: 1.25rem;
    }
}

/* Micro-interactions */
.x7f3k9p2:active {
    transform: scale(0.98);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .x7f3k9p2 {
        background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
        border-color: rgba(255, 255, 255, 0.1);
        color: #f5f6fa;
    }
    
    .b2n7m4k8 {
        color: #f5f6fa;
    }
    
    .a3b8c6d1 {
        color: #dfe6e9;
        background-color: rgba(255, 215, 0, 0.15);
        border-left-color: #ffeaa7;
    }
}