/* ========================================
   MyTree - Christmas Home - NGL Style
   Pink to Orange Gradient Theme
   ======================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Main Container - Big Card Layout */
.main-container {
    max-width: 1400px;
    margin: 40px auto;
    background: linear-gradient(180deg,
        #FF1493 0%,
        #FF1493 10%,
        #FF4569 25%,
        #FF6B35 50%,
        #FF8C5A 75%,
        #FFA07A 90%,
        #000000 100%
    );
    border-radius: 40px;
    padding: 0;
    box-shadow: 0 30px 90px rgba(255, 20, 147, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Navbar - NGL Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-right a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-right a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.app-buttons {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.app-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Hero Section - NGL Bold Typography */
.hero {
    text-align: center;
    padding: 80px 40px 120px;
    position: relative;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: lowercase;
    margin-bottom: 32px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-button {
    background: #ffffff;
    color: #FF1493;
    border: none;
    padding: 20px 60px;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    animation: bounceArrow 2s infinite;
}

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

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

/* Tree Selection Cards */
.tree-cards {
    padding: 60px 40px 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tree-cards.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.tree-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tree-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-label {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: lowercase;
    text-align: center;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pro-label {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tree-image-wrapper {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tree-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.tree-card:hover .tree-img {
    transform: scale(1.05);
}

/* Gift Overlays with Hover Animation */
.gift-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gift-item {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.tree-card:hover .gift-item {
    opacity: 1;
}

.gift-1 {
    top: 20%;
    left: 10%;
    transform: translate(-100px, -100px) rotate(-20deg);
}

.tree-card:hover .gift-1 {
    transform: translate(0, 0) rotate(0deg);
}

.gift-2 {
    top: 30%;
    right: 10%;
    transform: translate(100px, -100px) rotate(20deg);
}

.tree-card:hover .gift-2 {
    transform: translate(0, 0) rotate(0deg);
}

.gift-3 {
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, 100px) rotate(-15deg);
}

.tree-card:hover .gift-3 {
    transform: translate(-50%, 0) rotate(0deg);
}

/* Decorate Section */
.decorate-section {
    padding: 100px 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.decorate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: lowercase;
    margin-bottom: 64px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.gift-bubble {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.gift-bubble img {
    width: 100%;
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transition: all 0.4s ease;
    margin: 0 auto;
    display: block;
}

.gift-bubble:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.gift-bubble:hover img {
    filter: drop-shadow(0 16px 32px rgba(255, 20, 147, 0.6));
}

.bubble-label {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Setted Tree Section */
.setted-tree {
    padding: 120px 40px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.setted-tree.visible {
    opacity: 1;
    transform: translateY(0);
}

.tree-showcase {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0;
}

.main-tree {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

.floating-gifts {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.float-gift {
    position: absolute;
    animation: floatAround 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-gift img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.3));
}

.float-gift:nth-child(1) {
    left: calc(50% + var(--x));
    top: calc(50% + var(--y));
}

.float-gift:nth-child(2) {
    left: calc(50% + var(--x));
    top: calc(50% + var(--y));
}

.float-gift:nth-child(3) {
    left: calc(50% + var(--x));
    top: calc(50% + var(--y));
}

.float-gift:nth-child(4) {
    left: calc(50% + var(--x));
    top: calc(50% + var(--y));
}

.float-gift:nth-child(5),
.float-gift:nth-child(6),
.float-gift:nth-child(7) {
    left: calc(50% + var(--x));
    top: calc(50% + var(--y));
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(0, -40px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
}

/* Balloon Shapes */
.balloon {
    animation: floatUp 6s ease-in-out infinite;
}

.balloon-shape {
    width: 60px;
    height: 80px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.2),
                0 10px 30px rgba(0, 0, 0, 0.3);
}

.balloon-shape::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.balloon-shape.pink {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
}

.balloon-shape.orange {
    background: linear-gradient(135deg, #FF6B35, #FF8C5A);
}

.balloon-shape.purple {
    background: linear-gradient(135deg, #9B59B6, #E91E63);
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Friends Section */
.friends-section {
    padding: 100px 40px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.friends-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.friend-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.friend-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.friend-avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF1493, #FF6B35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.friend-info {
    flex: 1;
}

.friend-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.friend-message {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* QR Section */
.qr-section {
    padding: 120px 40px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}

.qr-code {
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.qr-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.qr-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.qr-deco {
    position: absolute;
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Footer */
.footer {
    padding: 60px 40px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Wavy Dividers - NGL Style */
.wave-divider {
    width: 100%;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-flip svg {
    transform: scaleY(-1);
}

/* Section Title Side */
.section-title-side {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: lowercase;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    padding-left: 40px;
}

/* Updated Tree Cards */
.tree-cards {
    position: relative;
}

.santa-label {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Interactive Tree Section */
.tree-interactive-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    flex-wrap: wrap;
}

/* Tree Selector */
.tree-selector {
    flex: 0 0 200px;
}

.selector-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: lowercase;
    margin-bottom: 32px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tree-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tree-option {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tree-option img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.tree-option:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.tree-option.active {
    border-color: #FF1493;
    background: rgba(255, 20, 147, 0.2);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
}

/* Tree Display Card */
.tree-display-card {
    flex: 1;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    padding: 60px 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.tree-card-inner {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tree Topper */
.tree-topper {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: topperFloat 3s ease-in-out infinite;
}

.tree-topper img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 20, 147, 0.6));
}

.topper-label {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

@keyframes topperFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* Tree Container - Z-Index Management */
.tree-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-top: 80px;
}

.main-tree {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

/* Gifts Behind Tree */
.gifts-behind {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gift-behind {
    position: absolute;
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: giftFloat 4s ease-in-out infinite;
}

/* Gifts On Tree */
.gifts-on-tree {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.gift-on-tree {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: giftFloat 3s ease-in-out infinite;
}

@keyframes giftFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Balloons Container */
.balloons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.balloon {
    position: absolute;
    animation: balloonFloat 5s ease-in-out infinite;
}

.balloon-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.balloon-2 {
    top: 25%;
    right: -8%;
    animation-delay: 0.5s;
}

.balloon-3 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.balloon-4 {
    top: 40%;
    right: -12%;
    animation-delay: 1.5s;
}

@keyframes balloonFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(8deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        margin: 20px;
        border-radius: 30px;
    }

    .navbar {
        padding: 20px 24px;
    }

    .hero {
        padding: 60px 24px 80px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .tree-cards,
    .decorate-section,
    .setted-tree,
    .friends-section,
    .qr-section {
        padding: 60px 24px;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .section-title-side {
        padding-left: 24px;
    }

    .card-container,
    .gift-grid,
    .friends-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gift-bubble {
        padding: 16px;
    }

    .gift-bubble img {
        max-width: 100px;
    }

    .bubble-label {
        font-size: 0.9rem;
        margin-top: 10px;
    }

    .qr-deco {
        display: none;
    }

    .tree-interactive-container {
        flex-direction: column;
        gap: 40px;
    }

    .tree-selector {
        flex: none;
        width: 100%;
    }

    .selector-title {
        text-align: center;
    }

    .tree-options {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }

    .tree-display-card {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .main-container {
        margin: 10px;
        border-radius: 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .app-buttons {
        display: none;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .tree-topper img {
        width: 80px;
        height: 80px;
    }

    .topper-label {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}
