
   body {
	   font-family: Arial, sans-serif;
	   line-height: 1.6;
	   margin: 0;
	   padding: 0;
	   background-color: #f4f4f4;
   }
   
   /* Navigation Styles */
   nav {
	   background-color: #333;
	   padding: 0;
	   position: sticky;
	   top: 0;
	   z-index: 1000;
	   box-shadow: 0 2px 5px rgba(0,0,0,0.1);
   }
   
   .nav-container {
	   max-width: 1200px;
	   margin: 0 auto;
	   display: flex;
	   justify-content: space-between;
	   align-items: center;
	   padding: 0 20px;
   }
   
   .logo {
	   color: #ffc107;
	   font-size: 1.5rem;
	   font-weight: bold;
	   text-decoration: none;
	   padding: 15px 0;
	   transition: color 0.3s ease;
   }
   
   .logo:hover {
	   color: #ff9800;
   }
   
   .nav-menu {
	   list-style: none;
	   margin: 0;
	   padding: 0;
	   display: flex;
   }
   
   .nav-menu li {
	   margin: 0;
   }
   
   .nav-menu a {
	   color: #fff;
	   text-decoration: none;
	   padding: 20px 15px;
	   display: block;
	   transition: background-color 0.3s ease;
   }
   
   .nav-menu a:hover {
	   background-color: #555;
   }
   
   /* Main Content Container */
   .main-content {
	   padding: 20px;
	   max-width: 1200px;
	   margin: 0 auto;
   }
   
   h1, h2, h3 {
	   color: #333;
   }
   table {
	   width: 100%;
	   border-collapse: collapse;
	   margin: 20px 0;
   }
   th, td {
	   border: 1px solid #ddd;
	   padding: 8px;
	   text-align: left;
   }
   th {
	   background-color: #f2f2f2;
   }
   ul {
	   list-style-type: disc;
	   margin-left: 20px;
   }
   .section {
	   margin-bottom: 20px;
   }
   .disclaimer {
	   background: #e9ecef;
	   padding: 15px;
	   margin: 20px 0;
	   border-radius: 4px;
	   font-size: 0.9rem;
   }
   
   /* Responsible Gaming Card Styles */
   .responsible-gaming-card {
	   background: #fff;
	   border-radius: 8px;
	   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	   margin: 30px 0;
	   overflow: hidden;
   }
   
   .rg-header {
	   background: #ffc107;
	   padding: 20px;
	   text-align: center;
   }
   
   .rg-title {
	   margin: 0;
	   color: #333;
	   font-size: 1.5rem;
	   display: flex;
	   align-items: center;
	   justify-content: center;
   }
   
   .rg-title i {
	   margin-right: 10px;
   }
   
   .rg-divider {
	   height: 3px;
	   background: #ff9800;
	   width: 60px;
	   margin: 15px auto 0;
   }
   
   .rg-content {
	   padding: 30px;
   }
   
   .rg-intro {
	   margin-bottom: 30px;
   }
   
   .highlight-text {
	   background: #fff3cd;
	   padding: 15px;
	   border-left: 4px solid #ffc107;
	   margin: 15px 0;
   }
   
   .rules-title, .help-title, .footer-title {
	   color: #333;
	   margin-bottom: 15px;
   }
   
   .rules-subtitle {
	   color: #666;
	   margin-bottom: 20px;
   }
   
   .rules-list {
	   margin-bottom: 20px;
   }
   
   .rule-item {
	   display: flex;
	   align-items: center;
	   margin-bottom: 15px;
	   padding: 10px;
	   background: #f8f9fa;
	   border-radius: 5px;
   }
   
   .rule-icon {
	   width: 40px;
	   height: 40px;
	   background: #ffc107;
	   border-radius: 50%;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   margin-right: 15px;
	   flex-shrink: 0;
   }
   
   .rule-text {
	   flex: 1;
   }
   
   .warning-box {
	   background: #dc3545;
	   color: white;
	   padding: 15px;
	   border-radius: 5px;
	   display: flex;
	   align-items: center;
	   margin: 20px 0;
   }
   
   .warning-box i {
	   margin-right: 10px;
	   font-size: 1.2rem;
   }
   
   .help-contacts {
	   display: grid;
	   gap: 20px;
	   margin-top: 20px;
   }
   
   .contact-card {
	   display: flex;
	   align-items: flex-start;
	   padding: 20px;
	   background: #f8f9fa;
	   border-radius: 5px;
   }
   
   .contact-icon {
	   width: 50px;
	   height: 50px;
	   border-radius: 50%;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   margin-right: 15px;
	   flex-shrink: 0;
	   color: white;
   }
   
   .bg-primary { background: #007bff; }
   .bg-danger { background: #dc3545; }
   .bg-warning { background: #ffc107; color: #333; }
   
   .contact-info h5 {
	   margin: 0 0 5px 0;
	   color: #333;
   }
   
   .contact-info p {
	   margin: 0 0 10px 0;
	   color: #666;
   }
   
   .contact-details {
	   font-size: 0.9rem;
   }
   
   .contact-details div {
	   margin-bottom: 5px;
   }
   
   .contact-details i {
	   margin-right: 5px;
	   color: #666;
	   width: 16px;
	   display: inline-block;
   }
   
   .highlight-message {
	   background: #d4edda;
	   padding: 15px;
	   border-radius: 5px;
	   display: flex;
	   align-items: center;
	   margin-top: 20px;
   }
   
   .highlight-message i {
	   margin-right: 10px;
	   color: #28a745;
	   font-size: 1.2rem;
   }
   
   /* Mobile responsiveness */
   @media (max-width: 768px) {
	   .nav-container {
		   padding: 0 15px;
	   }
	   
	   .logo {
		   font-size: 1.2rem;
	   }
	   
	   .nav-menu a {
		   padding: 15px 10px;
	   }
	   
	   .rg-content {
		   padding: 20px;
	   }
	   
	   .contact-card {
		   flex-direction: column;
		   text-align: center;
	   }
	   
	   .contact-icon {
		   margin: 0 auto 15px;
	   }
	   
	   .rg-title {
		   font-size: 1.2rem;
	   }
   }


/* Affiliate Disclosure Block Styles */
   .affiliate-disclosure {
	   background: #f8f9fa;
	   border: 1px solid #dee2e6;
	   border-radius: 8px;
	   margin: 30px 0;
	   overflow: hidden;
	   box-shadow: 0 2px 4px rgba(0,0,0,0.05);
   }
   
   .disclosure-header {
	   background: #e9ecef;
	   padding: 15px 20px;
	   display: flex;
	   align-items: center;
	   border-bottom: 1px solid #dee2e6;
   }
   
   .disclosure-header i {
	   color: #6c757d;
	   font-size: 1.2rem;
	   margin-right: 10px;
   }
   
   .disclosure-header h4 {
	   margin: 0;
	   color: #495057;
	   font-size: 1.1rem;
	   font-weight: 600;
   }
   
   .disclosure-content {
	   padding: 20px;
   }
   
   .disclosure-content > p {
	   color: #6c757d;
	   line-height: 1.6;
	   margin-bottom: 20px;
	   font-size: 0.95rem;
   }
   
   .disclosure-points {
	   margin-bottom: 20px;
   }
   
   .point-item {
	   display: flex;
	   align-items: center;
	   margin-bottom: 10px;
	   color: #495057;
	   font-size: 0.9rem;
   }
   
   .point-item i {
	   color: #28a745;
	   margin-right: 10px;
	   font-size: 0.85rem;
	   flex-shrink: 0;
   }
   
   .disclosure-footer {
	   border-top: 1px solid #e9ecef;
	   padding-top: 15px;
	   margin-top: 20px;
   }
   
   .disclaimer-text {
	   display: flex;
	   align-items: center;
	   flex-wrap: wrap;
	   gap: 5px;
	   font-size: 0.85rem;
	   color: #6c757d;
	   margin: 0;
   }
   
   .disclaimer-text i {
	   color: #ffc107;
	   margin-right: 5px;
   }
   
   .disclaimer-text strong {
	   color: #495057;
	   margin-right: 5px;
   }
   
   .help-link {
	   color: #007bff;
	   text-decoration: none;
	   border-bottom: 1px dotted #007bff;
	   transition: color 0.3s ease;
   }
   
   .help-link:hover {
	   color: #0056b3;
	   border-bottom-color: #0056b3;
   }
   
   /* Responsive Design */
   @media (max-width: 768px) {
	   .disclosure-header {
		   padding: 12px 15px;
	   }
	   
	   .disclosure-header h4 {
		   font-size: 1rem;
	   }
	   
	   .disclosure-content {
		   padding: 15px;
	   }
	   
	   .disclaimer-text {
		   font-size: 0.8rem;
		   line-height: 1.4;
	   }
   }
   
   /* Dark Theme Variant (optional) */
   .affiliate-disclosure.dark {
	   background: #343a40;
	   border-color: #495057;
   }
   
   .affiliate-disclosure.dark .disclosure-header {
	   background: #495057;
	   border-bottom-color: #6c757d;
   }
   
   .affiliate-disclosure.dark .disclosure-header i,
   .affiliate-disclosure.dark .disclosure-header h4 {
	   color: #f8f9fa;
   }
   
   .affiliate-disclosure.dark .disclosure-content > p,
   .affiliate-disclosure.dark .point-item {
	   color: #e9ecef;
   }
   
   .affiliate-disclosure.dark .disclosure-footer {
	   border-top-color: #495057;
   }
   
   .affiliate-disclosure.dark .disclaimer-text {
	   color: #adb5bd;
   }
   
   .affiliate-disclosure.dark .disclaimer-text strong {
	   color: #f8f9fa;
   }
   
   /* Compact Version */
   .affiliate-disclosure.compact {
	   margin: 15px 0;
   }
   
   .affiliate-disclosure.compact .disclosure-content {
	   padding: 15px;
   }
   
   .affiliate-disclosure.compact .disclosure-points {
	   display: none;
   }
   
   .affiliate-disclosure.compact .disclosure-footer {
	   border-top: none;
	   padding-top: 10px;
	   margin-top: 10px;
   }
   
   
   /* Author Info Block Styles */
   .author-info-block {
	   background: #ffffff;
	   border: 1px solid #e9ecef;
	   border-radius: 12px;
	   padding: 25px;
	   margin: 40px 0;
	   box-shadow: 0 3px 10px rgba(0,0,0,0.08);
	   transition: box-shadow 0.3s ease;
   }
   
   .author-info-block:hover {
	   box-shadow: 0 5px 20px rgba(0,0,0,0.12);
   }
   
   .author-header {
	   display: flex;
	   align-items: center;
	   margin-bottom: 20px;
	   padding-bottom: 20px;
	   border-bottom: 2px solid #f8f9fa;
   }
   
   .author-avatar {
	   margin-right: 15px;
   }
   
   .author-avatar i {
	   font-size: 3rem;
	   color: #6c757d;
   }
   
   .author-details {
	   flex: 1;
   }
   
   .author-name {
	   margin: 0 0 5px 0;
	   color: #212529;
	   font-size: 1.4rem;
	   font-weight: 600;
   }
   
   .author-role {
	   margin: 0;
	   color: #6c757d;
	   font-size: 0.95rem;
   }
   
   .author-bio {
	   margin-bottom: 20px;
   }
   
   .author-bio p {
	   color: #495057;
	   line-height: 1.7;
	   margin: 0;
	   font-size: 0.95rem;
   }
   
   .author-meta {
	   display: flex;
	   flex-wrap: wrap;
	   gap: 20px;
   }
   
   .meta-item {
	   display: flex;
	   align-items: center;
	   color: #6c757d;
	   font-size: 0.85rem;
   }
   
   .meta-item i {
	   margin-right: 8px;
	   color: #adb5bd;
   }
   
   /* Alternative Compact Version */
   .author-info-block.compact {
	   padding: 15px 20px;
	   margin: 20px 0;
   }
   
   .author-info-block.compact .author-header {
	   margin-bottom: 10px;
	   padding-bottom: 10px;
   }
   
   .author-info-block.compact .author-avatar i {
	   font-size: 2rem;
   }
   
   .author-info-block.compact .author-name {
	   font-size: 1.1rem;
   }
   
   .author-info-block.compact .author-bio {
	   display: none;
   }
   
   /* Alternative Inline Version */
   .author-info-block.inline {
	   display: flex;
	   align-items: center;
	   padding: 15px 20px;
	   background: #f8f9fa;
   }
   
   .author-info-block.inline .author-header {
	   margin-bottom: 0;
	   padding-bottom: 0;
	   border-bottom: none;
	   margin-right: auto;
   }
   
   .author-info-block.inline .author-bio {
	   display: none;
   }
   
   .author-info-block.inline .author-meta {
	   gap: 15px;
   }
   
   /* Dark Theme Version */
   .author-info-block.dark {
	   background: #343a40;
	   border-color: #495057;
   }
   
   .author-info-block.dark .author-header {
	   border-bottom-color: #495057;
   }
   
   .author-info-block.dark .author-name {
	   color: #f8f9fa;
   }
   
   .author-info-block.dark .author-role,
   .author-info-block.dark .author-bio p,
   .author-info-block.dark .meta-item {
	   color: #adb5bd;
   }
   
   .author-info-block.dark .author-avatar i,
   .author-info-block.dark .meta-item i {
	   color: #6c757d;
   }
   
   /* Responsive Design */
   @media (max-width: 768px) {
	   .author-info-block {
		   padding: 20px;
		   margin: 30px 0;
	   }
	   
	   .author-header {
		   flex-direction: column;
		   text-align: center;
	   }
	   
	   .author-avatar {
		   margin-right: 0;
		   margin-bottom: 10px;
	   }
	   
	   .author-meta {
		   flex-direction: column;
		   gap: 10px;
	   }
	   
	   .author-info-block.inline {
		   flex-direction: column;
		   text-align: center;
	   }
	   
	   .author-info-block.inline .author-header {
		   margin-right: 0;
		   margin-bottom: 15px;
	   }
   }
   
   /* With Image Version */
   .author-info-block.with-image .author-avatar {
	   width: 70px;
	   height: 70px;
	   overflow: hidden;
	   border-radius: 50%;
	   background: #f8f9fa;
   }
   
   .author-info-block.with-image .author-avatar img {
	   width: 100%;
	   height: 100%;
	   object-fit: cover;
   }
   
   .author-info-block.with-image .author-avatar i {
	   display: none;
   }