* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}



.gold-row {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.gold-left, .gold-right {
  flex: 1;
  min-width: 300px;
}

.gold-actions {
  margin-top: 20px;
}
.gold-actions .btn-buy,
.gold-actions .btn-sell {
  padding: 12px 24px;
  margin: 5px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.btn-buy {
  background: #28a745;
  color: #fff;
}
.btn-sell {
  background: #dc3545;
  color: #fff;
}

.gold-calculator {
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}
.calc-row {
  margin-bottom: 12px;
}
.calc-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
.calc-row input,
.calc-row select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.btn-calc {
  display: inline-block;
  padding: 10px 20px;
  background: #ffb400;
  border: none;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}
.calc-result {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}



.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: bold;
}

.star-icon {
  color: #ffd700;
  font-size: 1.8rem;
}

.brand-text {
  color: #ffffff;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ffd700;
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.login-btn {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  border-radius: 4px;
  transition: all 0.3s;
}

.login-btn:hover {
  background: #333;
}

.register-btn {
  background: #ffd700;
  color: #000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s;
}

.register-btn:hover {
  background: #ffed4e;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('background.jpg') center/cover;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gold-text {
  color: #ffd700;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: #cccccc;
}

.hero-stats {
  margin-bottom: 2rem;
}

.stat-item {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 1px solid #ffd700;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #ffd700;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
}

.cta-button {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #111111;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
}

.section-subtitle {
  text-align: center;
  color: #cccccc;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #333;
  color: #cccccc;
  position: relative;
  padding-left: 2rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
}

/* Why Invest Section */
.why-invest {
  padding: 5rem 0;
  background: #0a0a0a;
}

.investment-stats {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.stats-header {
  margin-bottom: 2rem;
}

.time-periods {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.period-btn {
  background: transparent;
  color: #cccccc;
  border: 1px solid #333;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.period-btn.active,
.period-btn:hover {
  background: #ffd700;
  color: #000;
  border-color: #ffd700;
}

.chart-container {
  margin: 2rem 0;
  background: #111;
  border-radius: 8px;
  padding: 1rem;
}

.price-info {
  display: grid;
  
  gap: 2rem;
  margin-top: 0rem;
}

.price-section h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
}

.price {
  color: #ffd700;
  font-weight: bold;
}

.calculator {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.calc-input,
.calc-select {
  background: #333;
  border: 1px solid #555;
  color: #fff;
  padding: 0.5rem;
  border-radius: 4px;
}

.calc-btn {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.calc-note {
  font-size: 0.9rem;
  color: #999;
}

/* Why Choose Section */
.why-choose {
  padding: 5rem 0;
  background: #111111;
}

.choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.choose-image img {
  width: 100%;
  border-radius: 12px;
}

.choose-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  background: #ffd700;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-content h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #cccccc;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background: #0a0a0a;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-item {
  text-align: center;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 12px;
  transition: transform 0.3s;
}

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

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step-item h3 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.step-item p {
  color: #cccccc;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: #111111;
}

.testimonial-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.customer-info {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.customer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.customer-details h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.customer-details p {
  color: #999;
  font-size: 0.9rem;
}

.rating {
  color: #ffd700;
  margin-top: 0.5rem;
}

.testimonial-content blockquote {
  font-size: 1.1rem;
  color: #cccccc;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: #333;
  border-radius: 8px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
}

.stat-label {
  font-size: 0.9rem;
  color: #999;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: #0a0a0a;
}

.faq-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.faq-left h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #333;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #cccccc;
  display: none;
}

.faq-answer.active {
  display: block;
}

.contact-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.contact-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #cccccc;
  margin-bottom: 1.5rem;
}

.contact-btn {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #ffed4e;
}

/* Blog Section */
.blog {
  padding: 5rem 0;
  background: #111111;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.view-all {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: #999;
  font-size: 0.9rem;
}

.blog-card h3 {
  color: #ffffff;
  margin: 1rem 0;
  font-size: 1.2rem;
}

.blog-card p {
  color: #cccccc;
  margin-bottom: 1rem;
}

.read-more {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

/* Footer CTA */
.footer-cta {
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('67501bdf1ffc91733303263.png') center/cover;
  text-align: center;
}

.footer-cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-cta p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #cccccc;
  margin-bottom: 1rem;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-methods span {
  background: #333;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    max-width: 768px;
  }
  
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .services-grid,
  .choose-content,
  .testimonial-card,
  .faq-content {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .price-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-header {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-cta h2 {
    font-size: 2rem;
  }
  
  .calculator {
    flex-direction: column;
  }
  
  .time-periods {
    flex-direction: column;
  }
}




