/* Google Fonts Imports: Fraunces (Retro Serif) & Rubik (Playful Bold Sans) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,700;0,9..144,900;1,9..144,700&family=Plus+Jakarta+Sans:wght@500;700;800&family=Rubik:wght@500;700;900&display=swap');

:root {
    --bg-cream: #FDEBB6;
    --bg-cream-alt: #FEF3D6;
    --card-yellow: #FFC527;
    --card-pink: #E91E63;
    --card-pink-dark: #C2185B;
    --card-cyan: #38C6D9;
    --card-purple: #9C27B0;
    --text-black: #121212;
    --text-muted: #5C523D;
    
    --border-black: 4px solid #121212;
    --border-black-thin: 3px solid #121212;
    --shadow-hard: 6px 6px 0px #121212;
    --shadow-hard-sm: 4px 4px 0px #121212;
    --shadow-hard-lg: 10px 10px 0px #121212;

    --font-serif: 'Fraunces', Georgia, serif;
    --font-sans: 'Rubik', 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-cream);
    /* 2.5x Crisp Checkered Background Pattern */
    background-image: url('assets/bg_pattern.png');
    background-repeat: repeat;
    background-size: 960px 540px;
    color: var(--text-black);
    font-family: var(--font-sans);
    line-height: 1.55;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .serif-font {
    font-family: var(--font-serif);
    font-weight: 900;
    color: var(--text-black);
    letter-spacing: -0.01em;
}

.highlight-pink {
    color: var(--card-pink);
}

.highlight-cyan {
    color: #008BA3;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(254, 243, 214, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-black);
    box-shadow: 0 4px 0px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: 0.025em;
    -webkit-text-stroke: 6px #121212;
    paint-order: stroke fill;
    display: inline-block;
    transform: rotate(-3.5deg);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-text {
    transform: rotate(2deg) scale(1.05);
}

.logo-you {
    color: var(--card-yellow);
}

.logo-dontsay {
    color: var(--card-pink);
}

.logo-badge {
    background: var(--card-pink);
    color: white;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    border: 2px solid #121212;
    box-shadow: 2px 2px 0px #121212;
    /* Playful Rotation on Badge */
    transform: rotate(4deg);
    display: inline-block;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    color: var(--text-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.15s ease, transform 0.15s ease;
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--card-pink);
    transform: rotate(-2deg) scale(1.05);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--text-black);
    border: var(--border-black-thin);
    box-shadow: var(--shadow-hard-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-ios {
    background: #FFFFFF;
    transform: rotate(-1deg);
}

.btn-android {
    background: #FFC527;
    color: var(--text-black);
    transform: rotate(1.5deg);
}

.btn-nav:hover {
    transform: rotate(0deg) translate(-2px, -2px);
    box-shadow: 6px 6px 0px #121212;
}

.btn-nav:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #121212;
}

/* Hero Section */
.hero {
    padding: 70px 0 90px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    align-items: center;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: var(--card-yellow);
    border: var(--border-black-thin);
    box-shadow: var(--shadow-hard-sm);
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 20px;
    /* Playful Rotation */
    transform: rotate(-2.5deg);
    transition: transform 0.2s ease;
}

.pill-badge:hover {
    transform: rotate(1deg) scale(1.03);
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-title-main {
    display: block;
    font-size: 3.6rem;
    line-height: 1.05;
    white-space: nowrap;
}

.hero-title-sub {
    display: block;
    font-size: 3.1rem;
    line-height: 1.05;
    white-space: nowrap;
    margin-top: 6px;
}

.wavy-underline {
    position: relative;
    display: inline-block;
}

.wavy-underline::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3E%3Cpath fill='none' stroke='%23E91E63' stroke-width='2' d='M0,2 Q5,0 10,2 T20,2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 16px 8px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-weight: 500;
    max-width: 540px;
}

/* Store CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 28px;
    min-width: 210px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-black);
    border: var(--border-black);
    box-shadow: var(--shadow-hard);
    font-family: var(--font-sans);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ios-card {
    background: #FFFFFF;
    transform: rotate(-1.5deg);
}

.android-card {
    background: var(--card-yellow);
    transform: rotate(2deg);
}

.download-card:hover {
    transform: rotate(0deg) translate(-3px, -3px);
    box-shadow: 9px 9px 0px #121212;
}

.download-card:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px #121212;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.small-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.85;
}

.big-text {
    font-weight: 900;
    font-size: 1.25rem;
}

/* Enlarged Floating Hand Image */
.hero-hand-floating {
    position: relative;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(18px 28px 36px rgba(0, 0, 0, 0.28));
    animation: floatHand 4.5s ease-in-out infinite;
    transform-origin: center center;
    transition: filter 0.3s ease;
}

.hero-hand-floating:hover {
    filter: drop-shadow(22px 34px 44px rgba(233, 30, 99, 0.35));
}

.floating-hand-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@keyframes floatHand {
    0% { transform: translateY(0px) rotate(2.5deg) scale(1); }
    50% { transform: translateY(-16px) rotate(4deg) scale(1.02); }
    100% { transform: translateY(0px) rotate(2.5deg) scale(1); }
}

/* Common Section */
section {
    padding: 50px 0;
}

.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 2.9rem;
    margin-bottom: 0px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 640px;
    margin-top: 12px;
}

.section-header.center p {
    margin-left: auto;
    margin-right: auto;
}

/* Mechanics Section (Dedicated Solid Section Break) */
.mechanics-section {
    background: #FEF3D6;
    border-top: var(--border-black);
    border-bottom: var(--border-black);
    padding: 55px 0;
    box-shadow: inset 0 6px 12px rgba(0,0,0,0.03);
}

.mechanics-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
    align-items: center;
}

/* Tilted Phone Graphic (Enlarged by +10% to 290px) */
.mechanics-floating {
    position: relative;
    max-width: 290px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(14px 22px 30px rgba(0, 0, 0, 0.23));
    transform: rotate(-6.5deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    animation: floatGamePhone 5s ease-in-out infinite;
}

.mechanics-floating:hover {
    transform: rotate(-2deg) scale(1.05);
    filter: drop-shadow(18px 28px 38px rgba(233, 30, 99, 0.32));
}

.floating-mechanics-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@keyframes floatGamePhone {
    0% { transform: translateY(0px) rotate(-6.5deg) scale(1); }
    50% { transform: translateY(-16px) rotate(-4.5deg) scale(1.015); }
    100% { transform: translateY(0px) rotate(-6.5deg) scale(1); }
}

.mechanics-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Playful Alternating Rotations on Steps */
.step-card {
    background: var(--bg-cream);
    border: var(--border-black-thin);
    box-shadow: var(--shadow-hard-sm);
    border-radius: 20px;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:nth-child(1) {
    transform: rotate(1.2deg);
}

.step-card:nth-child(2) {
    transform: rotate(-1.5deg);
}

.step-card:nth-child(3) {
    transform: rotate(1deg);
}

.step-card:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: var(--shadow-hard);
}

.step-num {
    background: var(--card-pink);
    color: white;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: rotate(-4deg);
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.step-content h3:not(:last-child) {
    margin-bottom: 4px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

/* Example Badges in Steps */
.badge-example-yellow {
    background: var(--card-yellow);
    color: var(--text-black);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1.5px solid #121212;
    font-weight: 800;
    display: inline-block;
    box-shadow: 2px 2px 0px #121212;
    margin: 0 2px;
}

.badge-example-pink {
    background: var(--card-pink);
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1.5px solid #121212;
    font-style: normal;
    font-weight: 700;
    display: inline-block;
    box-shadow: 2px 2px 0px #121212;
    margin: 0 2px;
}

/* Game Modes Grid with Larger Centered Icons & Indie Rotations */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.mode-card {
    background: var(--bg-cream-alt);
    border: var(--border-black);
    box-shadow: var(--shadow-hard);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}

/* Indie Alternating Angles for Mode Cards */
.modes-grid .mode-card:nth-child(1) {
    transform: rotate(-2deg);
}

.modes-grid .mode-card:nth-child(2) {
    transform: rotate(1.8deg);
}

.modes-grid .mode-card:nth-child(3) {
    transform: rotate(-1.5deg);
}

.mode-card:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.03) !important;
    box-shadow: var(--shadow-hard-lg);
}

.mode-card-featured {
    background: var(--card-yellow);
}

.mode-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    background: var(--card-pink);
    color: white;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    border: 2px solid #121212;
    box-shadow: 2px 2px 0px #121212;
    white-space: nowrap;
}

.mode-icon {
    font-size: 5.2rem;
    margin: 0 auto 16px auto;
    display: block;
    text-align: center;
    line-height: 1;
    transform: rotate(-2deg);
    transition: transform 0.2s ease;
}

.mode-card:hover .mode-icon {
    transform: rotate(6deg) scale(1.1);
}

.mode-card h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.mode-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Custom Games Creator Section */
.custom-section {
    background: #FEF3D6;
    border-top: var(--border-black);
    border-bottom: var(--border-black);
    padding: 65px 0;
    box-shadow: inset 0 6px 12px rgba(0,0,0,0.03);
}

.custom-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: center;
}

.pill-purple {
    background: var(--card-purple) !important;
    color: white !important;
}

.highlight-purple {
    background: var(--card-purple);
    color: white;
    padding: 2px 10px;
    border-radius: 8px;
    border: 2px solid #121212;
    box-shadow: 3px 3px 0px #121212;
    display: inline-block;
}

.custom-text h2 {
    font-size: 2.6rem;
    line-height: 1.15;
    margin: 16px 0 28px 0;
}

.custom-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
}

.custom-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.custom-feature-item {
    background: var(--bg-cream);
    border: var(--border-black-thin);
    box-shadow: var(--shadow-hard-sm);
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-feature-item:nth-child(1) { transform: rotate(-0.8deg); }
.custom-feature-item:nth-child(2) { transform: rotate(1.2deg); }
.custom-feature-item:nth-child(3) { transform: rotate(-1deg); }

.custom-feature-item:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: var(--shadow-hard);
}

.feature-icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Tilted Custom Game Phone Mockup (+50% Enlarged to 435px) */
.custom-phone-floating {
    position: relative;
    max-width: 435px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(16px 26px 36px rgba(0, 0, 0, 0.25));
    transform: rotate(4.5deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    animation: floatCustomPhone 5s ease-in-out infinite;
}

.custom-phone-floating:hover {
    transform: rotate(1deg) scale(1.04);
    filter: drop-shadow(22px 34px 46px rgba(156, 39, 176, 0.35));
}

.floating-custom-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@keyframes floatCustomPhone {
    0% { transform: translateY(0px) rotate(4.5deg) scale(1); }
    50% { transform: translateY(-14px) rotate(3deg) scale(1.015); }
    100% { transform: translateY(0px) rotate(4.5deg) scale(1); }
}

/* Author Section with Playful Tilt */
.author-section {
    padding: 55px 0;
}

.author-box {
    background: var(--card-yellow);
    border: var(--border-black);
    box-shadow: var(--shadow-hard-lg);
    border-radius: 28px;
    padding: 42px 48px;
    max-width: 860px;
    margin: 0 auto;
    /* Playful Indie Tilt */
    transform: rotate(-1.2deg);
    transition: transform 0.2s ease;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
}

.author-avatar-img {
    width: 175px;
    height: 175px;
    object-fit: contain;
    background: transparent;
    border: none;
    box-shadow: none;
    filter: drop-shadow(6px 10px 18px rgba(0, 0, 0, 0.22));
    flex-shrink: 0;
    transform: rotate(-3deg);
    transition: transform 0.25s ease;
}

.author-box:hover .author-avatar-img {
    transform: rotate(3deg) scale(1.05);
}

.author-title {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-title h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-top: 4px;
}

.author-box:hover {
    transform: rotate(0deg) scale(1.01);
}

.author-box blockquote {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.7;
    margin: 16px 0 24px 0;
}

.author-signature {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--card-pink-dark);
}

/* Final CTA Section */
.final-cta {
    background: var(--card-pink);
    border-top: var(--border-black);
    border-bottom: var(--border-black);
    color: white;
    text-align: center;
    padding: 55px 0;
}

.final-cta h2 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 28px;
}

.final-cta p {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 36px;
    opacity: 0.95;
}

.center-cta {
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--bg-cream-alt);
    border-top: var(--border-black);
    padding: 36px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.disclaimer-text {
    max-width: 760px;
    margin: 16px auto 0 auto;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Responsive Mobile Optimization */
@media (max-width: 992px) {
    /* 1. Global Padding & Section Spacing */
    section {
        padding: 28px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* 2. Navigation Bar */
    .navbar {
        padding: 4px 0;
    }

    .nav-container {
        padding: 10px 16px;
        justify-content: center;
    }

    .logo-text {
        font-size: 2.05rem;
    }

    .logo-badge {
        display: none !important;
    }

    .nav-menu, .nav-actions {
        display: none !important;
    }

    /* 3. Hero Section & Floating Hand Image */
    .hero-content, .mechanics-wrapper, .custom-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding: 20px 0 28px 0;
    }

    .pill-badge {
        font-size: 0.9rem;
        padding: 6px 14px;
        margin-bottom: 12px;
    }

    .hero-text h1 {
        margin-bottom: 12px;
    }

    .hero-title-main {
        display: block;
        font-size: 2.2rem;
        line-height: 1.1;
        white-space: nowrap;
    }

    .hero-title-sub {
        display: block;
        font-size: 1.85rem;
        line-height: 1.1;
        white-space: nowrap;
        margin-top: 4px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        max-width: 100%;
        line-height: 1.5;
    }

    .hero-hand-floating {
        max-width: 220px;
        margin: 20px auto 0 auto;
        transform: rotate(0deg);
        filter: drop-shadow(10px 16px 22px rgba(0, 0, 0, 0.2));
        animation: floatHand 4.5s ease-in-out infinite;
    }

    /* 4. Side-by-Side Download Buttons on Mobile */
    .hero-cta {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .download-card {
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 8px;
        gap: 8px;
        border-radius: 12px;
        box-shadow: var(--shadow-hard-sm);
    }

    .download-card svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .small-text {
        font-size: 0.6rem;
    }

    .big-text {
        font-size: 0.9rem;
    }

    /* 5. Section Headers */
    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
        margin-top: 8px;
    }

    /* 6. Mechanics Section & -40% Phone Mockup */
    .mechanics-section {
        padding: 32px 0;
    }

    .mechanics-wrapper {
        gap: 20px;
    }

    .mechanics-floating {
        max-width: 175px; /* ~40% smaller on mobile */
        transform: rotate(0deg);
        animation: floatGamePhone 5s ease-in-out infinite;
        margin: 0 auto 10px auto;
        filter: drop-shadow(8px 14px 20px rgba(0, 0, 0, 0.2));
    }

    .mechanics-steps {
        gap: 12px;
    }

    .step-card {
        padding: 12px 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .step-num {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.05rem;
        margin-bottom: 2px;
        text-align: left;
    }

    .step-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: left;
    }

    /* 7. Game Modes Section */
    .modes-grid {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .mode-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .mode-icon {
        font-size: 3.5rem;
        margin-bottom: 8px;
    }

    .mode-card h3 {
        font-size: 1.4rem;
    }

    .mode-card p {
        font-size: 0.9rem;
    }

    /* 8. Custom Games Creator Section */
    .custom-section {
        padding: 32px 0;
    }

    .custom-wrapper {
        gap: 20px;
    }

    .custom-text h2 {
        font-size: 1.65rem;
        line-height: 1.55;
        margin: 10px 0 14px 0;
    }

    .highlight-purple {
        display: inline-block;
        padding: 2px 8px;
        border: 2px solid #121212;
        box-shadow: 2.5px 2.5px 0px #121212;
        border-radius: 8px;
        vertical-align: baseline;
    }

    .custom-description {
        font-size: 0.95rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .custom-features-list {
        gap: 12px;
    }

    .custom-feature-item {
        padding: 12px 14px;
        gap: 12px;
        border-radius: 14px;
        text-align: left;
    }

    .feature-icon {
        font-size: 1.6rem;
    }

    .feature-content h4 {
        font-size: 1.05rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }

    .custom-phone-floating {
        max-width: 190px;
        margin: 10px auto 0 auto;
        transform: rotate(0deg);
        animation: floatCustomPhone 5s ease-in-out infinite;
        filter: drop-shadow(8px 14px 20px rgba(0, 0, 0, 0.2));
    }

    /* 9. Author Section */
    .author-section {
        padding: 32px 0;
    }

    .author-box {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .author-header {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        text-align: left;
        margin-bottom: 12px;
    }

    .author-avatar-img {
        width: 80px;
        height: 80px;
        transform: rotate(0deg);
    }

    .author-title h2 {
        font-size: 1.3rem;
    }

    .author-box blockquote {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 12px 0 16px 0;
    }

    .author-signature {
        font-size: 1.05rem;
    }

    /* 10. Final Call to Action */
    .final-cta {
        padding: 32px 16px;
    }

    .final-cta h2 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .final-cta p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .footer {
        padding: 24px 16px;
    }
}
