<!-- start Simple Custom CSS and JS -->
<style type="text/css">
  .dwf-outer-wrap {
    padding: 0px;
    background: transparent;
  }

  .dwf-page {
    width: 100%;
    margin: 0 auto;
    border: 25px solid #0f1114;
    border-radius: 25px;
    box-shadow: 0 0 0 6px rgba(0,0,0,0.3), 0 12px 35px rgba(0,0,0,0.55);
    box-sizing: border-box;
    /* DARK THEME DEFAULT VARIABLES */
    --dwf-bg: #0e0e11;
    --dwf-header-bg: linear-gradient(135deg, #141720, #0b0c10);
    --dwf-hero-bg: radial-gradient(circle at center, #1c1f25 0%, #0e0e11 85%);
    --dwf-text: #e3e3e3;
    --dwf-muted: #c7c7c7;
    --dwf-card-bg: rgba(255,255,255,0.03);
    --dwf-card-border: rgba(255,189,60,0.2);
    --dwf-accent: #ffbd3c;
    --dwf-shadow: rgba(255,189,60,0.22);
    --dwf-border-soft: rgba(255,255,255,0.04);

    /* Discord button background/border */
    --dwf-discord-bg: #1a1b24;
    --dwf-discord-border: rgba(255,255,255,0.18);

    background: var(--dwf-bg);
  }

  /* LIGHT THEME VARIABLES */
  .dwf-page.dwf-light {
    --dwf-bg: #f6f7fa;
    --dwf-header-bg: linear-gradient(135deg, #ffffff, #e0e2ea);
    --dwf-hero-bg: radial-gradient(circle at center, #ffffff 0%, #e7e8ed 75%);
    --dwf-text: #212329;
    --dwf-muted: #4a4d57;
    --dwf-card-bg: #ffffff;
    --dwf-card-border: rgba(0,0,0,0.06);
    --dwf-accent: #e0a526;
    --dwf-shadow: rgba(0,0,0,0.16);
    --dwf-border-soft: rgba(0,0,0,0.05);

    --dwf-discord-bg: #ffffff;
    --dwf-discord-border: rgba(0,0,0,0.12);
  }

  .dwf-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.2rem 1.4rem 4rem;
    padding: 0rem 0rem 0rem;
  }

  .dwf {
    color: var(--dwf-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  /* ------------------- HEADER ------------------- */
  .dwf-top-header {
    margin-bottom: 1.5rem;
  }

  .dwf-top-banner {
    position: relative;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    background: var(--dwf-header-bg);
    min-height: 160px;
  }

  .dwf-top-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://dicewithfriendsgame.com/wp-content/uploads/2025/11/Dice_d6_updated.png");
    background-size: cover;
    background-position: center;
    opacity: 0.18;
  }

  .dwf-top-overlay {
    position: relative;
    padding: 1.2rem 1.4rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .dwf-brand-logo {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .dwf-brand-logo img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(0,0,0,0.45);
  }

  .dwf-brand-text-main {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 700;
    color: var(--dwf-accent);
  }

  .dwf-brand-tagline {
    font-size: .9rem;
    color: var(--dwf-muted);
  }

  .dwf-header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  /* Theme toggle */
  .dwf-theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: 0.9rem;
    color: var(--dwf-muted);
  }

  /* Wrapper */
  .dwf-switch {
    position: relative;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
  }

  /* Hide native checkbox */
  .dwf-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* Track */
  .dwf-toggle-slider {
    position: absolute;
    inset: 0;
    background: #666 !important;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease;
    z-index: 2;
  }

  /* Thumb */
  .dwf-toggle-slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 3px;
    left: 4px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
    z-index: 3;
  }

  /* Checked state */
  .dwf-switch input:checked + .dwf-toggle-slider {
    background: var(--dwf-accent) !important;
  }

  .dwf-switch input:checked + .dwf-toggle-slider::before {
    transform: translateX(22px);
  }

  /* Buttons */
  .dwf-btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    margin: 0.35rem;
    transition: 0.15s ease;
    cursor: pointer;
  }

  .dwf-btn-primary {
    background: var(--dwf-accent);
    color: #000;
    box-shadow: 0 0 14px var(--dwf-shadow);
  }

  .dwf-btn-secondary {
    border: 1px solid var(--dwf-accent);
    color: var(--dwf-accent);
  }

  .dwf-btn:hover {
    transform: translateY(-2px);
  }

  /* Discord button style (pill background behind translucent logos) */
  .dwf-btn-discord {
    padding: 0.35rem 0.9rem !important;
    background: var(--dwf-discord-bg);
    border-radius: 999px;
    border: 1px solid var(--dwf-discord-border);
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 38px;
    min-width: 90px;
    gap: 0.4rem;
  }

  .dwf-btn-discord img {
    height: 22px !important;
    width: auto !important;
    display: block;
  }

  /* HEADER CTA PILL ALIGNMENT */
  .dwf-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  /* Make both header buttons behave like pills with same height */
  .dwf-header-right .dwf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1.4rem;
    margin: 0;
  }

  /* Keep Discord styling but fit into same pill size */
  .dwf-header-right .dwf-btn-discord {
    min-width: auto;
    padding: 0 1.2rem !important;
  }

  .dwf-header-right .dwf-btn-discord img {
    height: 22px !important;
    width: auto !important;
  }

  /* Hero CTAs row */
  .dwf-hero-ctas {
    margin-top: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* HERO */
  .dwf-hero {
    text-align: center;
    padding: 3.2rem 1rem 3.5rem;
    background: var(--dwf-hero-bg);
    border-radius: 18px;
    margin-bottom: 3rem;
    border: 1px solid var(--dwf-border-soft);
  }

  .dwf-hero h1 {
    font-size: 2.7rem;
    color: var(--dwf-accent);
  }

  .dwf-hero h3 {    
    color: var(--dwf-accent);
  }

  .dwf-hero p {
    max-width: 770px;
    margin: .6rem auto;
    font-size: 1.1rem;
    color: var(--dwf-muted);
  }

  .dwf-hero img {
	height: 100%;
	width: 100%;
	object-fit: contain;
  }

  .dwf-hero .screenshots img {
	max-width: 250px;
    max-height: 250px;
  }

  .dwf-hero-sub {
    color: var(--dwf-text);
    margin-bottom: 2rem;
  }

.dwf-hero-btm {
    text-align: center;
    background: var(--dwf-hero-bg);
    border-radius: 50px;
    border: 15px solid var(--dwf-border-soft);
    padding: 0rem .6rem 1.5rem;
}

    .dwf-hero-btm h1 {
        font-size: 2.7rem;
        color: var(--dwf-accent);
    }

    .dwf-hero-btm p {
        max-width: 550px;
        margin: auto;
        font-size: 1.1rem;
        color: var(--dwf-muted);
    }

    .dwf-hero-btm img {
        max-width: 250px;
        max-height: 250px;
    }
.dwf-hero-btm-sub {
    color: var(--dwf-text);
    margin: auto;
}
  /* Sections & cards */
  .dwf-section {
    margin-bottom: 3rem;
  }

  .dwf-section h2 {
    font-size: 2rem;
    color: var(--dwf-accent);
  }

  .dwf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    gap: 1.5rem;
    margin-top: 1.4rem;
  }

  .dwf-card {
    background: var(--dwf-card-bg);
    border: 1px solid var(--dwf-card-border);
    border-radius: 14px;
    padding: 1.2rem;
  }

  .dwf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 16px var(--dwf-shadow);
    border-color: var(--dwf-accent);
  }

  .dwf-tag-pill {
    border: 1px solid var(--dwf-accent);
    color: var(--dwf-accent);
    border-radius: 999px;
    padding: .25rem .65rem;
    font-size: .75rem;
    display: inline-block;
    margin-bottom: .4rem;
  }

  .dwf-tag-pill.secondary {
    border-color: var(--dwf-muted);
    color: var(--dwf-muted);
  }

  .dwf-list {
    list-style: none;
    padding-left: 0;
  }

  .dwf-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: .4rem;
  }

  .dwf-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dwf-accent);
  }

  /* Beta */
  .dwf-beta-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.2rem;
    align-items: stretch;
  }

  .dwf-beta-column {
    text-align: center;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dwf-beta-column h3 {
    margin-bottom: 0.4rem;
  }

  .dwf-beta-column p {
    margin-bottom: 1rem;
  }

  /* Badge container – SAME SIZE for Android / iOS / Discord */
  .dwf-beta-badge {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 66px;
    background: rgba(255,255,255,0.0);
  }

  .dwf-beta-badge-discord {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 66px;
    border-radius: 999px;
    background: rgba(20,20,20,0.85);
    border: 2px solid rgba(255,255,255,0.75);
    box-shadow: 0 2px 6px rgba(0,0,0,0.45);
    padding: 0 0.75rem;
  }

  .dwf-page.dwf-light .dwf-beta-badge-discord {
    background: rgba(240,240,240,0.85);
    border-color: rgba(0,0,0,0.75);
  }

  .dwf-beta-badge img,
  .dwf-beta-badge-discord img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    border-radius: 6px;
  }

  @media (max-width: 768px) {
    .dwf-top-overlay {
      flex-direction: column;
      align-items: center;
    }
    .dwf-header-right {
      margin-left: 0;
      align-self: stretch;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .dwf-shell {
      padding: 0.7rem 0.1rem 2rem;
    }
    .dwf-hero h1 {
      font-size: 2.2rem;
    }

    .dwf-hero-btm h1 {
        font-size: 2.2rem;
    }
  }

#site-banner {
    max-width: 100%!important;
    padding-left: 20px;
    padding-right: 20px;
}
#footer-banner {
  max-width: 100%;
  padding: 0 20px;
}
#site-banner-right {
    right: 20px!important;;
}</style>
<!-- end Simple Custom CSS and JS -->
