
  :root {
    --primary: #ff6b00;
    --secondary: #3498db;
    --dark: #1a1a1a;
    --darker: #121212;
    --light: #f5f5f5;
    --gray: #757575;
    --success: #2ecc71;
    --danger: #e74c3c;
    --text: #e0e0e0;
    --text-dark: #333;
    --border-radius: 4px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    --rarity-consumer: #b0c3d9;
    --rarity-industrial: #5e98d9;
    --rarity-mil-spec: #4b69ff;
    --rarity-restricted: #8847ff;
    --rarity-classified: #d32ee6;
    --rarity-covert: #eb4b4b;
    --rarity-knife: #caaf50;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--darker);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--light);
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary);
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
  }
  
  .btn:hover {
    background-color: #ff8c3f;
    color: var(--light);
    transform: translateY(-2px);
  }
  
  .btn-primary {
    background-color: var(--primary);
  }
  
  .btn-secondary {
    background-color: var(--secondary);
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
  }
  
  .hero-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
  }
  
  .hero-section .content {
    max-width: 800px;
    z-index: 1;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-section .subtitle {
    font-size: 1.25rem;
    color: var(--light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  /* Intro Section */
  .intro-section {
    padding: 80px 0;
    background-color: var(--dark);
  }
  
  .info-box {
    background-color: rgba(52, 152, 219, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    margin: 30px 0;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
  }
  
  .info-box i {
    color: var(--secondary);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
  }
  
  .info-box p {
    margin-bottom: 0;
  }
  
  /* Guides Grid */
  .guides-grid {
    padding: 80px 0;
    background-color: var(--darker);
  }
  
  .guide-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    background-color: var(--dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .guide-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .guide-content {
    padding: 25px;
  }
  
  .guide-content h3 {
    margin-top: 0;
    color: var(--light);
  }
  
  .guide-content p {
    color: var(--text);
    margin-bottom: 20px;
  }
  
  /* Rarity Guide */
  .rarity-guide {
    position: relative;
    padding: 80px 0;
    color: var(--light);
  }
  
  .rarity-guide .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.2);
  }
  
  .rarity-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  
  .rarity-item {
    background-color: rgba(26, 26, 26, 0.8);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid;
  }
  
  .rarity-item h3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .rarity-item h3 i {
    margin-right: 10px;
  }
  
  .rarity-item p {
    margin-bottom: 0;
  }
  
  .rarity-consumer {
    border-color: var(--rarity-consumer);
  }
  
  .rarity-consumer h3 i {
    color: var(--rarity-consumer);
  }
  
  .rarity-industrial {
    border-color: var(--rarity-industrial);
  }
  
  .rarity-industrial h3 i {
    color: var(--rarity-industrial);
  }
  
  .rarity-mil-spec {
    border-color: var(--rarity-mil-spec);
  }
  
  .rarity-mil-spec h3 i {
    color: var(--rarity-mil-spec);
  }
  
  .rarity-restricted {
    border-color: var(--rarity-restricted);
  }
  
  .rarity-restricted h3 i {
    color: var(--rarity-restricted);
  }
  
  .rarity-classified {
    border-color: var(--rarity-classified);
  }
  
  .rarity-classified h3 i {
    color: var(--rarity-classified);
  }
  
  .rarity-covert {
    border-color: var(--rarity-covert);
  }
  
  .rarity-covert h3 i {
    color: var(--rarity-covert);
  }
  
  .rarity-knife {
    border-color: var(--rarity-knife);
  }
  
  .rarity-knife h3 i {
    color: var(--rarity-knife);
  }
  
  /* Wear Guide */
  .wear-guide {
    padding: 80px 0;
    background-color: var(--dark);
  }
  
  .wear-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .wear-item {
    background-color: var(--darker);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .wear-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .wear-item h3 {
    padding: 15px 20px 0;
    color: var(--light);
  }
  
  .wear-item p {
    padding: 0 20px 20px;
    color: var(--text);
    margin-bottom: 0;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 80px 0;
    background-color: var(--darker);
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--dark);
  }
  
  .faq-question {
    padding: 20px;
    background-color: rgba(255, 107, 0, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--light);
    display: flex;
    align-items: center;
  }
  
  .faq-question h3 i {
    color: var(--primary);
    margin-right: 10px;
  }
  
  .toggle-icon {
    color: var(--primary);
    transition: var(--transition);
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-answer p {
    padding: 20px 0;
    margin: 0;
  }
  
  .faq-item.active .toggle-icon {
    transform: rotate(180deg);
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
  }
  
  /* CTA Section */
  .cta-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
  }
  
  .cta-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.2);
  }
  
  .cta-section h2 {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-section h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--light);
    text-align: left;
  }
  
  .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    color: var(--light);
    font-size: 1rem;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  /* Responsive Styles */
  @media (min-width: 768px) {
    .guide-card {
      flex-direction: row;
    }
    
    .guide-card img {
      width: 40%;
      height: auto;
    }
    
    .rarity-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .wear-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section h1 {
      font-size: 3.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .rarity-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .wear-grid {
      grid-template-columns: repeat(5, 1fr);
    }
    
    .hero-section h1 {
      font-size: 4rem;
    }
  }
