
        * {
            padding: 0;
            box-sizing: border-box;
            font-family: 'MS Gothic', 'MS PGothic', 'MS UI Gothic', sans-serif;
        }
        body {
            color: #fff;
            line-height: 1.4;
            margin: 1%;
            background-color: #387cf8;
            background-image: url(imgs/bgcity.png);
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        a {
            color: #1ec2ff;
            text-decoration: underline;
        }
        
        a:hover {
            color: #115fcb;
            text-decoration: none;
        }
        
        .container {
            max-width: 1024px;
            margin: 0 auto;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.65);
        }
        
        .header {
            position: relative;
            height: 300px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 2px solid #1ec2ff;
        }
        
        .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .title-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
        }
        
        .logo {
            max-width: 450px;
            filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
        }
        
        .game-title {
            font-size: 36px;
            color: #ff66cc;
            text-shadow: 0 0 10px #ff66cc, 0 0 20px #ff66cc;
            margin-top: 10px;
        }
        
        .nav {
            justify-content: center;
            margin: 20px 0;
            border: 1px solid #1ec2ff;
            background-color: #000;
            display: flex;
        }
        
        .nav a {
            padding: 10px 20px;
            color: #fff;
            text-decoration: none;
            border-right: 1px solid #1ec2ff;
        }
        
        .nav a:last-child {
            border-right: none;
        }
        
        .nav a:hover {
            background-color: #1ec2ff;
            color: black;
        }
        
        /* Secciones */
        .section {
            margin-bottom: 30px;
            padding: 20px;
            border: 1px solid #1ec2ff;
            background-color: rgba(0, 0, 0, 0.7);
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 15px;
            border-bottom: 1px solid white;
            padding-bottom: 5px;
        }
        
        /* Trailers y capturas */
        .trailer-container {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .trailer {
            width: 100%;
            max-width: 560px;
            height: 315px;
            border: 2px solid #1ec2ff;
        }
        
        .screenshots {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        
        .screenshot {
            width: auto;
            height: 135px;
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        #logimg{
            max-width: 45%;
            height: 100%;
        }
        .screenshot:hover {
            transform: scale(1.05);
        }
        
        /* Modal gallery */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            margin-bottom: 5%%;
            background-color: rgba(0, 0, 0, 0.75);
            animation: fadeIn 0.3s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            position: relative;
            margin: auto;
            display: block;
            width: 80%;
            max-width: 800px;
            max-height: 95%;
            top: 50%;
            transform: translateY(-50%);
            border: 1px solid white;
            box-shadow: 0 0 20px black;
        }
        
        .modal-image {
            width: 100%;
            height: auto;
        }
        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #1ec2ff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            z-index: 1001;
        }
        
        .close:hover {
            color: white;
            transform: scale(1.2);
        }
        
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #1ec2ff;
            font-size: 30px;
            font-weight: bold;
            padding: 16px;
            cursor: pointer;
            transition: 0.3s;
            user-select: none;
            background-color: rgba(0, 0, 0, 0.47);
        }
        
        .prev {
            left: 1%;
            border-radius: 0 5px 5px 0;
        }
        
        .next {
            right: 1%;
            border-radius: 5px 0 0 5px;
        }
        
        .prev:hover, .next:hover {
            color: white;
            background-color: rgba(111, 111, 111, 0.76);
        }
        
        .caption {
            text-align: center;
            color: white;
            padding: 10px 0;
            font-size: 18px;
            background-color: rgba(0, 0, 0, 0.7);
        }
        
        /* features */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-left: 15%;
                margin-right:15%;
        }
        
        .feature {
            padding: 10px;
            border: 1px solid #1ec2ff;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .feature-title {
            color: #1ec2ff;
            margin-bottom: 5px;
        }
        
        .download-section {
            text-align: center;
            padding: 30px;
            border: 2px solid #1ec2ff;
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        .specs {
            text-align: left;
            margin-top: 20px;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .specs-table td {
            padding: 8px;
            border-bottom: 1px solid #1ec2ff;
        }
        
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        
        .footer {
            text-align: center;
            padding: 20px;
            border-top: 1px solid #1ec2ff;
            margin-top: 30px;
            font-size: 14px;
        }
        
        marquee {
            font-weight: 800;
            box-sizing: border-box;
            animation: marquee 15s linear infinite;
            background-color: #000;
            color: white;
            padding: 5px;
            border: 1px solid #1ec2ff;
            margin-bottom: 10px;
        }
        
        .strong {
            color: #1ec2ff;
        }
        azu {
            color: #F8D202;
            font-weight: 600;
        }
        sonic {
            color: #00aefc;
        }
        ul {
            margin-left: 10px;
        }
        
        /* Scrollbar personalizado */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: #000;
        }
        
        ::-webkit-scrollbar-thumb {
            background: white;
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: gray;
        }

  .character-container {
    justify-content: center;
    display: flex;
    flex-wrap: wrap; /* allows wrapping on small screens */
    gap: 5px;       /* space between cards */
  }

  .character-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto 1fr auto;
    width: 49%;
    border: 2px solid #1ec2ff;
    box-sizing: border-box;
    min-width: 355px;
    max-width: 355px;
    min-height: 184px;
    max-width: 184px;
  }

  .character-image {
    grid-row: 1 / span 3;
    border-right: 2px solid #1ec2ff;
    text-align: center;
    padding: 5px;
    min-height: 180px;
    max-height: 180px;
  }

  .character-info {
    border-bottom: 2px solid #1ec2ff;
    height: 120px;
    padding: 5px;
  }

  .character-info small{
      color: rgb(145, 145, 145);
  }

  .character-creator {
    border-right: 2px solid #1ec2ff;
    padding: 5px;
    text-align: center;
  }
  .character-creator strong {
      color: #F8D202;
  }
    .ccda{
    padding: 5px;
    margin-top: auto;
    margin-bottom: auto;
    }  
  .character-download {
    padding: 5px;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 15px;
    color: white; 
    background-color: #115fcb;
    }
    
    .character-download:hover {
        background: #1ec2ff; 
    }
    .character-download:active {
        background: #115fcb; 
    }

  .character-footer {
    display: grid;
    grid-template-columns: 1fr 100px;
  }

  .character-image img {
    width: 100%;
    image-rendering: pixelated;
    max-height: 180px;
    max-width: 98px;
  }
  #itchio{
    font-family: 'MS Gothic', 'MS PGothic', 'MS UI Gothic', sans-serif;
      
   }