   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }
   
   body {
       font-family: 'Arial', sans-serif;
       background: linear-gradient(135deg, #320a4c 0%, #337ab7 100%);
       color: #333;
       line-height: 1.6;
   }
   
   .header {
       background: linear-gradient(90deg, #320a4c 0%, #337ab7 100%);
       color: gold;
       padding: 1rem;
       text-align: center;
       box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
   }
   
   .img-responsive {
       max-width: 100%;
       height: auto;
   }
   
   .header h1 {
       font-size: 1.8rem;
       font-weight: bold;
       margin-bottom: 0.5rem;
       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
   }
   
   .container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 2rem;
   }
   
   .info-table {
       background: white;
       border-radius: 15px;
       overflow: hidden;
       margin: 2rem 0;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   }
   
   .table-header {
       background: linear-gradient(90deg, #eb07b2 0%, #494138 100%);
       color: white;
       padding: 1rem;
       text-align: center;
       font-size: 1.2rem;
       font-weight: bold;
   }
   
   table {
       width: 100%;
       border-collapse: collapse;
   }
   
   td {
       padding: 1rem;
       border-bottom: 1px solid #eee;
   }
   
   td:first-child {
       background: #f8f9fa;
       font-weight: bold;
       width: 40%;
   }
   
   td:last-child {
       background: white;
   }
   
   .content-section {
       background: white;
       border-radius: 15px;
       padding: 2rem;
       margin: 2rem 0;
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
   }
   
   .content-section h2 {
       color: #000000;
       margin-bottom: 1rem;
       font-size: 1.5rem;
       border-bottom: 3px solid #ff28ad;
       padding-bottom: 0.5rem;
   }
   
   .content-section h3 {
       color: #2a5298;
       margin: 1.5rem 0 1rem 0;
       font-size: 1.2rem;
   }
   
   .content-section p {
       margin-bottom: 1rem;
       text-align: justify;
   }
   
   .register-steps {
       background: linear-gradient(135deg, #eb07b2 0%, #764ba2 100%);
       color: white;
       border-radius: 15px;
       padding: 2rem;
       margin: 2rem 0;
   }
   
   .register-steps h2 {
       color: white;
       border-bottom-color: white;
   }
   
   .register-steps ol {
       padding-left: 2rem;
       margin-top: 1rem;
   }
   
   .register-steps li {
       margin-bottom: 0.5rem;
       font-size: 1.1rem;
   }
   
   .game-list {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 1.5rem;
       margin: 2rem 0;
   }
   
   .game-card {
       background: white;
       border-radius: 15px;
       padding: 1.5rem;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease;
   }
   
   .game-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
   }
   
   .game-card h4 {
       color: #ff6b35;
       font-size: 1.2rem;
       margin-bottom: 0.5rem;
   }
   
   .advantages-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
       margin: 2rem 0;
   }
   
   .advantage-card {
       background: linear-gradient(135deg, #9b137d 0%, #fecfef 100%);
       color: white;
       border-radius: 15px;
       padding: 2rem;
       text-align: center;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   }
   
   .advantage-card h4 {
       font-size: 1.3rem;
       margin-bottom: 1rem;
       color: #333;
   }
   
   .advantage-card p {
       font-style: italic;
       color: #555;
   }
   
   .cta-buttons {
       display: flex;
       gap: 1rem;
       justify-content: center;
       margin: 2rem 0;
       flex-wrap: wrap;
   }
   
   .cta-button {
       background: linear-gradient(45deg, #eb07b2, #940b69);
       color: white;
       padding: 1rem 2rem;
       border: none;
       border-radius: 25px;
       font-size: 1.1rem;
       font-weight: bold;
       cursor: pointer;
       text-decoration: none;
       display: inline-block;
       transition: all 0.3s ease;
       box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
   }
   
   .cta-button:hover {
       transform: translateY(-2px);
       box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
   }
   
   .floating-bonus {
       position: fixed;
       bottom: 20px;
       right: 20px;
       background: linear-gradient(45deg, #ff6b35, #f7931e);
       color: white;
       padding: 1rem;
       border-radius: 50px;
       box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
       z-index: 1000;
       animation: pulse 2s infinite;
       text-align: center;
       cursor: pointer;
   }
   
   @keyframes pulse {
       0% {
           transform: scale(1);
       }
       50% {
           transform: scale(1.05);
       }
       100% {
           transform: scale(1);
       }
   }
   
   .floating-bonus .bonus-text {
       font-weight: bold;
       font-size: 0.9rem;
   }
   
   .security-badges {
       display: flex;
       justify-content: center;
       gap: 2rem;
       margin: 2rem 0;
       flex-wrap: wrap;
   }
   
   .security-badge {
       background: white;
       border-radius: 10px;
       padding: 1rem;
       text-align: center;
       box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
       min-width: 150px;
   }
   
   .security-badge .badge-icon {
       font-size: 2rem;
       margin-bottom: 0.5rem;
       color: #28a745;
   }
   
   .footer {
       background: #333;
       color: white;
       text-align: center;
       padding: 2rem;
       margin-top: 3rem;
   }
   
   @media (max-width: 768px) {
       .container {
           padding: 1rem;
       }
       .header h1 {
           font-size: 1.4rem;
       }
       .content-section {
           padding: 1.5rem;
       }
       .cta-buttons {
           flex-direction: column;
           align-items: center;
       }
       .cta-button {
           width: 100%;
           max-width: 300px;
       }
       .floating-bonus {
           bottom: 10px;
           right: 10px;
           padding: 0.75rem;
       }
       .game-list {
           grid-template-columns: 1fr;
       }
       .advantages-grid {
           grid-template-columns: 1fr;
       }
       .security-badges {
           flex-direction: column;
           align-items: center;
       }
   }