<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ------------------------------------
   GENERAL RESET &amp; BASE STYLES
------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Roboto", sans-serif;
  background-color: #ffe5b4; /* Light peach background */
  color: #333;              /* Darker text color */
}

body {
  margin: 0 auto;
  max-width: 1200px;        /* Page container width */
  line-height: 1.6;
  padding: 0 1rem;
  background-color: #ffe5b4; /* Light peach background */
}

/* ------------------------------------
   HEADERS &amp; LINKS
------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2rem;
  margin-top: 2rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

a {
  color: #b33c00; /* A deeper shade for text links */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #991f00; /* Darken on hover */
}

/* ------------------------------------
   NAVIGATION
------------------------------------ */
nav {
  background: #ffd9a0; /* Slightly darker peach */
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav li {
  display: inline;
}

nav a {
  font-weight: 500;
}

/* ------------------------------------
   IMAGES
------------------------------------ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------
   BUTTON / .btn
------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #b33c00; /* Deeper color for contrast */
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #991f00;
}

/* ------------------------------------
   SECTION &amp; CONTENT WRAPPERS
------------------------------------ */
section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
}

/* A simple top header style */
header {
  margin: 1.5rem 0;
  background-color: #ffd9a0;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
}

/* Footer style */
footer {
  margin-top: 2rem;
  background-color: #ffd9a0;
  text-align: center;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #333;
}

/* ------------------------------------
   RESPONSIVE ADJUSTMENTS
------------------------------------ */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  header, section, footer {
    padding: 1rem 0.5rem;
  }

  h1 {
    font-size: 1.75rem;
  }
}

 .thumbnail-grid {
  display: flex;           /* Use flexbox to create rows */
  flex-wrap: wrap;         /* Wrap to next line if not enough space */
  gap: 1rem;               /* Space between thumbnails */
  margin: 1rem auto;       /* Center container on page, add top/bottom margin */
  max-width: 1200px;       /* Optional max-width so it doesn’t stretch too wide */
}

.thumbnail-grid .thumbnail {
  flex: 0 0 calc(16.66% - 1rem); 
  /* Explanation: 100% / 6 = 16.66%
     Subtract gap (1rem), so they fit in a row of 6 */
  box-sizing: border-box;
  background-color: #fff;   /* Optional background color */
  border: 1px solid #ccc;   /* Optional border */
  border-radius: 4px;       /* Optional slight rounding of corners */
  overflow: hidden;         /* Hide content if it exceeds container */
}

.thumbnail-grid .thumbnail img {
  width: 100%;             /* Make the image fill the thumbnail width */
  display: block;          /* Remove extra spacing for images in some browsers */
}

.model-suggest-info {
  padding: 0.5rem;
  /* Add vertical/horizontal spacing inside the thumbnail info area */
}

.model-suggest-info h3 {
  margin-bottom: 0.5rem;   /* Space after heading */
  font-size: 1rem;         /* Adjust for desired heading size */
}

.model-suggest-info p {
  margin: 0;
  font-size: 0.875rem;     /* Slightly smaller text for the short info line */
}

.affiliate-overlay {
    position: fixed; /* or 'absolute' if within a relative container */
    top: 20%; /* Adjust based on best visibility */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.85); /* Semi-transparent black */
    color: white;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000; /* Ensures it sits above other content */
}

.overlay-content {
    padding: 20px;
}

.affiliate-overlay h2 {
    font-size: 24px;
    color: #FFD700; /* Gold color for attention */
}

.affiliate-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
}

.affiliate-button {
    background-color: #FF4500; /* Vivid orange */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none; /* Removes underline from links */
    display: inline-block; /* Aligns properly with text */
}

.affiliate-button:hover {
    background-color: #FF6347; /* Lighter orange on hover */
    cursor: pointer;
}

/* Optional: Animation to catch the eye */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.affiliate-overlay {
    animation: fadeIn 2s ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 8px rgba(255, 69, 69, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 69, 69, 0.9);
  }
  100% {
    box-shadow: 0 0 8px rgba(255, 69, 69, 0.5);
  }
}


/* ------------------------------------
   MODELSUGGEST
------------------------------------ */

.model-suggest-grid {
  display: flex;          /* Use Flexbox */
  flex-wrap: wrap;        /* Wrap thumbnails to a new row if needed */
  gap: 1rem;              /* Spacing between thumbnails */
  justify-content: flex-start; 
  margin-bottom: 1rem;    /* Some bottom spacing */
}

/* Each thumbnail item */
.model-suggest-grid .thumbnail {
  box-sizing: border-box;
  /* By default, let them go full width on very narrow devices */
  width: 100%;
  text-align: center;      /* Center the text/h3 inside */
  background: #f9f9f9;     /* Light background (optional) */
  border: 1px solid #eee; /* Thin border (optional) */
  padding: 0.5rem;        /* Space inside the box (optional) */
}

/* Make them 50% width on tablet-ish screens */
@media (min-width: 576px) {
  .model-suggest-grid .thumbnail {
    width: calc(50% - 1rem);
  }
}

/* Make them 25% (4 per row) on desktop screens */
@media (min-width: 992px) {
  .model-suggest-grid .thumbnail {
    width: calc(25% - 1rem);
  }
}

/* Ensure images resize to fill thumbnail width */
.model-suggest-grid .thumbnail img {
  max-width: 100%;
  height: auto;           /* Keep aspect ratio */
  display: block;
  margin: 0 auto;         /* Center the image horizontally (optional) */
}

/* Optional styling for the &lt;h3&gt; */
.model-suggest-grid .thumbnail h3 {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.2;
}

/* Optional styling for the anchor inside h3 */
.model-suggest-grid .thumbnail h3 a {
  color: #333;
  text-decoration: none;
}

.model-suggest-grid .thumbnail h3 a:hover {
  text-decoration: underline;
}




</pre></body></html>