/* Base Styles */
@font-face {
    font-family: "Minecraft";
    src: url("../fonts/minecraft.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    color: #fff;
    line-height: 1.6;
    background-color: #121212;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  /* Typography */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Minecraft", sans-serif;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .font-minecraft,
  .hero-title,
  .section-title,
  .nav-title,
  .footer-title,
  .card-title,
  .page-title,
  .cta-title,
  .tab-title,
  .faq-question,
  .steps-title {
    font-family: "Minecraft", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000;
  }
  
  /* Minecraft Header Styles */
  .page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff9800;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding: 0 10px;
  }
  
  .page-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff9800;
    box-shadow: 0 2px 0 #000;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ff9800;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
  }
  
  .card-title {
    font-size: 1.5rem;
    color: #ff9800;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .nav-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 0px #000;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ff9800;
    text-shadow: 4px 4px 0px #000;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ff9800;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
  }
  
  .footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ff9800;
    text-shadow: 2px 2px 0px #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .faq-question {
    color: #ff9800;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    text-shadow: 2px 2px 0px #000;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .steps-title {
    color: #ff9800;
    font-weight: bold;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 0px #000;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Buttons */
  .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-family: "Minecraft", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    border: 2px solid #000;
    image-rendering: pixelated;
  }
  
  .primary-button {
    background-color: #ff9800;
    color: white;
    border: 2px solid #e65100;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 3px 0 0 #e65100;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.1s ease;
    transform: translateY(0);
  }
  
  .primary-button:hover {
    background-color: #fb8c00;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3), 0 3px 0 0 #e65100;
  }
  
  .primary-button:active {
    transform: translateY(2px);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 1px 0 0 #e65100;
  }
  
  .outline-button {
    background-color: #555555;
    border: 2px solid #333333;
    color: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 3px 0 0 #333333;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.1s ease;
    transform: translateY(0);
  }
  
  .outline-button:hover {
    background-color: #666666;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3), 0 3px 0 0 #333333;
  }
  
  .outline-button:active {
    transform: translateY(2px);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 1px 0 0 #333333;
  }
  
  .discord-button {
    background-color: #5865f2;
    border: 2px solid #4752c4;
    color: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 3px 0 0 #4752c4;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.1s ease;
    transform: translateY(0);
  }
  
  .discord-button:hover {
    background-color: #6975f3;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3), 0 3px 0 0 #4752c4;
  }
  
  .discord-button:active {
    transform: translateY(2px);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 1px 0 0 #4752c4;
  }
  
  /* Navigation */
  .main-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #1a1a1a;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
  }
  
  .nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .nav-icon {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-link {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s ease;
    font-family: "Minecraft", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0px #000;
  }
  
  .nav-link:hover {
    color: #ff9800;
  }
  
  .mobile-menu-button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  .menu-icon {
    width: 24px;
    height: 24px;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url("../images/minecraft-background.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.6;
  }
  
  .hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
  }
  
  .server-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    max-width: 42rem;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Minecraft Cave Background */
  .minecraft-cave-bg {
    background-image: url("../images/backgrounds/minecraft-cave.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
  }
  
  .minecraft-cave-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  
  .content-container {
    position: relative;
    z-index: 1;
  }
  
  /* Main Container */
  .main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }
  
  /* Section Styles */
  .section {
    margin-bottom: 5rem;
    position: relative;
  }
  
  .section::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
      to right,
      transparent,
      transparent 8px,
      rgba(255, 152, 0, 0.5) 8px,
      rgba(255, 152, 0, 0.5) 16px
    );
    opacity: 0.5;
  }
  
  .section::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
      to right,
      transparent,
      transparent 8px,
      rgba(255, 152, 0, 0.5) 8px,
      rgba(255, 152, 0, 0.5) 16px
    );
    opacity: 0.5;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .section-header::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #ff9800;
    opacity: 0.5;
  }
  
  .section-divider {
    height: 4px;
    width: 80px;
    background-color: #ff9800;
    margin: 0.5rem auto 0;
    box-shadow: 0 2px 0 #000;
  }
  
  .section-cta {
    text-align: center;
    margin-top: 2rem;
  }
  
  /* Card Styles */
  .card-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  .card {
    background-color: rgba(51, 51, 51, 0.9);
    border: 4px solid #222222;
    border-radius: 0;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 0 0 #222222;
    image-rendering: pixelated;
  }
  
  .card-header {
    margin-bottom: 1rem;
    border-bottom: 2px solid #ff9800;
    padding-bottom: 0.5rem;
  }
  
  .card-content {
    color: white;
  }
  
  .card-image {
    width: 100%;
    border-radius: 0;
    margin-bottom: 1rem;
    border: 2px solid #222222;
    image-rendering: pixelated;
  }
  
  /* Two Column Grid */
  .two-column-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  /* Stats Grid */
  .stats-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    background-color: rgba(51, 51, 51, 0.9);
    border: 4px solid #222222;
    border-radius: 0;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 0 0 #222222;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff9800;
    font-family: "Minecraft", sans-serif;
    text-shadow: 2px 2px 0px #000;
  }
  
  .stat-label {
    margin-top: 0.5rem;
    font-family: "Minecraft", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Team Grid */
  .team-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  .team-card {
    background-color: rgba(51, 51, 51, 0.9);
    border: 4px solid #222222;
    border-radius: 0;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 0 0 #222222;
  }
  
  .team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 0;
    overflow: hidden;
    margin: 0 auto;
    border: 2px solid #ff9800;
  }
  
  .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-name {
    color: #ff9800;
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: "Minecraft", sans-serif;
    text-shadow: 2px 2px 0px #000;
    text-transform: uppercase;
  }
  
  .team-role {
    margin-top: 0.5rem;
    font-family: "Minecraft", sans-serif;
    letter-spacing: 1px;
  }
  
  /* CTA Section */
  .cta-section {
    background-color: rgba(51, 51, 51, 0.9);
    border: 4px solid #222222;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 0 0 #222222;
  }
  
  .cta-description {
    max-width: 42rem;
    margin: 1rem auto;
    font-size: 1.125rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  
  /* Footer */
  .main-footer {
    background-color: #1a1a1a;
    padding: 2rem 1rem;
    color: white;
    border-top: 4px solid #ff9800;
  }
  
  .footer-container {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-link {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
    font-family: "Minecraft", sans-serif;
    letter-spacing: 0.5px;
  }
  
  .footer-link:hover {
    color: #ff9800;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
  }
  
  .footer-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #999;
  }
  
  /* Page Header */
  .page-header {
    position: relative;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .header-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .page-description {
    max-width: 48rem;
    margin: 1rem auto 0;
    font-size: 1.25rem;
    text-shadow: 1px 1px 0px #000;
  }
  
  /* Join Page Specific */
  .server-address {
    background-color: #222222;
    padding: 0.75rem;
    border-radius: 0;
    border: 2px solid #111111;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .server-address code {
    flex: 1;
    font-size: 1.125rem;
    font-family: "Minecraft", monospace;
    color: #ff9800;
  }
  
  .copy-button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  .numbered-list {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .numbered-list li {
    margin-bottom: 0.5rem;
  }
  
  .feature-list {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-list li {
    margin-bottom: 0.5rem;
  }
  
  /* Rules Page Specific */
  .tabs {
    background-color: rgba(51, 51, 51, 0.9);
    border: 4px solid #222222;
    border-radius: 0;
    overflow: hidden;
    backdrop-filter: blur(4px);
  }
  
  .tabs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #333333;
  }
  
  .tab-button {
    padding: 1rem;
    background: #333333;
    border: none;
    border-right: 2px solid #222222;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.1s ease;
    font-family: "Minecraft", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0px #000;
  }
  
  .tab-button.active {
    background-color: #ff9800;
  }
  
  .tab-content {
    display: none;
    padding: 1.5rem;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .tab-title {
    font-size: 1.25rem;
    color: #ff9800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #000;
    text-transform: uppercase;
  }
  
  .rules-list {
    list-style-type: disc;
    margin-left: 1.5rem;
  }
  
  .rules-list li {
    margin-bottom: 0.75rem;
  }
  
  /* Accordion */
  .accordion-item {
    border-bottom: 4px solid #222222;
  }
  
  .accordion-header {
    background-color: #333333;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    color: #ff9800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #ff9800;
    font-family: "Minecraft", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #000;
  }
  
  .accordion-header:hover {
    background-color: #3a3a3a;
  }
  
  .accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .accordion-item.active .accordion-icon {
    transform: rotate(45deg);
  }
  
  .accordion-content {
    background-color: #333333;
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: none;
  }
  
  .accordion-item.active .accordion-content {
    display: block;
  }
  
  /* FAQ */
  .faq-list {
    display: grid;
    gap: 1.5rem;
  }
  
  .faq-item {
    background-color: rgba(51, 51, 51, 0.9);
    border: 4px solid #222222;
    border-radius: 0;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
  }
  
  /* UPLauncher Specific Styles */
  .launcher-image-container {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .launcher-image {
    width: 100%;
    display: block;
    border: 2px solid #222222;
    image-rendering: pixelated;
  }
  
  .server-info-card {
    margin-bottom: 2rem;
  }
  
  .connection-steps {
    margin-top: 1.5rem;
  }
  
  .discord-preview {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    margin-top: 1rem;
  }
  
  .discord-image {
    width: 100%;
    display: block;
    border-radius: 0;
    border: 2px solid #222222;
    image-rendering: pixelated;
  }
  
  /* Join Header */
  .join-header {
    background-image: url("../images/minecraft-join-header.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .join-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
  }
  
  /* Rules Header */
  .rules-header {
    background-image: url("../images/minecraft-rules-header.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .rules-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
  }
  
  /* Utility Classes */
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .mt-2 {
    margin-top: 0.5rem;
  }
  
  .mt-4 {
    margin-top: 1rem;
  }
  
  /* Styles pour les options de téléchargement */
  .download-card {
    padding: 2rem;
  }
  
  .download-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .download-option {
    background-color: rgba(40, 40, 40, 0.7);
    border: 3px solid #222222;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 0 0 #222222;
  }
  
  .download-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff9800;
  }
  
  .platform-icon {
    width: 50px;
    height: 50px;
  }
  
  .download-title {
    font-family: "Minecraft", sans-serif;
    font-size: 1.5rem;
    color: #ff9800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 #000;
    text-transform: uppercase;
  }
  
  .download-info {
    margin-bottom: 0.5rem;
  }
  
  .download-size {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  .system-requirements {
    background-color: rgba(40, 40, 40, 0.7);
    border: 2px solid #222222;
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .requirements-title {
    font-family: "Minecraft", sans-serif;
    color: #ff9800;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0 #000;
    text-transform: uppercase;
  }
  
  .requirements-list {
    list-style-type: disc;
    margin-left: 1.5rem;
  }
  
  .requirements-list li {
    margin-bottom: 0.5rem;
  }
  
  .installation-note {
    background-color: rgba(255, 152, 0, 0.1);
    border-left: 3px solid #ff9800;
    padding: 1rem;
  }
  
  .text-link {
    color: #ff9800;
    text-decoration: underline;
    transition: color 0.2s ease;
  }
  
  .text-link:hover {
    color: #fb8c00;
  }
  
  /* Grille de tutoriel */
  .tutorial-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  
  .tutorial-card {
    display: flex;
    flex-direction: column;
  }
  
  .tutorial-card .card-image {
    flex: 1;
    object-fit: cover;
    min-height: 200px;
  }
  
  /* Guide Steps */
  .guide-card {
    padding: 2rem;
  }
  
  .guide-step {
    margin-bottom: 3rem;
    border-bottom: 2px dashed rgba(255, 152, 0, 0.3);
    padding-bottom: 2rem;
  }
  
  .guide-step:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .step-title {
    font-size: 1.5rem;
    color: #ff9800;
    text-shadow: 2px 2px 0px #000;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #ff9800;
  }
  
  .step-content {
    padding-left: 1rem;
  }
  
  .download-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .download-option-text {
    background-color: rgba(40, 40, 40, 0.7);
    border: 3px solid #222222;
    padding: 1.5rem;
    box-shadow: 0 4px 0 0 #222222;
  }
  
  .download-option-text h4 {
    font-family: "Minecraft", sans-serif;
    font-size: 1.25rem;
    color: #ff9800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 #000;
  }
  
  .discord-info {
    background-color: rgba(88, 101, 242, 0.1);
    border: 2px solid #5865f2;
    padding: 1.5rem;
    margin-top: 1rem;
  }
  
  .error-solutions {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .download-links {
      flex-direction: row;
    }
  
    .download-option-text {
      flex: 1;
    }
  }
  
  /* Media Queries */
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
      gap: 1rem;
    }
  
    .cta-buttons {
      flex-direction: row;
      gap: 1rem;
    }
  
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .download-options {
      flex-direction: row;
      justify-content: center;
    }
  
    .download-option {
      flex: 1;
      max-width: 350px;
    }
  
    .nav-links {
      display: flex;
    }
  
    .mobile-menu-button {
      display: none;
    }
  
    .hero-title {
      font-size: 3.5rem;
    }
  
    .card-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .two-column-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .stats-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .team-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .tutorial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .team-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .tutorial-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  