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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/* Header styles */
/* Base Styles & Reset */
  :root {
    --color-primary: #3a4046;
    --color-secondary: #e8b923;
    --color-accent: #c93e3e;
    --color-dark: #1e2124;
    --color-light: #f2f2f2;
    --color-text: #e0e0e0;
    --color-bg: #252a30;
    --color-bg-dark: #1a1d20;
    --font-main: 'Rajdhani', sans-serif;
    --font-secondary: 'Barlow Condensed', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
  }
  
  /* Header Base */
  .site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    z-index: 100;
    font-family: var(--font-main);
  }
  
  .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
  }
  
  /* Logo Styles */
  .logo-wrapper {
    position: relative;
    z-index: 2;
  }
  
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
  }
  
  .logo:hover {
    transform: translateY(-2px);
  }
  
  .tank-icon {
    position: relative;
    width: 28px;
    height: 18px;
    margin-right: 10px;
  }
  
  .tank-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 12px;
    background-color: var(--color-secondary);
    border-radius: 2px;
  }
  
  .tank-turret {
    position: absolute;
    top: 0;
    left: 12px;
    width: 14px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 1px;
    transform-origin: center left;
    transform: rotate(-5deg);
  }
  
  .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--color-secondary), #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  /* Navigation */
  .desktop-nav {
    justify-self: center;
    margin-left: 2rem;
  }
  
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
  }
  
  .nav-item {
    position: relative;
  }
  
  .nav-link {
    display: block;
    padding: 0.5rem 0.8rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
    transform: translateX(-50%);
  }
  
  .nav-link:hover {
    color: #ffffff;
  }
  
  .nav-link:hover::after {
    width: 70%;
  }
  
  .nav-item.active .nav-link {
    color: var(--color-secondary);
    font-weight: 600;
  }
  
  .nav-item.active .nav-link::after {
    width: 70%;
    background-color: var(--color-accent);
  }
  
  /* Header Actions */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .search-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .search-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .login-btn {
    padding: 0.5rem 1.2rem;
    background-color: var(--color-accent);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(201, 62, 62, 0.3);
  }
  
  .login-btn:hover {
    background-color: #d84848;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(201, 62, 62, 0.4);
  }
  
  /* Mobile Toggle */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
  }
  
  .toggle-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  
  .close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .close-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    height: 100%;
  }
  
  .mobile-logo {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
  }
  
  .mobile-nav-item.active .mobile-nav-link {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
  }
  
  .mobile-nav-link:hover {
    color: white;
    padding-left: 0.5rem;
  }
  
  .mobile-actions {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .mobile-action-button {
    display: block;
    padding: 1rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
  }
  
  .mobile-action-button:last-child {
    background-color: var(--color-accent);
    color: white;
  }
  
  .mobile-action-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .mobile-action-button:last-child:hover {
    background-color: #d84848;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .desktop-nav {
      margin-left: 1rem;
    }
    
    .nav-link {
      padding: 0.5rem 0.6rem;
      font-size: 0.85rem;
    }
  }
  
  @media (max-width: 768px) {
    .header-container {
      grid-template-columns: auto auto;
    }
    
    .desktop-nav {
      display: none;
    }
    
    .mobile-toggle {
      display: flex;
      justify-self: end;
    }
    
    .header-actions {
      display: none;
    }
  }

/* Footer styles */
/* Main Footer Styling */
  .footer-container {
    width: 100%;
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1520 100%);
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    border-top: 4px solid #f7b03e;
    position: relative;
    overflow: hidden;
  }
  
  .footer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f7b03e, #e74c3c, #f7b03e);
    opacity: 0.7;
    z-index: 1;
  }
  
  .footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    padding: 3.5rem 5% 2rem;
    position: relative;
    z-index: 2;
  }
  
  /* Section Styling */
  .footer-section {
    position: relative;
  }
  
  .footer-section::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #f7b03e;
    border-radius: 2px;
  }
  
  .footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f7b03e;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
  }
  
  /* Navigation Lists */
  .footer-nav-list,
  .footer-category-list,
  .footer-resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav-item,
  .footer-category-item,
  .footer-resource-item {
    margin-bottom: 0.75rem;
    transition: transform 0.2s ease;
  }
  
  .footer-nav-item:hover,
  .footer-category-item:hover,
  .footer-resource-item:hover {
    transform: translateX(5px);
  }
  
  .footer-link {
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 3px 0;
  }
  
  .footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #f7b03e;
    transition: width 0.3s ease;
  }
  
  .footer-link:hover {
    color: #ffffff;
  }
  
  .footer-link:hover::before {
    width: 100%;
  }
  
  /* Contact Section */
  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
  }
  
  .footer-contact-item i {
    color: #f7b03e;
    font-size: 1rem;
    width: 20px;
  }
  
  /* Social Icons */
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .footer-social-icon i {
    color: #f7b03e;
    font-size: 1.25rem;
    transition: all 0.3s ease;
  }
  
  .footer-social-icon:hover {
    background-color: #f7b03e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 176, 62, 0.3);
  }
  
  .footer-social-icon:hover i {
    color: #0d1520;
  }
  
  /* Newsletter Section */
  .footer-newsletter {
    background-color: rgba(247, 176, 62, 0.1);
    padding: 2.5rem 5%;
    margin-top: 1rem;
    position: relative;
  }
  
  .footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 176, 62, 0.5), transparent);
  }
  
  .footer-newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-newsletter-heading {
    font-size: 1.5rem;
    color: #f7b03e;
    margin-bottom: 1rem;
  }
  
  .footer-newsletter-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .footer-newsletter-input:focus {
    outline: none;
    border-color: #f7b03e;
    box-shadow: 0 0 0 2px rgba(247, 176, 62, 0.3);
  }
  
  .footer-newsletter-button {
    padding: 0.75rem 1.5rem;
    background-color: #f7b03e;
    color: #0d1520;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .footer-newsletter-button:hover {
    background-color: #e9a325;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 176, 62, 0.3);
  }
  
  /* Bottom Footer */
  .footer-bottom {
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }
  
  .footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .footer-legal-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .footer-legal-link:hover {
    color: #f7b03e;
  }
  
  .footer-legal-link:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -0.9rem;
    color: #505050;
  }
  
  .footer-copyright {
    color: #808080;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-disclaimer {
    color: #606060;
    font-size: 0.8rem;
    max-width: 700px;
    margin: 0.5rem auto 0;
    line-height: 1.5;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-main {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 2rem;
      padding: 2.5rem 5% 1.5rem;
    }
    
    .footer-newsletter-form {
      flex-direction: column;
    }
    
    .footer-newsletter-button {
      width: 100%;
    }
    
    .footer-legal {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-legal-link:not(:last-child)::after {
      display: none;
    }
    
    .footer-heading {
      font-size: 1.1rem;
      margin-bottom: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-main {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .footer-section::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-contact-item {
      justify-content: center;
    }
    
    .footer-social {
      justify-content: center;
    }
    
    .footer-nav-item:hover,
    .footer-category-item:hover,
    .footer-resource-item:hover {
      transform: none;
    }
  }

/* Cookie Banner styles */
.tank-cookie-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: rgba(35, 38, 45, 0.97) !important;
    z-index: 9999 !important;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3) !important;
    font-family: 'Roboto', 'Open Sans', sans-serif;
    color: #e9e9e9;
    border-top: 3px solid #f89406;
  }

  .tank-cookie-container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 18px 20px !important;
  }

  .tank-cookie-message {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px !important;
    color: #e9e9e9;
  }
  
  .tank-cookie-message a {
    color: #f89406;
    text-decoration: underline;
  }
  
  .tank-cookie-message a:hover {
    color: #ffb142;
  }

  .tank-cookie-buttons {
    display: flex !important;
    justify-content: flex-end;
    gap: 15px;
  }

  .tank-cookie-btn {
    padding: 10px 22px !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-transform: uppercase;
  }

  .tank-cookie-accept {
    background-color: #f89406 !important;
    color: #ffffff;
  }

  .tank-cookie-accept:hover {
    background-color: #ffb142 !important;
    box-shadow: 0 0 8px rgba(248, 148, 6, 0.5) !important;
  }

  .tank-cookie-reject {
    background-color: #4a4f58 !important;
    color: #ffffff;
  }

  .tank-cookie-reject:hover {
    background-color: #5a5f68 !important;
    box-shadow: 0 0 8px rgba(74, 79, 88, 0.5) !important;
  }

  @media (max-width: 768px) {
    .tank-cookie-container {
      padding: 15px !important;
    }
    
    .tank-cookie-message {
      font-size: 14px;
      margin-bottom: 15px !important;
    }
    
    .tank-cookie-buttons {
      flex-direction: column;
      gap: 10px;
    }
    
    .tank-cookie-btn {
      width: 100% !important;
      padding: 12px 15px !important;
    }
  }