/* ===== GETTING STARTED PAGE STYLES ===== */
/* Professional Wallet Guide Design */

/* ===== VARIABLES ===== */
:root {
  --wallet-gradient: linear-gradient(135deg, 
    var(--dark-bg) 0%, 
    #1a120b 30%, 
    #2a1f14 50%, 
    #1a120b 70%, 
    var(--dark-bg) 100%);
  
  /* Wallet-specific colors */
  --metamask-orange: #f6851b;
  --phantom-purple: #ab9ff2;
  --base-blue: #0052ff;
  --solana-green: #00ffa3;
}

/* ===== HERO SECTION ===== */
.wallet-hero {
  background: var(--wallet-gradient);
  padding: 4rem 0 3rem;
}

@media (min-width: 768px) {
  .wallet-hero {
    padding: 6rem 0 4rem;
  }
}

.wallet-hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 992px) {
  .wallet-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.wallet-hero .hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .wallet-hero .hero-title {
    font-size: 3rem;
  }
}

.wallet-hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.wallet-hero .hero-description {
  font-size: 1.05rem;
  max-width: 600px;
}

.guide-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--animation-fast) ease;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.nav-button i {
  font-size: 1.2rem;
}

.nav-button:nth-child(1) i {
  color: var(--metamask-orange);
}

.nav-button:nth-child(2) i {
  color: var(--solana-green);
}

.nav-button:nth-child(3) i {
  color: var(--rebel-gold);
}

/* Wallet Visual */
.wallet-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .wallet-visual {
    flex-direction: row;
    justify-content: center;
  }
}

.wallet-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  width: 200px;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.wallet-container.metamask {
  border-color: rgba(246, 133, 27, 0.3);
}

.wallet-container.phantom {
  border-color: rgba(171, 159, 242, 0.3);
}

.wallet-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
}

.metamask .wallet-icon {
  background: var(--metamask-orange);
  color: white;
}

.phantom .wallet-icon {
  background: var(--phantom-purple);
  color: white;
}

.wallet-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.wallet-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.chain-connection {
  font-size: 2rem;
  color: var(--rebel-gold);
}

.setup-tip {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(212, 167, 106, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(212, 167, 106, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
}

.setup-tip i {
  color: var(--rebel-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.setup-tip p {
  color: white;
  margin: 0;
  font-size: 0.95rem;
}

/* ===== OVERVIEW SECTION ===== */
.overview-section {
  padding: 4rem 0;
  background: white;
}

.overview-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .overview-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .overview-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-overview {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8f9ff;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all var(--animation-medium) ease;
}

.step-overview:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--rebel-gold);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  color: #333;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.step-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.prerequisites {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(212, 167, 106, 0.2);
}

.prerequisites h4 {
  color: #333;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
}

.prerequisites h4 i {
  color: var(--rebel-gold);
}

.prerequisites ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.prerequisites li {
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.prerequisites li i {
  color: #4CAF50;
  font-size: 1.1rem;
}

/* ===== WALLET SECTIONS ===== */
.wallet-section {
  padding: 4rem 0;
}

.wallet-section.base-wallet {
  background: linear-gradient(135deg, rgba(246, 133, 27, 0.05) 0%, rgba(0, 82, 255, 0.05) 100%);
}

.wallet-section.solana-wallet {
  background: linear-gradient(135deg, rgba(171, 159, 242, 0.05) 0%, rgba(0, 255, 163, 0.05) 100%);
}

.wallet-content {
  max-width: 1000px;
  margin: 0 auto;
}

.wallet-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .wallet-intro {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
}

.wallet-logo {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

.base-wallet .wallet-logo {
  background: var(--metamask-orange);
  color: white;
}

.solana-wallet .wallet-logo {
  background: var(--phantom-purple);
  color: white;
}

.wallet-info {
  flex: 1;
}

.wallet-info h3 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.wallet-description {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Setup Steps */
.setup-steps {
  display: grid;
  gap: 1.5rem;
}

.setup-step {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 2px solid transparent;
  transition: all var(--animation-medium) ease;
}

.setup-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.base-wallet .setup-step:hover {
  border-color: var(--metamask-orange);
}

.solana-wallet .setup-step:hover {
  border-color: var(--phantom-purple);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}

.base-wallet .step-icon {
  background: var(--metamask-orange);
}

.solana-wallet .step-icon {
  background: var(--phantom-purple);
}

.step-header h4 {
  color: #333;
  font-size: 1.4rem;
  margin: 0;
}

.step-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-tips {
  background: rgba(212, 167, 106, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--rebel-gold);
  margin: 1rem 0;
}

.step-tips strong {
  color: #333;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.step-list li {
  color: #555;
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.step-list li:before {
  content: '•';
  color: var(--rebel-gold);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.warning {
  color: #e74c3c;
  font-weight: 700;
}

/* Network Configuration */
.network-config {
  background: #f8f9ff;
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.network-config h5 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.config-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.config-item:last-child {
  border-bottom: none;
}

.config-label {
  min-width: 120px;
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
}

.config-item code {
  font-family: 'Courier New', monospace;
  background: white;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex: 1;
  font-size: 0.9rem;
  color: #333;
}

.copy-config-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--rebel-gold);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: all var(--animation-fast) ease;
}

.copy-config-btn:hover {
  background: #e6b65f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 167, 106, 0.3);
}

/* Token Details */
.token-details {
  margin: 1.5rem 0;
}

.token-address {
  background: #f8f9ff;
  border-radius: 15px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .token-address {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.token-address strong {
  color: #333;
  font-size: 1rem;
}

.token-address code {
  font-family: 'Courier New', monospace;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex: 1;
  font-size: 0.85rem;
  color: #333;
  word-break: break-all;
  cursor: pointer;
  transition: all var(--animation-fast) ease;
}

.token-address code:hover {
  background: rgba(212, 167, 106, 0.1);
  border-color: var(--rebel-gold);
}

.copy-small {
  background: rgba(212, 167, 106, 0.1);
  border: 1px solid rgba(212, 167, 106, 0.3);
  color: var(--rebel-gold);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-fast) ease;
  flex-shrink: 0;
}

.copy-small:hover {
  background: var(--rebel-gold);
  color: white;
}

.add-token-instructions {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.add-token-instructions h5 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.add-token-instructions ol {
  padding-left: 1.5rem;
  margin: 0;
}

.add-token-instructions li {
  color: #555;
  padding: 0.5rem 0;
  line-height: 1.5;
}

/* Sol Options */
.sol-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .sol-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

.option-card {
  background: #f8f9ff;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--animation-fast) ease;
}

.option-card:hover {
  border-color: var(--phantom-purple);
  transform: translateY(-5px);
}

.option-icon {
  width: 50px;
  height: 50px;
  background: var(--phantom-purple);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.option-card h5 {
  color: #333;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.option-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.gas-tip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border-left: 4px solid #2196F3;
  margin-top: 1.5rem;
}

.gas-tip i {
  color: #2196F3;
  font-size: 1.2rem;
  margin-top: 0.125rem;
}

.gas-tip p {
  color: #333;
  margin: 0;
  font-size: 0.95rem;
}

/* ===== SECURITY SECTION ===== */
.security-section {
  padding: 4rem 0;
  background: white;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.security-card {
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all var(--animation-medium) ease;
}

.security-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.security-card.critical {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.security-card.important {
  border-color: #f39c12;
  background: rgba(243, 156, 18, 0.05);
}

.security-card.warning {
  border-color: #f1c40f;
  background: rgba(241, 196, 15, 0.05);
}

.security-card.info {
  border-color: #3498db;
  background: rgba(52, 152, 219, 0.05);
}

.security-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.critical .security-icon {
  background: #e74c3c;
  color: white;
}

.important .security-icon {
  background: #f39c12;
  color: white;
}

.warning .security-icon {
  background: #f1c40f;
  color: white;
}

.info .security-icon {
  background: #3498db;
  color: white;
}

.security-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.security-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.security-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-card li {
  color: #555;
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.security-card li:before {
  content: '✓';
  color: var(--rebel-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Security Checklist */
.security-checklist {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(212, 167, 106, 0.2);
}

.security-checklist h3 {
  color: #333;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
}

.checklist-items {
  display: grid;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all var(--animation-fast) ease;
}

.checklist-item:hover {
  border-color: var(--rebel-gold);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--rebel-gold);
}

.checklist-item label {
  color: #333;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1f14 100%);
}

.faq-section .section-header h2,
.faq-section .section-subtitle {
  color: white;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--animation-fast) ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-question i {
  transition: transform var(--animation-fast) ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--animation-medium) ease;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer ul {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

/* ===== NEXT STEPS SECTION ===== */
.next-steps {
  padding: 4rem 0;
  background: white;
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.next-step {
  text-align: center;
  padding: 2rem;
  background: #f8f9ff;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all var(--animation-medium) ease;
}

.next-step:hover {
  transform: translateY(-10px);
  border-color: var(--rebel-gold);
  box-shadow: var(--shadow-heavy);
}

.next-step .step-number {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

.next-step h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.next-step p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cta-button.small {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.support-box {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1f14 100%);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .support-box {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
}

.support-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  flex-shrink: 0;
}

.support-content h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.support-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.support-links {
  display: flex;
  gap: 1rem;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--animation-fast) ease;
}

.support-link:hover {
  background: var(--rebel-gold);
  transform: translateY(-3px);
}

.support-link i {
  font-size: 1.2rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
  .wallet-hero .hero-title {
    font-size: 2rem;
  }
  
  .wallet-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .nav-button {
    flex: 1;
    justify-content: center;
  }
  
  .wallet-container {
    width: 100%;
    max-width: 250px;
  }
  
  .setup-step {
    padding: 1.5rem;
  }
  
  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .config-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .config-label {
    min-width: auto;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .next-step {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .guide-navigation {
    flex-direction: column;
  }
  
  .nav-button {
    width: 100%;
  }
  
  .sol-options {
    grid-template-columns: 1fr;
  }
  
  .support-links {
    flex-direction: column;
  }
  
  .support-link {
    justify-content: center;
  }
}
.wallet-guide-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.95rem !important;
  margin-top: 1rem !important;
}
