@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Inconsolata:wght@200..900&display=swap');
    body {
      font-family: "Segoe UI", sans-serif;
      margin: 0;
      padding: 0;
      display: flex;
      background-color: #121212;
      color: #F1F1F1;
      font-family: "Inconsolata", monospace;
    }

    main {
      display: flex;
      max-width: 1200px;
      margin: 40px auto;
      background: #1e1e1e;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.7);
      gap: 20px;
    }

    article {
      flex: 2;
    }
    .comp article {
      background: rgba(128, 128, 128, 0.3);
      border-radius: 8px; 
      padding: 3px;
      margin-top: 2px;
    }

    .comp article:hover {
      background: rgba(128, 128, 128, 0.6);
      cursor: pointer;
    }

    aside {
      flex: 1;
      background: #252525;
      padding: 10px;
      border-left: 1px solid #333;
      border-radius: 8px;
    }

    h1, h2, h3 {
      color: #F1F1F1;
    }

    ul {
      padding-left: 20px;
    }

    .gallery img {
      width: 100%;
      margin-bottom: 10px;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s;
      border: 1px solid #444;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    .download-section {
      margin-top: 40px;
      text-align: center;
    }

    .download-button {
      padding: 12px 24px;
      font-size: 16px;
      border: none;
      background: #0078d7;
      color: white;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
    }
    
    .download-button:hover {
      background: #005fa3;
    }

.com-section{
  margin-top: 40px;
  text-align: center;
  background: rgba(128, 128, 128, 0.3);
}

.com-section:hover{
  margin-top: 40px;
  text-align: center;
  background: rgba(128, 128, 128, 0.6);
  cursor:pointer;
}


    .com-button {
      padding: 12px 24px;
      font-size: 16px;
      border: none;
      background: #0078d7;
      color: white;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
    }
    
    .comp-button:hover {
      background: #005fa3;
    }

    .footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50px;
      background: #2a2a2a;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 15px;
      border-top: 1px solid #444;
      z-index: 999;
}

#startButton {
background: #0078d7;
color: white;
border: none;
padding: 8px 16px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
}

#startButton:hover {
  background: #005fa3;
}

.clock-zone {
  font-size: 14px;
}

    /* MODALE */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .modal-content {
      background-color: #2c2c2c;
      color: white;
      margin: 10% auto;
      padding: 20px;
      border: 1px solid #444;
      width: 300px;
      border-radius: 8px;
      text-align: center;
    }

    .modal-content h3 {
      margin-top: 0;
    }

    .modal-content ul {
      list-style: none;
      padding: 0;
    }

    .modal-content li {
      margin: 10px 0;
    }

    .modal-content a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      display: block;
      padding: 10px;
      border-radius: 4px;
      background: #0078d7;
      transition: background 0.2s;
    }

    .modal-content a:hover {
      background: #005fa3;
    }

    .close {
      float: right;
      font-size: 22px;
      cursor: pointer;
      color: white;
    }

    .comp-button {
      padding: 12px 24px;
      font-size: 16px;
      border: none;
      background: darkolivegreen;
      color: white;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
    }