:root {
    --meme-blue: #6DE3F2;
    --meme-cream: #FFF6E3;
    --meme-orange: #FFA94D;
    --meme-green: #3EDC81;
    --meme-red: #FF3B30;
    --meme-yellow: #FFE14D;
    --meme-brown: #7A4F1D;
}

body {
    background: var(--meme-blue);
    color: var(--meme-brown);
    font-family: 'Inter', Arial, sans-serif;
    min-height: 100vh;
    background-color: var(--meme-blue);
}

.logo {
    background: var(--meme-blue);
    color: var(--meme-brown);
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 16px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: inline-block;
}

.buy-btn {
    background: var(--meme-orange);
    color: var(--meme-brown);
    border: 3px solid var(--meme-green);
    padding: 16px 40px;
    border-radius: 18px;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px 0 rgba(62, 220, 129, 0.10);
    outline: none;
    text-decoration: none !important;
    /* border-bottom: none !important; */
}

.buy-btn:hover,
.buy-btn:focus {
    background: var(--meme-yellow);
    color: var(--meme-brown);
    box-shadow: 0 4px 24px 0 rgba(62, 220, 129, 0.18);
    border-color: var(--meme-orange);
}

.buy-btn a {
    text-decoration: none !important;
    border-bottom: none !important;
    color: inherit;
}

.hero-section {
    background: var(--meme-cream);
    border-radius: 32px;
    margin: 24px auto;
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    box-shadow: 0 4px 32px rgba(122, 79, 29, 0.08);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        repeating-linear-gradient(135deg, rgba(62, 220, 129, 0.08) 0 2px, transparent 2px 40px),
        repeating-linear-gradient(45deg, rgba(62, 220, 129, 0.08) 0 2px, transparent 2px 40px);
    pointer-events: none;
    border-radius: 32px;
}

.hero-content,
.hero-img {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--meme-brown);
}

.blue,
.green {
    color: var(--meme-green);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--meme-orange);
}

.desc {
    color: var(--meme-brown);
    margin-bottom: 24px;
}

.address-bar {
    background: var(--meme-cream);
    border: 2px solid var(--meme-green);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 1.15rem;
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
    color: var(--meme-brown);
    gap: 14px;
}

.address-bar span {
    text-align: center;
    flex: 0 1 auto;
}

.address-bar button {
    background: none;
    border: none;
    color: var(--meme-green);
    font-size: 1.5rem;
    margin-left: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.action-btn {
    background: var(--meme-green);
    color: var(--meme-brown);
    border: none;
    border-radius: 32px;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 10px;
}

.action-btn.primary {
    background: var(--meme-orange);
    color: var(--meme-brown);
}

.action-btn:hover {
    background: var(--meme-brown);
    color: var(--meme-cream);
}

.hero-img {
    text-align: center;
}

.hero-img img {
    width: 340px;
    max-width: 90vw;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(122, 79, 29, 0.5);
    background: var(--meme-brown);
}

.about-section {
    background: var(--meme-cream) !important;
    border-radius: 40px;
    box-shadow: 0 8px 40px 0 rgba(122, 79, 29, 0.10);
    padding: 56px 48px !important;
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 40px auto;
    justify-content: center;
}

.about-img {
    width: 100%;
    text-align: center;
}

.about-img img {
    max-width: 100%;
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 8px 40px 0 rgba(62, 220, 129, 0.10);
    background: var(--meme-blue);
    display: block;
    margin: 0 auto;
}

.about-text h2 {
    color: var(--meme-brown);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.about-text p {
    color: var(--meme-brown);
    font-size: 1.35rem;
    margin-top: 24px;
    font-weight: 500;
    line-height: 1.5;
}

.highlight-section {
    background: var(--meme-yellow) !important;
    border: 2px solid var(--meme-orange);
    box-shadow: 0 4px 32px rgba(122, 79, 29, 0.10);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.highlight-content {
    color: var(--meme-brown);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.highlight-content>* {
    margin-left: auto;
    margin-right: auto;
}

.highlight-content p,
.highlight-content div.mb-3 {
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-content .address-bar {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 700px;
}

.highlight-content .d-flex {
    justify-content: center !important;
    width: 100%;
    gap: 24px;
}

.footer-disclaimer {
    background: var(--meme-cream);
}

.footer-disclaimer small {
    color: var(--meme-brown) !important;
}

.main-meme-bg {
    background: repeating-conic-gradient(from 45deg, var(--meme-cream) 0deg 30deg, var(--meme-blue) 30deg 60deg);
    min-height: 100vh;
}

.hotdog {
    background: var(--meme-orange);
    border: 4px solid var(--meme-brown);
    border-radius: 40px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
}

.sausage-red {
    background: var(--meme-red);
}

.sausage-yellow {
    background: var(--meme-yellow);
}

.headphone {
    background: var(--meme-green);
}

.hero-btn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 24px;
    justify-items: center;
}

@media (max-width: 600px) {
    .hero-btn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        margin-bottom: 18px;
    }

    .hero-btn-grid .action-btn {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        font-size: 0.95rem;
        height: 48px;
        padding-left: 8px;
        padding-right: 8px;
        margin: 0;
    }
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        padding: 32px 16px;
    }

    .hero-img {
        margin-top: 32px;
    }
}

@media (max-width: 600px) {
    .buy-btn {
        display: block;
        margin: 0 auto 18px auto;
        width: fit-content;
        /* border-bottom: none !important; */
    }

    .hero-section {
        flex-direction: column !important;
        padding: 16px 4px !important;
        border-radius: 16px;
        margin: 8px;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
    }

    .hero-content {
        padding: 0 8px;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title,
    .hero-subtitle,
    .desc {
        text-align: center;
    }

    .desc {
        margin-bottom: 16px;
        text-align: justify;
    }

    .address-bar {
        word-break: break-all;
        overflow-x: auto;
        text-align: center;
        justify-content: center;
    }

    .hero-img {
        margin-top: 18px !important;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-img img {
        width: 240px;
        max-width: 98vw;
        border-radius: 16px;
        margin: 0 auto;
    }

    .about-section {
        padding: 10px !important;
    }

    .about-img {
        width: 100%;
        margin: 18px 0 18px 0;
        display: flex;
        justify-content: center;
    }

    .about-img img {
        width: 350px;
        max-width: 350px;
        border-radius: 14px;
        margin: 0 auto;
        display: block;
    }

    .hero-content .d-flex {
        flex-wrap: wrap !important;
        gap: 12px;
        justify-content: center !important;
        align-items: stretch !important;
        width: 100%;
        margin-bottom: 18px;
    }

    .hero-content .action-btn {
        min-width: 48%;
        max-width: 48%;
        width: 48%;
        font-size: 0.95rem;
        height: 48px;
        padding-left: 8px;
        padding-right: 8px;
        margin: 0;
    }
}

.hero-content .d-flex {
    justify-content: center !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    /* gap: 2px; */
    width: 100%;
    margin-bottom: 24px;
    overflow-x: auto;
}

.hero-content .action-btn {
    min-width: 120px;
    max-width: 180px;
    width: 100%;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content .action-btn i {
    font-size: 1.1em;
}

@media (max-width: 600px) {
    .highlight-content .d-flex {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        margin-bottom: 18px;
        justify-items: center;
    }

    .highlight-content .action-btn {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        font-size: 0.95rem;
        height: 48px;
        padding-left: 8px;
        padding-right: 8px;
        margin: 0;
    }
}

.hero-title,
.hero-subtitle,
.desc,
.hero-img img,
.about-img img {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.desc {
    animation-delay: 0.5s;
}

.hero-img img {
    animation-delay: 0.7s;
}

.about-img img {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }
}

.hero-img img:hover,
.about-img img:hover {
    transform: scale(1.07) rotate(-2deg);
    transition: transform 0.3s cubic-bezier(.4, 2, .6, 1);
    box-shadow: 0 8px 40px 0 rgba(62, 220, 129, 0.18);
}

.hero-img img,
.about-img img {
    transition: transform 0.3s cubic-bezier(.4, 2, .6, 1), box-shadow 0.3s;
}