:root {
    --primary: #fdaec1;
    --primary-dark: #d65b74;
    --secondary: #E2F0CB;
    --accent-purple: #c7cefa;
    --accent-yellow: #fff5ba;
    --bg: #ffe8ee;
    --text: #7a505f;
    --text-light: #9c7b86;
    --nav-text: #b8416d;

    --discord-gradient: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    --discord-success: #3ba55c;

    --glass: rgba(255, 255, 255, 0.75);
    --glass-strong: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.6);

    --shadow-soft: 0 10px 40px -10px rgba(253, 174, 193, 0.3);
    --shadow-hover: 0 20px 40px -5px rgba(201, 79, 102, 0.3);
    --shadow-card: 0 8px 20px rgba(253, 174, 193, 0.2);
}

@font-face {
    font-family: 'Starborn';
    src: url('../fonts/Starborn.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Anja Eliane';
    src: url('../fonts/Original%20version%20by%20Edson%20%26%20Eliane/Anja%20Eliane.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    background-color: #fffbfa;
    color: var(--text);
    line-height: 1.7;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    padding-top: 10px;
    position: relative;
    overflow-x: hidden;
}

html::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(253, 174, 193, 0.17) 78%, rgba(214, 91, 116, 0.13) 100%);
    pointer-events: none;
    z-index: 9998;
}

body::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: 0px;
    width: auto;
    height: auto;
    background-image:
        linear-gradient(90deg, rgba(255, 143, 181, 0.08) 50%, transparent 50%),
        linear-gradient(rgba(255, 143, 181, 0.08) 50%, transparent 50%);
    background-size: 80px 80px;
    filter: blur(2.5px);
    z-index: -12;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: 0px;
    width: auto;
    height: auto;
    background-image:
        url('../images/morango_novo_spread.png'),
        url('../images/morango_novo_spread_flipped.png');
    background-position: 20px 20px, 180px 180px;
    background-size: 320px 320px;
    background-repeat: repeat;
    opacity: 0.65;
    filter: blur(2.5px);
    z-index: -11;
    pointer-events: none;
}

h1,
h2,
h3,
.lang-title,
.nav-links a,
.status-badge,
.price-tag {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
}

#language-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 250, 252, 0.92);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.lang-cloud {
    position: absolute;
    pointer-events: none;
    opacity: 0.92;
}

.lang-cloud-tl {
    width: 200px;
    top: -50px;
    left: -110px;
    z-index: 5;
    animation: langCloudFloat1 0.7s steps(1, end) infinite;
}

.lang-cloud-br {
    width: 250px;
    bottom: -75px;
    right: -120px;
    z-index: 5;
    animation: langCloudFloat2 0.8s steps(1, end) infinite;
}

@keyframes langCloudFloat1 {

    0%,
    100% {
        transform: rotate(-5.5deg) scale(1);
    }

    50% {
        transform: rotate(-4.5deg) scale(1.02);
    }
}

@keyframes langCloudFloat2 {

    0%,
    100% {
        transform: rotate(-0.5deg) scale(1);
    }

    50% {
        transform: rotate(0.5deg) scale(1.02);
    }
}


.clean-lang-card {
    background: #fffafa;
    border: 3px dashed var(--primary);
    border-radius: 30px;
    box-shadow: 6px 6px 0px var(--primary-dark);
    text-align: center;
    padding: 3.5rem 2.5rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: visible;
}

.clean-lang-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.clean-lang-btn {
    background: #fffafa;
    border: 3px solid var(--primary);
    padding: 15px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-dark);
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 var(--primary);
}

.clean-lang-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 var(--primary);
    background: #fff0f3;
}

.clean-lang-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--primary);
}

.btn-flag {
    font-size: 1.5rem;
}

nav {
    position: sticky;
    top: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    width: 100%;
    pointer-events: none;
    padding: 0 15px;
    margin: 10px 0 20px;
}

.nav-links {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.85);
    border: 3px solid #ffd6e0;
    box-shadow: 0 4px 15px rgba(255, 183, 178, 0.2);
    padding: 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links li {
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: #b84f68;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid transparent;
    display: block;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-dark);
    background: #fffafa;
}

.nav-links a.active-link {
    background: #fffafa;
    color: var(--primary-dark);
    border: 2px dashed var(--primary);
    box-shadow: 2px 2px 0px var(--primary-dark);
    font-weight: 800;
}

.top-right-lang {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
    z-index: 1000;
}

.lang-switch {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 101;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #ffd6e0;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    color: var(--nav-text);
    font-family: 'Fredoka', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.lang-btn:hover {
    background: white;
}

.lang-btn.active {
    background: var(--nav-text);
    color: white;
    border-color: var(--nav-text);
    box-shadow: 0 4px 10px rgba(107, 27, 54, 0.4);
}

.portfolio-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1rem 0.5rem;
    position: relative;
    z-index: 10;
}

.main-title-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 780px;
    text-align: center;
    margin: 0 auto;
    z-index: 10;
}

.main-title-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 8px 15px rgba(224, 150, 165, 0.4));
    animation: floatingTitle 3.5s ease-in-out infinite;
}

@keyframes floatingTitle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.deco-cloud {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.deco-sparkle {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    animation: kawaiiSparkle 0.8s step-end infinite alternate;
}

@keyframes kawaiiSparkle {

    0%,
    49% {
        transform: scale(1) rotate(0deg);
    }

    50%,
    100% {
        transform: scale(1.1) rotate(6deg);
    }
}

p.subtitle {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: white;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border: 2px solid #fff;
    font-weight: 500;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(34, 143, 95, 0.15);
    letter-spacing: 0.5px;
}

.status-dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-badge.open {
    border: 2px solid #bcebc4;
    color: #228f5f;
}

.status-badge.open .status-dot {
    background-color: #228f5f;
    box-shadow: 0 0 0 3px #d6f5db;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 2rem;
}

.style-section {
    margin-bottom: 9rem;
    scroll-margin-top: 140px;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.style-title,
.y2k-text {
    color: var(--primary);
    -webkit-text-stroke: 1px transparent;
    text-shadow:
        3px 0 0 white, -3px 0 0 white, 0 3px 0 white, 0 -3px 0 white,
        2px 2px 0 white, -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white,
        5px 0 0 var(--primary-dark), -5px 0 0 var(--primary-dark), 0 5px 0 var(--primary-dark), 0 -5px 0 var(--primary-dark),
        4px 4px 0 var(--primary-dark), -4px -4px 0 var(--primary-dark), 4px -4px 0 var(--primary-dark), -4px 4px 0 var(--primary-dark),
        0px 11px 0px var(--primary-dark);

    font-family: 'Starborn', sans-serif;
    font-weight: normal;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    letter-spacing: 2px;
    padding: 30px 10px 40px 10px;
}

@keyframes paperTitle {

    0%,
    100% {
        transform: rotate(-0.25deg);
    }

    50% {
        transform: rotate(0.25deg);
    }
}

.style-title {
    font-size: 3.5rem;
    display: inline-block;
    animation: paperTitle 0.6s steps(1, end) infinite;
}

.y2k-text {
    font-size: 3rem;
}

.style-title span:nth-child(even),
.y2k-text span:nth-child(even) {
    color: var(--primary);
}

.style-title span:nth-child(odd),
.y2k-text span:nth-child(odd) {
    color: var(--primary-dark);
}

.style-content {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
}

.style-gallery {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.mini-card {
    background: #fffafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
    border: 8px solid white;
    position: relative;
    aspect-ratio: 1 / 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px dashed var(--primary);
    pointer-events: none;
    z-index: 10;
}

.mini-card:nth-child(even) {
    transform: rotate(1deg);
}

.mini-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.mini-card:hover {
    transform: translateY(-5px) rotate(0deg) scale(1.02);
    z-index: 2;
    box-shadow: 8px 8px 0px var(--primary);
}

.mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.style-price-box {
    flex: 1;
    text-align: center;
    min-width: 300px;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 130px;
    z-index: 10;
    align-self: flex-start;
    height: max-content;
    margin-bottom: auto;
}

.price-box-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
    letter-spacing: 0.5px;
}

.premium-price-card {
    background: #ffffff;
    padding: 3rem 2rem 2.5rem;
    position: relative;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(253, 174, 193, 0.15), inset 0 0 0 4px #ffffff;
    border: 3px solid var(--card-accent, var(--primary));
    overflow: hidden;
    margin-top: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(253, 174, 193, 0.25), inset 0 0 0 4px #ffffff;
}

.premium-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, var(--card-accent, var(--primary)) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.15;
    pointer-events: none;
}

.premium-price-card::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px dashed var(--card-accent, rgba(253, 174, 193, 0.5));
    border-radius: 22px;
    pointer-events: none;
    z-index: 1;
}

.premium-price-title {
    font-size: 1.8rem;
    font-family: 'Anja Eliane', sans-serif;
    font-weight: normal;
    color: var(--card-dark, var(--text));
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.premium-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.premium-price-amount,
.price-symbol {
    font-size: 2.6rem;
    font-family: 'Starborn', sans-serif;
    font-weight: normal;
    color: var(--primary-dark);
    -webkit-text-stroke: 1px transparent;
    text-shadow:
        2px 0 0 white, -2px 0 0 white, 0 2px 0 white, 0 -2px 0 white,
        1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
        4px 0 0 var(--primary-dark), -4px 0 0 var(--primary-dark), 0 4px 0 var(--primary-dark), 0 -4px 0 var(--primary-dark),
        3px 3px 0 var(--primary-dark), -3px -3px 0 var(--primary-dark), 3px -3px 0 var(--primary-dark), -3px 3px 0 var(--primary-dark),
        0px 6px 0px var(--primary-dark);
    line-height: 1;
}

.price-symbol {
    display: inline-flex;
    margin-right: 6px;
}

.price-desc {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 500;
}

.stickers-wrapper {
    position: relative;
    max-height: 310px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.stickers-wrapper.expanded {
    max-height: 5000px;
}

.stickers-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #fffbfa);
    pointer-events: none;
    transition: opacity 0.3s;
}

.stickers-wrapper.expanded::after {
    opacity: 0;
}

.ver-mais-btn {
    background: var(--primary);
    color: white;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 50px;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(253, 174, 193, 0.4);
    cursor: pointer;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    margin: 20px auto 0;
    display: inline-block;
    align-self: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ver-mais-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 174, 193, 0.5);
}

.package-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    color: var(--text);
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 8px;
}

.package-list li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.package-list strong {
    color: var(--primary-dark);
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.scrapbook-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3.5rem 2.5rem;
    background: #fffcfd;
    border: 3px dashed var(--primary);
    border-radius: 30px;
    position: relative;
    box-shadow: inset 0 0 50px rgba(255, 143, 181, 0.08);
    margin-top: 3rem;
    background-image: radial-gradient(#ffe8ee 2px, transparent 2px);
    background-size: 30px 30px;
}

.scrap-note {
    background: white;
    padding: 2rem 1.8rem;
    position: relative;
    box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, z-index 0s;
    display: flex;
    flex-direction: column;
    transform: scale(1) rotate(0deg);
}

.scrap-note:hover {
    transform: scale(1.01) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 4px 6px 15px rgba(253, 174, 193, 0.1);
}

.scrap-note p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

.scrap-note.paper-1 {
    border-radius: 2px 2px 25px 2px;
    background: #fffcfd;
    transform: scale(1) rotate(-1.5deg);
    border: 1px solid #ffe8ee;
}

.scrap-note.paper-2 {
    border-radius: 25px 2px 2px 2px;
    background: #fdfdff;
    transform: scale(1) rotate(2deg);
    border: 1px solid #eef1ff;
}

.scrap-note.paper-3 {
    border-radius: 2px 25px 2px 2px;
    background: #fffff8;
    transform: scale(1) rotate(-2deg);
    border: 1px solid #fffae8;
}

.scrap-note.paper-4 {
    border-radius: 8px;
    background: #fafffc;
    transform: scale(1) rotate(1deg);
    border: 1px solid #e8ffef;
}

.scrap-main {
    grid-column: 1 / -1;
    background: #fff0f3 !important;
    border: 2px solid var(--primary) !important;
    border-radius: 15px !important;
    transform: rotate(0deg) !important;
}

.tape {
    position: absolute;
    width: 80px;
    height: 22px;
    background: rgba(255, 183, 178, 0.5);
    backdrop-filter: blur(2px);
    top: -10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: rotate(-2deg);
    z-index: 5;
}

.tape::before,
.tape::after {
    content: '';
    position: absolute;
    top: 0;
    width: 6px;
    height: 100%;
    background: inherit;
}

.tape::before {
    left: -3px;
    border-left: 2px dashed rgba(255, 255, 255, 0.6);
}

.tape::after {
    right: -3px;
    border-right: 2px dashed rgba(255, 255, 255, 0.6);
}

.tape.pink {
    background: rgba(253, 174, 193, 0.6);
    transform: rotate(3deg);
}

.tape.purple {
    background: rgba(199, 206, 250, 0.6);
    transform: rotate(-3deg);
}

.tape.yellow {
    background: rgba(255, 245, 186, 0.7);
    transform: rotate(1.5deg);
}

.tape.green {
    background: rgba(188, 235, 196, 0.6);
    transform: rotate(-2deg);
}

.tape.top-center {
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
}

.tape.top-center.pink {
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
}

.tape.top-left {
    left: 10px;
    top: -10px;
    transform: rotate(-10deg);
    width: 60px;
}

.tape.top-right {
    right: 10px;
    top: -10px;
    transform: rotate(10deg);
    width: 60px;
}

.scrap-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed rgba(214, 91, 116, 0.2);
    padding-bottom: 1rem;
}

.scrap-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 0px rgba(253, 174, 193, 0.3));
}

.scrap-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
}

.scrap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scrap-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text);
}

.scrap-list.no-flower li {
    padding-left: 0;
    text-align: center;
}

.scrap-list li::before {
    content: '☆';
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--primary-dark);
    font-size: 1rem;
}

.scrap-list.no-flower li::before {
    display: none;
}

.trello-link {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 12px;
    border: 1.5px dashed rgba(214, 91, 116, 0.3);
    background: radial-gradient(ellipse at center, rgba(253, 174, 193, 0.15) 0%, rgba(255, 252, 253, 0.85) 65%, #fffcfd 100%);
    box-shadow: 0 2px 12px rgba(253, 174, 193, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.trello-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 174, 193, 0.35);
    border-color: rgba(214, 91, 116, 0.5);
    background: radial-gradient(ellipse at center, rgba(253, 174, 193, 0.25) 0%, rgba(255, 252, 253, 0.9) 65%, #fffcfd 100%);
}

.dos-donts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .dos-donts-container {
        grid-template-columns: 1fr;
    }
}

.do-card {
    background: #f8faee;
    border: 2px dashed #bfd294;
    border-radius: 12px;
    padding: 2rem 1.8rem;
    position: relative;
    box-shadow: 2px 4px 10px rgba(191, 210, 148, 0.15);
}

.dont-card {
    background: #fff0f0;
    border: 2px dashed #ffbcbc;
    border-radius: 12px;
    padding: 2rem 1.8rem;
    position: relative;
    box-shadow: 2px 4px 10px rgba(214, 69, 69, 0.05);
}

.do-card h3 {
    color: #48a56a;
}

.dont-card h3 {
    color: #cf5c66;
}

.do-icon {
    stroke: #228f5f;
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dont-icon {
    stroke: #d64545;
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.highlight-alert {
    color: var(--primary-dark);
    font-weight: 700;
    background: #fff0f3;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    display: inline-block;
}

.scalloped-card {
    background: #ffffff;
    padding: 3rem 2rem;
    position: relative;
    border: 3px solid var(--primary);
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(255, 143, 181, 0.15);
}

.scalloped-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px dashed rgba(255, 143, 181, 0.8);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.premium-package-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    padding: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-package-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fffafa;
    border: 2px solid var(--card-accent, var(--primary));
    padding: 10px 18px;
    border-radius: 16px;
    transition: transform 0.2s;
}

.premium-package-list li:hover {
    transform: translateX(5px);
    background: #ffffff;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.04);
}

.pkg-name {
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
    font-family: 'Fredoka', sans-serif;
}

.pkg-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    white-space: nowrap;
}

.pkg-price-badge strong,
.pkg-price-symbol {
    font-size: 1.6rem;
    font-family: 'Starborn', sans-serif;
    font-weight: normal;
    color: var(--primary-dark);
    -webkit-text-stroke: 1px transparent;
    text-shadow:
        2px 0 0 white, -2px 0 0 white, 0 2px 0 white, 0 -2px 0 white,
        1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
        3px 0 0 var(--primary-dark), -3px 0 0 var(--primary-dark), 0 3px 0 var(--primary-dark), 0 -3px 0 var(--primary-dark),
        2px 2px 0 var(--primary-dark), -2px -2px 0 var(--primary-dark), 2px -2px 0 var(--primary-dark), -2px 2px 0 var(--primary-dark),
        0px 4px 0px var(--primary-dark);
    line-height: 1;
}

.pkg-price-symbol {
    display: inline-flex;
    margin-right: 4px;
}

.order-section {
    margin-top: 6rem;
    text-align: center;
    padding: 1rem;
    padding-bottom: 8rem;
}

.handmade-card {
    background: #fffafa;
    border: 3px dashed var(--primary);
    border-radius: 20px;
    padding: 4rem 3rem;
    position: relative;
    box-shadow: 6px 6px 0px var(--primary-dark);
    max-width: 600px;
    margin: 0 auto;
}

.y2k-banner {
    background: white;
    color: var(--primary-dark);
    display: inline-block;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px dashed var(--primary);
    margin-bottom: 2.5rem;
}

.discord-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.y2k-discord-btn {
    background: white;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 5px;
    border: 3px solid var(--primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 5px 5px 0px var(--primary-dark);
    position: relative;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-dark);
    transition: all 0.2s ease;
}

.y2k-discord-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0px var(--primary-dark);
    background: #fffafa;
    border: 3px dashed var(--primary);
}

.y2k-discord-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--primary-dark);
}

.y2k-discord-btn.success {
    color: var(--discord-success);
    border-color: var(--discord-success);
    box-shadow: 4px 4px 0px var(--discord-success);
}

.y2k-footer-msg {
    margin-top: 2rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    color: var(--text);
    font-size: 1.1rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--text);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
    background: var(--primary);
    color: white;
}

.creative-footer {
    background: #fffbfa;
    border-radius: 0;
    padding: 3rem 2rem 3rem 2rem;
    margin-top: 0;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 0 -10px 30px rgba(255, 143, 181, 0.15);
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.dev-section {
    margin-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-fade {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.lang-fade-out {
    opacity: 0 !important;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.dev-section:hover {
    opacity: 1;
}

.dev-tag {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
}

.dev-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.dev-tag strong {
    font-weight: 700;
}

.asset-termos-container {
    grid-column: 2 / -1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: -150px;
    margin-bottom: -50px;
    z-index: 10;
    pointer-events: none;
}

.asset-termos-img {
    width: 440px;
    max-width: none;
    pointer-events: none;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    transform: translate(100px, -30px);
}

.premium-price-title {
    font-family: 'Anja Eliane', sans-serif;
}

.do-card h3 {
    color: #bfd294;
}

.dont-card h3 {
    color: #d75d76;
}

.scrap-list li::before {
    content: '☆';
}

.top-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: -10;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
}

.footer-svg-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 6rem;
    margin-bottom: -4px;
    z-index: 10;
    pointer-events: none;
    overflow: visible;
}

@media (max-width: 768px) {
    html::after {
        background: radial-gradient(ellipse at center, transparent 65%, rgba(253, 174, 193, 0.12) 85%, rgba(214, 91, 116, 0.08) 100%);
    }

    .top-svg-container {
        height: 250px;
    }

    .top-svg-container svg {
        transform: scale(2);
        transform-origin: top center;
    }

    .footer-svg-container {
        height: 150px;
        margin-top: 3rem;
    }

    .footer-svg-container svg {
        transform: scale(2) translateX(-18%);
        transform-origin: bottom center;
    }

    .asset-termos-container {
        grid-column: 1 / -1;
        margin-bottom: -20px;
    }

    .asset-termos-img {
        width: 250px;
    }

    body {
        padding-top: 0;
        background-size: 25px 25px;
    }

    h1 {
        font-size: 3rem;
        flex-wrap: wrap;
    }

    p.subtitle {
        font-size: 1.1rem;
    }

    nav {
        top: 15px;
        padding: 0 10px;
    }

    .nav-links {
        padding: 8px;
        gap: 5px;
        scroll-snap-type: x mandatory;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links li {
        scroll-snap-align: center;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 10px 20px;
        white-space: nowrap;
    }

    .container {
        padding: 1.5rem 1rem;
    }

    .style-section {
        margin-bottom: 5rem;
        scroll-margin-top: 100px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .style-title {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
        letter-spacing: 0px;
        padding: 20px 20px 30px 25px;
        word-break: normal;
        overflow-wrap: normal;
        white-space: normal;
        max-width: 100%;
        overflow: visible;
    }

    .y2k-text {
        font-size: clamp(1.4rem, 7vw, 2.5rem);
        letter-spacing: 0px;
        padding: 20px 15px 30px 20px;
        word-break: normal;
        overflow-wrap: normal;
        white-space: normal;
        max-width: 100%;
        overflow: visible;
    }

    .section-header {
        overflow: visible;
    }

    .style-content {
        flex-direction: column;
        gap: 2rem;
    }

    .style-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }

    .mini-card {
        border-width: 3px;
        border-radius: 18px;
    }

    .style-price-box {
        width: 100%;
        position: static;
        margin-bottom: 1rem;
        padding: 2rem;
        order: 2;
    }

    .price-tag {
        font-size: 1.6rem;
        padding: 10px 25px;
        transform: rotate(0deg);
    }

    .terms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .term-card {
        padding: 2rem 1.5rem;
    }

    .order-box {
        padding: 3rem 1.5rem;
        border-radius: 40px;
        border-width: 3px;
    }

    .discord-btn {
        font-size: 1.2rem;
        padding: 16px 30px;
        width: 100%;
        justify-content: center;
    }

    .discord-btn-wrapper {
        width: 100%;
        margin: 2rem 0;
    }

    .lang-options {
        flex-direction: column;
        width: 100%;
    }

    .pretty-lang-btn {
        width: 100%;
        justify-content: center;
        padding: 20px;
    }

    .lang-card {
        padding: 2rem 1.5rem;
    }

    .top-brand {
        font-size: 1.5rem;
    }

    .top-brand span {
        font-size: 2rem;
    }

    h1.portfolio-text {
        font-size: 2.5rem;
    }

    @keyframes floatingTitleMobile {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    .main-title-img {
        animation: floatingTitleMobile 4s ease-in-out infinite;
    }

    .scrapbook-board {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.2rem;
    }

    .scrap-note {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .lang-cloud-tl {
        left: -130px;
    }
}