 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Myriad Pro', 'Trebuchet MS', sans-serif;
     background: linear-gradient(180deg, #da1e29 0%, #b71c1c 100%);
     min-height: 100vh;
     padding: 30px 20px;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 /* Header */
 .header {
     background: white;
     border-radius: 8px;
     padding: 40px;
     margin-bottom: 30px;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
     border-top: 5px solid #ffd700;
 }

 .header-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 30px;
     flex-wrap: wrap;
 }

 .logo-section {
     flex-shrink: 0;
     background-color: #da1e29;
     border-radius: 16px;
 }

 .logo {
     height: 150px;
     width: auto;
 }

 .header-text {
     flex: 1;
     min-width: 250px;
 }

 .header h1 {
     color: #da1e29;
     font-size: 2.2em;
     margin-bottom: 8px;
     font-weight: bold;
     letter-spacing: 1px;
 }

 /* Stats */
 .stats {
     display: flex;
     justify-content: flex-start;
     gap: 60px;
     flex-wrap: wrap;
 }

 .stat-item {
     text-align: left;
 }

 .stat-value {
     font-size: 1.8em;
     font-weight: bold;
     color: #da1e29;
 }

 .stat-label {
     color: #666;
     font-size: 0.9em;
     margin-top: 5px;
     font-weight: 500;
 }

 /* Table */
 .table-container {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
 }

 table {
     width: 100%;
     border-collapse: collapse;
 }

 thead {
     background: #da1e29;
     color: white;
 }

 thead tr {
     border-bottom: 3px solid #ffd700;
 }

 th {
     padding: 18px 16px;
     text-align: center;
     font-weight: 700;
     text-transform: uppercase;
     font-size: 0.85em;
     letter-spacing: 1px;
 }

 td {
     padding: 18px 16px;
     border-bottom: 1px solid #f0f0f0;
     color: #333;
 }

 tbody tr {
     transition: background-color 0.3s ease, border-left 0.3s ease;
     border-left: 4px solid transparent;
 }

 tbody tr:hover {
     background-color: #fff8f0;
     border-left-color: #ffd700;
 }

 tbody tr:last-child td {
     border-bottom: none;
 }

 td:last-child {
     text-align: center;
     vertical-align: middle;
 }

 /* UI Elements */
 .file-name {
     display: flex;
     align-items: center;
     font-weight: 600;
     color: #da1e29;
     gap: 12px;
 }

 .file-icon {
     font-size: 1.3em;
 }

 .file-link {
     color: #da1e29;
     text-decoration: none;
     font-weight: 600;
     border-bottom: 2px solid transparent;
     transition: 0.3s ease;
 }

 .file-link:hover {
     color: #b71c1c;
     border-bottom-color: #ffd700;
 }

 .size {
     font-weight: 600;
     color: #333;
 }

 .badge {
     display: inline-block;
     padding: 5px 14px;
     border-radius: 3px;
     font-size: 0.75em;
     font-weight: 700;
     text-transform: uppercase;
     margin-left: 10px;
 }

 .badge-zip {
     background-color: #ffd700;
     color: #000;
 }

 .badge-pb {
     background-color: #da1e29;
     color: white;
 }

 .download-btn {
     display: inline-block;
     padding: 10px 20px;
     background-color: #da1e29;
     color: white;
     text-decoration: none;
     border-radius: 4px;
     font-weight: 700;
     font-size: 0.9em;
     transition: all 0.3s ease;
     border: 2px solid #da1e29;
     cursor: pointer;
 }

 .download-btn:hover {
     background-color: #b71c1c;
     border-color: #ffd700;
     transform: translateY(-2px);
 }

 .copy-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 8px 12px;
     background-color: #f0f0f0;
     color: #da1e29;
     border: 1px solid #ddd;
     border-radius: 4px;
     cursor: pointer;
     font-family: monospace;
     font-size: 0.85em;
     font-weight: 600;
     transition: all 0.3s ease;
     max-width: 300px;
     word-break: break-all;
     outline: none;
 }

 .copy-link:hover,
 .copy-link:focus {
     background-color: #da1e29;
     color: white;
     border-color: #da1e29;
     box-shadow: 0 2px 8px rgba(218, 30, 41, 0.2);
     outline: 2px solid #ffd700;
     outline-offset: 2px;
 }

 .copy-link.copied {
     background-color: #4caf50;
     color: white;
     border-color: #4caf50;
 }

 .copy-icon {
     font-size: 1.1em;
     flex-shrink: 0;
 }

 .footer {
     text-align: center;
     color: white;
     margin-top: 40px;
     font-size: 0.95em;
     font-weight: 500;
 }

 @media (max-width: 768px) {
     .header {
         padding: 25px;
         border-top: 4px solid #ffd700;
     }

     .header-content {
         flex-direction: column;
         align-items: center;
     }

     .logo {
         height: 80px;
     }

     .header-text {
         text-align: center;
     }

     .header h1 {
         font-size: 1.8em;
     }

     .stats {
         justify-content: center;
         gap: 40px;
     }

     table {
         font-size: 0.9em;
     }

     th,
     td {
         padding: 12px 10px;
     }
 }