 @charset "UTF-8";

 /* CSS Document */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
     line-height: 1.6;
     color: #333;
     background: #0F1119;
 }

 .container {
     max-width: 800px;
     margin: 0 auto;
     padding: 20px;
 }

 .content {
     background: black;
     border-radius: 12px;
     padding: 40px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 header {

     align-items: center;


     background: #212330;
     border-bottom: 1px solid #333;
 }

 footer {

     align-items: center;

     padding: 20px 40px;
     border-bottom: 1px solid #333;
 }

 button {
     background: #22242F;
     padding: 10px 20px;
     color: white;
     border: 0;
     border-radius: 5px;
     margin-right: 10px;

 }

 button a {
     color: white;
     text-decoration: none;
 }

 button a:hover {
     color: #F4A825
 }


 .logo-area {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .app-icon {
     width: 50px;
     height: 50px;
     border-radius: 8px;
     /* Matches the rounded corners of your icon */
     object-fit: cover;
 }

 header h1 {
     font-size: 32px;
     margin: 0;
     color: #fff;
     font-family: serif;
     font-weight: 400;
     letter-spacing: 1px;
 }

 h1 {
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 10px;
     color: #f7f7f7;
 }

 .last-updated {
     color: #f7f7f7;
     font-size: 14px;
     margin-bottom: 30px;
 }

 h2 {
     font-size: 24px;
     font-weight: 600;
     margin-top: 35px;
     margin-bottom: 15px;
     color: #f7f7f7;
 }

 p {
     margin-bottom: 15px;
     color: #f7f7f7;
 }

 /* ---- AI VIDEO FLEX ---- */
 .video-flex {
     columns: 3;
     column-gap: 20px;

 }

 .video-flex>* {
     break-inside: avoid;
     margin-bottom: 20px;
     width: 100%;
 }

 @media (max-width: 600px) {
     .content {
         padding: 25px;
     }

     h1 {
         font-size: 28px;
     }

     h2 {
         font-size: 20px;
     }
 }