/* ============================================
   HHUDDL.com - Styles
   Skeuomorphic + Dark-Neon Aesthetic
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a12;
    --bg-secondary: #12121e;
    --neon-magenta: #ff2d78;
    --neon-cyan: #00e5ff;
    --neon-amber: #ffbe0b;
    --leather-brown: #5c3a1e;
    --cream-text: #f5efe6;
    --cork-tan: #c4a265;
    --frost-white: #ffffff;  /* used at 10-20% opacity for glass-panel overlays */
    --spring-ease: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--cream-text);
    font-family: 'Libre Baskerville', 'Georgia', serif;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* ---------- Paper Grain Overlay ---------- */
#paper-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
}

.caveat {
    font-family: 'Caveat', cursive;
}

.neon-magenta {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px var(--neon-magenta), 0 0 30px rgba(255, 45, 120, 0.4), 0 0 60px rgba(255, 45, 120, 0.2);
}

.neon-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 30px rgba(0, 229, 255, 0.4), 0 0 60px rgba(0, 229, 255, 0.2);
}

/* ---------- Section Base ---------- */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

.section-heading {
    font-size: clamp(36px, 5vw, 64px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--cream-text);
    text-shadow: 0 0 20px rgba(255, 45, 120, 0.3);
}

/* ---------- Section Ripples ---------- */
.section-ripples {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ripple-1 { width: 400px; height: 400px; }
.ripple-2 { width: 700px; height: 700px; }
.ripple-3 { width: 1000px; height: 1000px; }

/* ---------- Ambient Bubble Layer ---------- */
#bubble-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.ambient-bubble {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--neon-magenta);
    box-shadow: 0 0 10px var(--neon-magenta), 0 0 20px rgba(255, 45, 120, 0.3);
    animation: bubbleFloat linear infinite;
    opacity: 0;
}

.ambient-bubble.cyan {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px rgba(0, 229, 255, 0.3);
}

.ambient-bubble.amber {
    border-color: var(--neon-amber);
    box-shadow: 0 0 10px var(--neon-amber), 0 0 20px rgba(255, 190, 11, 0.3);
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    5% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
    95% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) translateX(var(--wobble, 40px));
        opacity: 0;
    }
}

/* ============================================
   SECTION 1: THE HUDDLE RING (HERO)
   ============================================ */
#huddle-ring {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 70%);
}

.huddle-ring-container {
    position: relative;
    width: 700px;
    height: 700px;
    max-width: 90vw;
    max-height: 90vw;
    z-index: 1;
}

/* Central Message */
.huddle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    opacity: 0;
    animation: centerFadeIn 1.2s ease-out 0.3s forwards;
}

.huddle-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--cream-text);
}

.huddle-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: rgba(245, 239, 230, 0.7);
    font-style: italic;
}

@keyframes centerFadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Orbiting Bubbles */
.orbit-bubble {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0;
    animation: orbitArrive 1s var(--spring-ease) forwards;
}

.orbit-bubble-1 { top: 2%; left: 50%; transform: translateX(-50%); animation-delay: 0.8s; }
.orbit-bubble-2 { top: 18%; right: 5%; animation-delay: 1.0s; }
.orbit-bubble-3 { bottom: 18%; right: 5%; animation-delay: 1.2s; }
.orbit-bubble-4 { bottom: 2%; left: 50%; transform: translateX(-50%); animation-delay: 1.4s; }
.orbit-bubble-5 { bottom: 18%; left: 5%; animation-delay: 1.6s; }
.orbit-bubble-6 { top: 18%; left: 5%; animation-delay: 1.8s; }

@keyframes orbitArrive {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(80px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* After arrival, bob gently */
.orbit-bubble.settled {
    animation: gentleBob 4s ease-in-out infinite;
    opacity: 1;
}

@keyframes gentleBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bubble-glass {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    box-shadow:
        0 0 20px rgba(255, 45, 120, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 -4px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: transform 0.4s var(--spring-ease), box-shadow 0.4s ease;
}

.bubble-glass:hover {
    transform: scale(1.1);
    box-shadow:
        0 0 30px rgba(255, 45, 120, 0.5),
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 -4px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.bubble-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.8;
}

.bubble-highlight {
    position: absolute;
    top: 12%;
    left: 20%;
    width: 30%;
    height: 20%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.bubble-label {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cream-text);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

/* ============================================
   SECTION 2: THE PLAYBOOK
   ============================================ */
#playbook {
    background: var(--bg-primary);
    padding: 120px 20px;
}

.playbook-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95) rotate(-2deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.playbook-container.revealed {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Leather Cover */
.playbook-cover {
    position: relative;
    background: linear-gradient(145deg, #6d4a2a, #5c3a1e, #4a2e15);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 45, 120, 0.15);
    overflow: hidden;
}

.leather-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.05) 3px,
            rgba(0, 0, 0, 0.05) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 5px,
            rgba(0, 0, 0, 0.03) 5px,
            rgba(0, 0, 0, 0.03) 6px
        );
    pointer-events: none;
}

.cover-stitching {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px dashed rgba(196, 162, 101, 0.4);
    border-radius: 8px;
    pointer-events: none;
}

.cover-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--cream-text);
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 45, 120, 0.3);
    position: relative;
    z-index: 1;
}

.cover-subtitle {
    font-size: 24px;
    color: var(--cork-tan);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* Spiral Binding */
.spiral-binding {
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    z-index: 5;
    padding: 80px 0;
}

.spiral-ring {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #888;
    background: linear-gradient(135deg, #aaa, #666);
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Pages / Card Flip */
.playbook-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.card-flip {
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    transition: transform 0.7s var(--spring-ease);
    transform-style: preserve-3d;
}

.card-flip.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
}

.card-front {
    position: relative;
}

.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

/* Page Spread Cards */
.page-spread .card-inner {
    height: 320px;
}

.page-spread .card-front {
    height: 100%;
    position: relative;
}

.page-photo {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.page-caption {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: var(--cream-text);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.page-spread .card-back {
    background: linear-gradient(145deg, #6d4a2a, #5c3a1e);
    border-radius: 8px;
    box-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

.leather-back-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 4px,
            rgba(0, 0, 0, 0.04) 4px,
            rgba(0, 0, 0, 0.04) 5px
        );
    pointer-events: none;
}

.page-title {
    font-size: 24px;
    color: var(--neon-amber);
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(255, 190, 11, 0.4);
    position: relative;
    z-index: 1;
}

.page-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream-text);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTION 3: THE IDEA BOARD
   ============================================ */
#idea-board {
    background: var(--bg-primary);
    padding: 120px 20px;
}

.idea-board-container {
    max-width: 960px;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.idea-board-container.revealed {
    opacity: 1;
    transform: scale(1);
}

.cork-board {
    position: relative;
    width: 100%;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cork-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, #9e7e4f, #c4a265, #a8884e, #c4a265);
    opacity: 0.15;
    z-index: 0;
}

.cork-texture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* SVG String Lines */
.string-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.string-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset 2s ease;
    filter: drop-shadow(0 0 6px currentColor);
}

.string-line.animated {
    stroke-dashoffset: 0;
}

/* Polaroids */
.polaroid {
    position: absolute;
    left: var(--x, 0);
    top: var(--y, 0);
    width: 200px;
    transform: rotate(var(--rotate, 0deg));
    z-index: 2;
    perspective: 1000px;
}

.polaroid .card-inner {
    height: 240px;
}

.polaroid-frame {
    background: #f8f4e8;
    padding: 12px 12px 40px;
    border-radius: 2px;
    height: 100%;
    box-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
}

.polaroid-photo {
    flex: 1;
    border-radius: 1px;
}

.polaroid-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #5c3a1e;
    white-space: nowrap;
}

.polaroid-back {
    background: #f8f4e8;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.handwritten {
    font-size: 20px;
    line-height: 1.5;
    color: #5c3a1e;
    text-align: center;
}

/* Pin */
.pin {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #ff5555, #cc2222);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    z-index: 10;
}

/* ============================================
   SECTION 4: THE GLOW TABLE
   ============================================ */
#glow-table {
    background: var(--bg-primary);
    padding: 120px 20px;
}

.glow-table-container {
    max-width: 960px;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.glow-table-container.revealed {
    opacity: 1;
    transform: scale(1);
}

.table-surface {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 80%);
    box-shadow:
        0 0 60px rgba(255, 45, 120, 0.15),
        0 0 120px rgba(0, 229, 255, 0.1),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.table-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--neon-magenta);
    box-shadow:
        0 0 20px var(--neon-magenta),
        0 0 40px rgba(255, 45, 120, 0.3),
        inset 0 0 20px rgba(255, 45, 120, 0.1);
    opacity: 0.6;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Coasters */
.coaster {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1a2e, #12121e);
    box-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 15px rgba(255, 45, 120, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s var(--spring-ease), box-shadow 0.4s ease;
}

.coaster:hover {
    transform: scale(1.08);
    box-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 25px rgba(255, 45, 120, 0.4);
}

.coaster-inner {
    text-align: center;
    padding: 12px;
}

.coaster-emboss {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--neon-amber);
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 190, 11, 0.4);
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coaster-detail {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(245, 239, 230, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coaster:hover .coaster-detail {
    opacity: 1;
}

/* Coaster Positions (around the circular table) */
.coaster-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.coaster-2 { top: 22%; right: 5%; }
.coaster-3 { bottom: 22%; right: 5%; }
.coaster-4 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.coaster-5 { bottom: 22%; left: 5%; }
.coaster-6 { top: 22%; left: 5%; }

.coaster-1:hover { transform: translateX(-50%) scale(1.08); }
.coaster-4:hover { transform: translateX(-50%) scale(1.08); }

/* ============================================
   SECTION 5: THE BUBBLE RISE (FOOTER)
   ============================================ */
#bubble-rise {
    background: linear-gradient(to top, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bubble-rise-container {
    text-align: center;
    z-index: 2;
    position: relative;
}

#rising-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.rising-bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: rgba(245, 239, 230, 0.5);
    animation: riseUp linear infinite;
    pointer-events: none;
}

@keyframes riseUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

.footer-message {
    position: relative;
    z-index: 3;
}

.footer-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 19px;
    color: rgba(245, 239, 230, 0.6);
    font-style: italic;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 48px;
    color: var(--neon-magenta);
    text-shadow: 0 0 20px var(--neon-magenta), 0 0 40px rgba(255, 45, 120, 0.3);
    letter-spacing: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .huddle-ring-container {
        width: 360px;
        height: 360px;
    }

    .orbit-bubble {
        width: 70px;
        height: 70px;
    }

    .bubble-label {
        font-size: 9px;
    }

    .playbook-pages {
        grid-template-columns: 1fr;
    }

    .spiral-binding {
        display: none;
    }

    .cork-board {
        min-height: auto;
        padding-bottom: 160%;
    }

    .polaroid {
        width: 140px;
    }

    .polaroid .card-inner {
        height: 180px;
    }

    .table-surface {
        max-width: 340px;
    }

    .coaster {
        width: 90px;
        height: 90px;
    }

    .coaster-emboss {
        font-size: 12px;
    }

    .coaster-detail {
        font-size: 8px;
    }

    .section {
        padding: 60px 16px;
    }
}

@media (max-width: 480px) {
    .huddle-ring-container {
        width: 280px;
        height: 280px;
    }

    .orbit-bubble {
        width: 55px;
        height: 55px;
    }

    .polaroid {
        width: 120px;
    }

    .polaroid .card-inner {
        height: 150px;
    }

    .handwritten {
        font-size: 14px;
    }

    .coaster {
        width: 70px;
        height: 70px;
    }

    .coaster-emboss {
        font-size: 10px;
    }

    .table-surface {
        max-width: 280px;
    }
}
