
  /* GLOBAL STYLING OVERRIDES - Force Black Theme */
  body, 
  #MainContent {
    background-color: black !important;
    color: white !important;
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  /* CUSTOM LAYOUT - Main Grid */
  .rf-custom-page {
    display: grid;
    grid-template-columns: 3fr 2fr; /* 60% left, 40% right */
    min-height: 100vh;
    border-top: 1px solid #333;
  }

  /* LEFT COLUMN (Hero) */
  .rf-hero-section {
    background-image: url('YOUR_UPLOADED_HERO_IMAGE_URL.jpg'); /* REPLACE THIS URL */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 100px;
  }

  .rf-hero-section h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
  }

  /* Specific Strikethrough Effect */
  .rf-strike {
    position: relative;
  }
  
  .rf-strike::after {
    content: '';
    position: absolute;
    left: 1%;
    top: 51%;
    width: 98%;
    height: 3px;
    background-color: white;
  }

  .rf-btn-shop {
    display: inline-block;
    padding: 15px 40px;
    background-color: black;
    border: 1px solid #00ffff;
    color: #00ffff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    transition: all 0.3s ease;
  }
  
  .rf-btn-shop:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 1);
  }

  /* LEFT COLUMN BOTTOM - Grid of 3 */
  .rf-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #333;
  }

  /* RIGHT COLUMN (Mixed content) */
  .rf-right-column {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #333;
    padding: 15px;
    gap: 15px;
  }

  /* TOP RIGHT 3-PACK */
  .rf-top-right-3-pack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* MIDDLE RIGHT GRAPHIC (Rug) */
  .rf-graphic-block {
    position: relative;
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    line-height: 0;
  }
  
  .rf-graphic-block img {
    width: 100%;
    height: auto;
  }

  /* BOTTOM RIGHT TEXT BLOCK */
  .rf-bottom-right-text {
    background-color: black;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .rf-bottom-right-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    color: white;
    margin: 0;
  }

  /* Specific Cyan Glowing Text Block */
  .rf-text-glowing-section {
    margin-top: 20px;
    font-family: monospace; /* Closer to the geometric style */
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  }

  .rf-footer-marker {
    color: #888;
    text-align: center;
    margin-top: 30px;
    font-size: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }

  /* IMAGE BOX FRAMING (consistent style) */
  .rf-img-box {
    border: 1px solid #333;
    aspect-ratio: 1;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .rf-img-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }

  /* MOBILE RESPONSIVENESS */
  @media (max-width: 900px) {
    .rf-custom-page {
      grid-template-columns: 1fr;
    }
    
    .rf-hero-section h1 {
      font-size: 3.5rem;
    }
  }


<div class="rf-custom-page">
  <!-- LEFT COLUMN -->
  <div>
    <div class="rf-hero-section">
      <h1>RISE <span class="rf-strike">FROM THE</span> UNDERGROUND</h1>
      <a href="/collections/all" class="rf-btn-shop">SHOP NOW</a>
    </div>
    <div class="rf-bottom-grid">
      <div class="rf-img-box"><img src="YOUR_UPLOADED_TSHIRT_IMAGE.jpg" alt="T-Shirt"></div>
      <div class="rf-img-box"><img src="YOUR_UPLOADED_PANTS_IMAGE.jpg" alt="Pants"></div>
      <div class="rf-img-box"><img src="YOUR_UPLOADED_VEST_IMAGE_1.jpg" alt="Vest 1"></div>
    </div>
  </div>

  <!-- RIGHT COLUMN -->
  <div class="rf-right-column">
    <div class="rf-top-right-3-pack">
      <div class="rf-img-box"><img src="YOUR_UPLOADED_TSHIRT_IMAGE.jpg" alt="T-Shirt"></div>
      <div class="rf-img-box"><img src="YOUR_UPLOADED_PANTS_IMAGE.jpg" alt="Pants"></div>
      <div class="rf-img-box"><img src="YOUR_UPLOADED_VEST_IMAGE_2.jpg" alt="Vest 2"></div>
    </div>
    <div class="rf-graphic-block">
      <img src="YOUR_UPLOADED_RUG_GRAPHIC.jpg" alt="Abstract Rug Graphic">
    </div>
    <div class="rf-bottom-right-text">
      <h2>NOT REVOLUTION. ARCHITECTURE.</h2>
      <div class="rf-text-glowing-section">
        RISE <span class="rf-strike">FROM THE</span> UNDERGROUND<br>
        Conçu by Ricky&amp;friends
      </div>
      <div class="rf-footer-marker">FOOTER</div>
    </div>
  </div>
</div