* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-charcoal: #333333;
    --gold: #FFD700;
    --bright-yellow: #FFDC00;
    --white: #FFFFFF;
    --fiery-red: #FF4136;
    --matisse-blue: #0051BA;
    --powder-blue: #D0E1F2;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--powder-blue);
    background-image: 
        radial-gradient(at 20% 30%, rgba(255,255,255,0.4) 0, transparent 50%),
        radial-gradient(at 80% 70%, rgba(255,255,255,0.3) 0, transparent 50%),
        radial-gradient(at 40% 80%, rgba(255,255,255,0.2) 0, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    color: var(--deep-charcoal);
    line-height: 1.6;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--powder-blue);
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
    z-index: 1000;
    padding: 1rem 2rem;
}

.header-content {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
    gap: 2rem;
}

.logo {
    height: 50px;
}

.header-tagline {
    text-align: center;
}

.header-tagline h1 {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
    color: var(--fiery-red);
}

.header-tagline p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--deep-charcoal);
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.nav a {
    color: var(--deep-charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--fiery-red);
}

.grid-container {
    display: grid;
    grid-template-columns: 280px 1fr 380px;
    gap: 1px;
    background: rgba(51, 51, 51, 0.1);
    margin-top: 100px;
    min-height: calc(100vh - 100px);
}

.left-sidebar {
    background: var(--powder-blue);
    padding: 2rem;
}

.sidebar-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h3 {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.music-cover {
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid rgba(51, 51, 51, 0.2);
}

.spotify-link {
    display: block;
    background: var(--deep-charcoal);
    color: var(--white);
    padding: 0.75rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.spotify-link:hover {
    background: var(--fiery-red);
}

.music-links a,
.studio-link,
.book-link {
    display: block;
    color: var(--deep-charcoal);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 13px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.music-links a:hover,
.studio-link:hover,
.book-link:hover {
    border-bottom: 1px solid var(--fiery-red);
}

.main-content {
    background: var(--powder-blue);
    padding: 0;
}

.hero-small {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: transparent;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.hero-image-small {
    width: 50%;
    max-width: 600px;
    height: auto;
}

.rpg-craft-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem;
    background: transparent;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.craft-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.forsale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.forsale-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid rgba(51, 51, 51, 0.2);
}

.forsale-grid img:nth-child(1),
.forsale-grid img:nth-child(2) {
    grid-column: span 2;
    height: 250px;
}

.forsale-grid img:nth-child(3),
.forsale-grid img:nth-child(4) {
    height: 180px;
}

.forsale-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--fiery-red);
    margin-top: 1rem;
    text-align: center;
}

.rpg-grid {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(51, 51, 51, 0.1);
    background: var(--powder-blue);
}

#rpg-animation {
    width: 100%;
    height: 100%;
}

#rpg-animation svg {
    width: 100%;
    height: 100%;
}

.craft-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.craft-vertical h2 {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-weight: 900;
}

.craft-content {
    max-width: 800px;
}

.craft-title {
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 900;
    color: var(--fiery-red);
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
}

.craft-title:first-child {
    margin-top: 0;
}

.craft-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--deep-charcoal);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.youtube-section {
    padding: 3rem;
    background: transparent;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.youtube-section h3 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid rgba(51, 51, 51, 0.2);
}

.blog-section {
    padding: 4rem 3rem;
    background: transparent;
}

.blog-article {
    text-align: justify;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-article p {
    font-size: 1rem;
    line-height: 1.8;
}

.drop-cap::first-letter {
    font-size: 4rem;
    font-weight: 900;
    float: left;
    line-height: 0.8;
    margin: 0.1rem 0.5rem 0 0;
    color: var(--fiery-red);
}

.contact-section {
    padding: 4rem 3rem;
    background: transparent;
    border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.contact-section h2 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-weight: 900;
}

.contact-form {
    max-width: 600px;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(51, 51, 51, 0.3);
    background: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-form button {
    background: var(--deep-charcoal);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--fiery-red);
}

.whatsapp-link {
    display: inline-block;
    background: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.right-sidebar {
    background: var(--powder-blue);
    padding: 2rem;
    overflow-y: auto;
}

.right-sidebar h2 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 900;
    text-align: center;
}

.product-card {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.product-card:last-child {
    border-bottom: none;
}

.product-card h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 1px solid rgba(51, 51, 51, 0.2);
}

.product-images-vertical {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-images-vertical img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid rgba(51, 51, 51, 0.2);
}

.price {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--fiery-red);
}

.digital-cta {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--deep-charcoal);
    text-align: center;
    padding: 1rem;
    background: var(--gold);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border: 1px solid rgba(51, 51, 51, 0.2);
}

.product-gallery img:first-child {
    grid-column: 1 / -1;
    height: 180px;
}

.buy-btn {
    width: 100%;
    background: var(--deep-charcoal);
    color: var(--white);
    padding: 1rem;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 0.5rem;
}

.buy-btn:hover {
    background: var(--fiery-red);
}

.footer {
    background: var(--powder-blue);
    color: var(--deep-charcoal);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.footer-rotate {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    height: 100px;
    position: relative;
}

.rotate-img {
    height: 80px;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.rotate-img.active {
    opacity: 1;
}

.footer-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.footer-cta h3 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(51, 51, 51, 0.3);
    background: var(--white);
    color: var(--deep-charcoal);
    font-size: 14px;
    letter-spacing: 1px;
}

.newsletter-form button {
    background: var(--deep-charcoal);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--fiery-red);
}

.footer-copy {
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 3rem;
    border: 2px solid var(--deep-charcoal);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--fiery-red);
}

.modal-content h2 {
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 900;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(51, 51, 51, 0.3);
    background: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
}

.product-options {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 14px;
}

.order-form button {
    width: 100%;
    background: var(--deep-charcoal);
    color: var(--white);
    padding: 1rem;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.order-form button:hover {
    background: var(--fiery-red);
}

.form-note {
    text-align: center;
    font-size: 12px;
    margin-top: 1rem;
    color: var(--deep-charcoal);
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .rpg-craft-section {
        grid-template-columns: 1fr;
    }
    
    .rpg-grid {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hero-image-small {
        width: 80%;
    }
    
    .right-sidebar {
        min-height: auto;
    }
    
    .product-images img {
        height: 250px;
    }
    
    .product-images-vertical img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-tagline h1 {
        font-size: 1rem;
    }
    
    .header-tagline p {
        font-size: 0.75rem;
    }
    
    .hero-image-small {
        width: 100%;
    }
    
    .product-images,
    .product-images-vertical {
        grid-template-columns: 1fr;
    }
    
    .product-images img {
        height: 300px;
    }
    
    .product-images-vertical img {
        height: 350px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .forsale-showcase {
        grid-template-columns: 1fr;
    }
    
    .forsale-item img {
        height: 350px;
    }
}


.craft-title {
    display: inline;
}

.forsale-section {
    padding: 4rem 3rem;
    background: transparent;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.forsale-section h2 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    font-weight: 900;
    text-align: center;
}

.forsale-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.forsale-item {
    text-align: center;
}

.forsale-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid rgba(51, 51, 51, 0.2);
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.forsale-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.forsale-item h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 1rem;
}

.forsale-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--deep-charcoal);
    margin-bottom: 1rem;
    text-align: left;
}

.forsale-item .forsale-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--fiery-red);
    text-align: center;
    margin-top: 1.5rem;
}

.forsale-item {
    cursor: pointer;
}

.forsale-item h3 {
    cursor: pointer;
    transition: color 0.3s;
}

.forsale-item h3:hover {
    color: var(--fiery-red);
}


/* =========================
   MEDIA EMBEDS (Spotify / Apple Music) — FAR LEFT COLUMN
   ========================= */
.media-embeds{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 16px 0;
}
.media-embed iframe{
  width: 100%;
  border: 0;
}
.media-apple iframe{
  max-width: 100% !important; /* override inline max-width */
}

/* FOR SALE: punchy hooks */
.hook{
  margin: 0.35rem 0 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* THE CRAFT: hype (without spam) */
.craft-subhead{
  margin: 0 0 1.5rem 0;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.95;
}
.craft-title{
  display: block !important;
  margin: 0 0 .35rem 0;
  line-height: 1.2;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.craft-content p{
  margin: 0 0 1.1rem 0;
  line-height: 1.65;
  text-align: left;
  max-width: 70ch;
}


/* =========================
   RPG + CRAFT GRID (Left rail: embeds + RPG)
   ========================= */
.rpg-craft-section{
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.rpg-grid{
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
#rpg-animation svg{
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
@media (max-width: 900px){
  .rpg-craft-section{ grid-template-columns: 1fr; }
}


.site-footer .section {
    max-width: 1100px;
    margin: 0 auto;
}

.site-footer h1, .site-footer h2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.site-footer p, .site-footer ul, .site-footer ol {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.site-footer ul, .site-footer ol {
    padding-left: 1.5rem;
}

.site-footer li {
    margin-bottom: 0.5rem;
}

.site-footer h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}


.patterns-section {
    padding: 4rem 3rem;
    background: transparent;
    border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.patterns-section h2 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    font-weight: 900;
    text-align: center;
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pattern-item {
    text-align: center;
}

.pattern-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid rgba(51, 51, 51, 0.2);
    margin-bottom: 1.5rem;
}

.pattern-item h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 1rem;
}

.pattern-price {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--deep-charcoal);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .patterns-grid {
        grid-template-columns: 1fr;
    }
    
    .pattern-item img {
        height: 300px;
    }
}
