* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* Navigation */
.navbar-main {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 1rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 70px;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    justify-self: start;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 6px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  bottom: 6px;
}




.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b35;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-self: center;
    z-index: 1002;
    margin-right: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
    justify-self: end;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 10px;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-register {
    background: #ff6b35;
    color: #e55a2b;
}

.btn-register:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.btn-login {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-login:hover {
    background: #f8f9fa;
    border-color: #ff6b35;
}

.language-switcher {
    margin-right: 1rem;
}

.language-link {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.language-link:hover {
    background: #f5f5f5;
    color: #ff6b35;
    border-color: #ff6b35;
}

/* Floating Language Switcher - Only show on Japanese pages */
.floating-language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #2c3e50;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    padding: 12px 20px;
    display: flex; /* Show by default */
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.floating-language-switcher:hover {
    background: #34495e;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    border-color: #ff6b35;
    text-decoration: none;
}

.language-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.flag-us {
    background-image: url('/ja/assets/images/united-states.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.flag-jp {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5MDAgNjAwIj48cmVjdCB3aWR0aD0iOTAwIiBoZWlnaHQ9IjYwMCIgZmlsbD0iI2ZmZiIvPjxjaXJjbGUgY3g9IjQ1MCIgY3k9IjMwMCIgcj0iMTgwIiBmaWxsPSIjYmMwMDJkIi8+PC9zdmc+');
}

.language-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-language-switcher:hover .language-text {
    color: #ff6b35;
}

.language-arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.floating-language-switcher:hover .language-arrow {
    border-color: #ff6b35;
    transform: rotate(-45deg) translateX(2px);
}

@media (max-width: 768px) {
    .floating-language-switcher {
        bottom: 80px;
        right: 15px;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .language-flag {
        width: 20px;
        height: 15px;
    }
    
    .language-text {
        font-size: 13px;
    }
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    text-align: center;
}

.main-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.main-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar-main {
    padding: 0 !important;
  }

  .nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 10px;
    position: relative;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1001;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    order: 3;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    width: 100%;
    text-align: center;
}

.nav-menu a {
    font-size: 1.1rem;
    padding: 1rem 0;
    display: block;
    width: 100%;
}

.nav-actions {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 1rem;
    width: 200px;
}

.btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.main-content h1 {
    font-size: 2rem;
}

.main-content p {
    font-size: 1rem;
}
}
@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .logo::before {
        width: 28px;
        height: 28px;
    }

    .logo::after {
        width: 16px;
        height: 16px;
        left: 6px;
    }
}


.language {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.search-btn, .download-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 25%, #cd853f 50%, #f4a460 75%, #ffd700 100%);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(255,107,53,0.2) 50%, rgba(247,147,30,0.1) 100%);
    z-index: 2;
}
.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    color: white;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: #ff6b35;
    font-weight: 700;
}

.asterisk {
    color: #ff6b35;
    font-weight: 400;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
}

.email-input-container {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 5px;
    min-width: 300px;
}

.email-input {
  flex: 1;
  padding: 18px 20px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  outline: none;
}

.email-input::placeholder {
    color: #999;
}

.email-submit {
    background: #666;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.signup-btn {
  padding: 18px 30px;
  border: none;
  border-radius: 50px;
  background: #ff6b35;
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.signup-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-form {
        flex-direction: column;
        align-items: flex-start;
    }

    .email-input-container {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .side-banner {
        display: none;
    }
}
.features-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.features-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  height: 60px;
  margin-bottom: 10px;
}

.point-label {
  display: block;
  color: #f7931e;
  font-style: italic;
  margin-bottom: 10px;
  font-weight: 500;
}

.feature-card h3 {
  color: #0066cc;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.carousel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    width: 100%;

    /* Remove fixed height */
    /* height: 600px; */
    overflow: hidden;; /* Important: show overflow */
}


.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    width: max-content;
}

.carousel-track.no-transition {
    transition: none;
}

.pricing-card {
    flex: 0 0 320px;
    margin: 0 16px;
    position: relative;
    transform-origin: center;
    transition: transform 0.6s ease;
}

.pricing-card.center {
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.side {
    transform: scale(0.95);
    z-index: 5;
}

.card-inner {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
}

.card-inner.popular {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 2px solid #3b82f6;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: -36px;
    background: #3b82f6;
    color: white;
    padding: 4px 28px;
    font-size: 11px;
    font-weight: 600;
    transform: rotate(45deg);
    transform-origin: center;
    z-index: 20;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}


.card-content {
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
}

.popular .card-icon {
    background: white;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: #6b7280;
}

.popular .card-icon svg {
    color: #8b5cf6;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.popular .card-title {
    color: white;
}

.card-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.popular .card-price {
    color: white;
}

.card-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

.popular .card-subtitle {
    color: #9ca3af;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.included {
    color: #10b981;
}

.feature-icon.excluded {
    color: #6b7280;
}

.popular .feature-icon.excluded {
    color: #4b5563;
}

.feature-text {
    color: #374151;
}

.popular .feature-text {
    color: white;
}

.feature-text.excluded {
    color: #6b7280;
}

.popular .feature-text.excluded {
    color: #9ca3af;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background: #f8fafc;
}

.nav-button.prev {
    left: 16px;
}

.nav-button.next {
    right: 16px;
}

.nav-button svg {
    width: 24px;
    height: 24px;
    color: #6b7280;
}

.indicators {
    display: flex;
    gap: 8px;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #3b82f6;
    transform: scale(1.25);
}

.indicator:hover {
    background: #9ca3af;
}
.trading-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 50px;
    overflow: hidden;
}

.trading-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff9500);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.trading-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trading-content {
    padding: 2rem 0;
}

.trading-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.trading-title .highlight {
    color: #ff6b35;
}

.description {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.secondary-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    margin-bottom: 3rem;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.download-section {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.qr-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, #333 25%, transparent 25%),
        linear-gradient(-45deg, #333 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #333 75%),
        linear-gradient(-45deg, transparent 75%, #333 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-button {
    display: flex;
    align-items: center;
    background: #000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.app-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.app-icon {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
}

.app-text {
    display: flex;
    flex-direction: column;
}

.app-text-small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.app-text-large {
    font-size: 1.1rem;
    font-weight: 600;
}

.person-image {
    position: relative;
    z-index: 3;
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.earnings-card {
    position: absolute;
    top: 80px;
    right: -50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 4;
    border: 1px solid rgba(255,255,255,0.2);
}

.earnings-title {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.earnings-subtitle {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.earnings-amount {
    font-size: 1.5rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 1rem;
}

.earnings-chart {
    width: 150px;
    height: 60px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.earnings-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: rgba(255,255,255,0.3);
    clip-path: polygon(0% 100%, 20% 60%, 40% 80%, 60% 40%, 80% 70%, 100% 20%, 100% 100%);
}

.support-card {
    position: absolute;
    bottom: 100px;
    left: -70px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 4;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.support-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.support-text {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .trading-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .trading-title {
        font-size: 2.5rem;
    }

    .earnings-card {
        right: 20px;
    }

    .support-card {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .trading-section::before {
        width: 100%;
        clip-path: none;
        opacity: 0.1;
    }

    .trading-title {
        font-size: 2rem;
    }

    .download-section {
        flex-direction: column;
        align-items: center;
    }

    .person-image {
        width: 300px;
        height: 400px;
    }
}
.instruments-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.instruments-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-section {
    padding: 2rem 0;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.main-title .highlight {
    color: #ff6b35;
}

.tabs-container {
    margin-bottom: 3rem;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    color: #ff6b35;
}

.tab-button.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.tab-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tab-details {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tab-details .underline-link {
    color: #ff6b35;
    text-decoration: underline;
    font-weight: 600;
}

.learn-more-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.visual-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.tab-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  transition: all 0.3s ease;
  background-color: transparent; /* Ensure no white bg */

}

.tab-image.active {
    display: flex;
}

.tab-image.forex-image {
    background-image: url('../images/forex.webp');
}

.tab-image.indices-image {
    background-image: url('../images/indices.webp');
}

.tab-image.commodities-image {
    background-image: url('../images/commodities.webp');
}

.tab-image.shares-image {
    background-image: url('../images/stocks.webp');
}

.tab-image.crypto-image {
    background-image: url('../images/crypto.webp');
}
.side-ribbon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform-origin: center;
}

@media (max-width: 1024px) {
    .instruments-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .tabs-nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .visual-section {
        height: 400px;
    }

    .floating-card {
        font-size: 1.2rem;
    }
}
.support-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative; /* Added for proper positioning context */
    padding: 80px 20px; /* Added padding */
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 10; /* Ensure header stays above floating elements */
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    line-height: 1.6;

}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 10; /* Ensure cards stay above floating elements */
}

.support-card-center {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-card-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-card-center:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-card-center:hover::before {
    transform: scaleX(1);
}

.support-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.support-card-center:hover .support-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.card-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.card-button {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #ff6b35;
    border-radius: 25px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-button:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Fixed floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1; /* Lower z-index to keep behind content */
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.08); /* More subtle color */
    animation: float 8s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 8%;
    animation-delay: 3s;
}

.floating-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 3%;
    animation-delay: 6s;
}

.floating-circle:nth-child(4) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-card-center {
        padding: 30px 20px;
    }

    .floating-circle {
        display: none; /* Hide on mobile for cleaner look */
    }
}
.trading-section-hero {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #1a2332 0%, #2d4a5a 25%, #3d6b73 50%, #8b5a3c 75%, #c17a47 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.main-title-hero {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.8;
}

.cta-button-hero {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.arrow-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow-icon svg {
    width: 16px;
    height: 16px;
    fill: #ff6b35; /* same as button text or accent color */
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title-hero {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .stats-container {
        gap: 40px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .cta-button-hero {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-title-hero {
        font-size: 2rem;
    }

    .stats-container {
        gap: 30px;
        flex-direction: column;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}
.footer {
    background-color: white;
    padding: 60px 0 40px;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-logo::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 3px solid white;
    border-radius: 50%;
    background: transparent;
}

.footer-brand-name {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
}

.footer-contact {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact a {
    color: #4285f4;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    flex: 1;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4285f4;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background-color: #4285f4;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
    margin-top: 40px;
}

.footer-disclaimers {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-disclaimers p {
    margin-bottom: 15px;
}

.footer-disclaimers a {
    color: #4285f4;
    text-decoration: none;
}

.footer-disclaimers a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    margin-top: 20px;
}

.risk-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #856404;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}
.signup-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.signup-visual {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.signup-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.visual-content {
    position: relative;
    z-index: 2;
}

.visual-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.visual-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-list-signup {
    list-style: none;
    text-align: left;
}

.features-list-signup li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.features-list-signup li::before {
    content: '✓';
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
}

.signup-form {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #5a6c7d;
    font-size: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input {
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #2c3e50;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
    color: #adb5bd;
}

.form-select-signup {
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: #f8f9fa;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select-signup:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.radio-option:hover {
    border-color: #ff6b35;
    background: white;
}

.radio-option.selected {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option label {
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.login-link {
    text-align: center;
    margin-top: 25px;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.login-link a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .signup-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .signup-visual {
        padding: 30px;
    }

    .visual-title {
        font-size: 2rem;
    }

    .signup-form {
        padding: 40px 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {

    .signup-form {
        padding: 30px 20px;
    }

    .radio-group {
        flex-direction: column;
    }

    .visual-title {
        font-size: 1.8rem;
    }
}
.signup-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9; /* optional: give it a soft background */
    padding: 40px 20px;
}
.milestone-section {
  padding: 80px 5%;
  background: #f8f9fa;
}

.milestone-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.milestone-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #ff6b35;
}

.milestone-year {
  min-width: 80px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b35;
}

.milestone-details p {
  margin: 0 0 5px;
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .milestone-item {
    flex-direction: column;
    gap: 10px;
    padding-left: 10px;
  }

  .milestone-year {
    font-size: 1.1rem;
  }
}
.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.value-icon {
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.value-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.value-text {
  font-size: 0.95rem;
  color: #5a6c7d;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .brand-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-values-grid {
    grid-template-columns: 1fr;
  }
}
.brand-values-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo img {
  max-width: 100%;
  height: auto;
  max-height: 150px;
}

/* Responsive fix */
@media (max-width: 768px) {
  .brand-values-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-logo {
    margin-top: 20px;
  }

  .brand-text .cta-button {
    margin: 0 auto;
  }
}
.policy-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  padding: 60px 20px;
}

.policy-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-tab {
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  padding: 12px 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.policy-tab:hover,
.policy-tab.active {
  color: #ff6b35;
  border-left: 3px solid #ff6b35;
  background: #f8f9fa;
  font-weight: 600;
}

.policy-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.policy-section {
  display: none;
}

.policy-section.active {
  display: block;
}

@media (max-width: 768px) {
  .policy-container {
    grid-template-columns: 1fr;
  }

  .policy-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 20px;
  }

  .policy-tab {
    white-space: nowrap;
    font-size: 14px;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .policy-tab.active {
    border-bottom: 2px solid #ff6b35;
    border-left: none;
  }
}

/* Password Requirements Styling */
.password-requirements {
  margin-top: 8px;
  font-size: 13px;
}

.requirement {
  color: #e74c3c;
  margin-bottom: 4px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.requirement.valid {
  color: #27ae60;
}

.password-strength {
  margin-top: 10px;
}

.strength-bar {
  height: 6px;
  background: #ecf0f1;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.strength-fill {
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.strength-fill.weak {
  background: #e74c3c;
}

.strength-fill.medium {
  background: #f39c12;
}

.strength-fill.strong {
  background: #27ae60;
}

.strength-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.strength-text.weak {
  color: #e74c3c;
}

.strength-text.medium {
  color: #f39c12;
}

.strength-text.strong {
  color: #27ae60;
}
