* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input, textarea {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    draggable: false;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 80px 20px 20px 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Authentication Modal */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal.show {
    display: flex;
    animation: fadeInModal 0.4s ease-out;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.auth-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: slideUpFadeIn 0.4s ease-out;
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-container * {
    pointer-events: auto;
}

.auth-container input,
.auth-container button,
.auth-container form {
    pointer-events: auto !important;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    margin-bottom: 15px;
    object-fit: cover;
}

.auth-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px 0;
}

.auth-header p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #808080;
    margin: 0;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #808080;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab.active {
    color: #22A7E4;
    border-bottom-color: #22A7E4;
}

.auth-form {
    display: none;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
}

.auth-form.active {
    display: block !important;
}

.auth-form[style*="display: block"] {
    display: block !important;
}

.auth-form-container {
    position: relative;
    z-index: 1002;
    pointer-events: auto;
}

.auth-input-group {
    margin-bottom: 20px;
}

.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.password-input-wrapper input:focus {
    border-color: #22A7E4;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #808080;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #22A7E4;
}

.password-toggle:focus {
    outline: none;
}

.auth-input-group {
    margin-bottom: 20px;
    text-align: center;
}

.auth-input-group input:not(.password-input-wrapper input) {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #22A7E4;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    background: transparent;
    text-align: center;
}

.auth-input-group input:not(.password-input-wrapper input)::placeholder {
    color: #808080;
    text-align: center;
}

.auth-input-group input:not(.password-input-wrapper input):focus {
    border-bottom-color: #22A7E4;
    color: #22A7E4;
    text-align: center;
}

/* Code input field styling (step 2) */
[data-ms-passwordless="step-2"] .auth-input-group input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #22A7E4;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    background: transparent;
    text-align: center;
}

[data-ms-passwordless="step-2"] .auth-input-group input::placeholder {
    color: #808080;
    text-align: center;
}

[data-ms-passwordless="step-2"] .auth-input-group input:focus {
    border-bottom-color: #22A7E4;
    color: #22A7E4;
    text-align: center;
}

.auth-submit-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #209DD6 0%, #5ED4FF 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.auth-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 157, 214, 0.3);
}

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-error {
    color: #ff3b30;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
    min-height: 20px;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    }

    .sticker-library,
    .pack-detail {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .library-back-btn,
    .pack-back-btn {
        top: calc(15px + env(safe-area-inset-top));
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

/* App Icon */
.app-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
    border-radius: 27px;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 27px;
}

/* App Name */
.framer-text.framer-styles-preset-17nuuo0 {
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    color: rgb(0, 0, 0);
    margin: 0;
    text-align: center;
    margin-bottom: 7px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

/* Subtitle */
.subtitle {
    font-size: 13px;
    color: #808080;
    margin: 0;
    text-align: center;
    margin-bottom: 28px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

/* Access Button */
.access-btn {
    background: linear-gradient(135deg, #209DD6 0%, #5ED4FF 100%);
    color: white;
    border: none;
    border-radius: 30px;
    width: 85px;
    height: 28px;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: -10px;
    margin-bottom: 48px;
    box-shadow: none;
    animation: fadeIn 0.6s ease-out 0.6s forwards;
    opacity: 0;
    letter-spacing: 0.2px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-btn:hover {
    transform: none;
    box-shadow: none;
}

.access-btn:active {
    transform: none;
    box-shadow: none;
}

/* Video Player */
.video-player {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.video-controls-top {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.speaker-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Play/Pause Icon */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
}

.play-icon svg {
    width: 100%;
    height: 100%;
}

/* Sticker Library */
.sticker-library {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: #fafafa;
    padding: 0;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
    overscroll-behavior: contain;
    cursor: grab;
    user-select: none;
    touch-action: pan-x pan-y;
}

.sticker-library:active {
    cursor: grabbing;
}

.sticker-library::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.sticker-library::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0.6) 0%, rgba(250, 250, 250, 0.3) 30%, rgba(250, 250, 250, 0.1) 60%, transparent 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 10;
    mask: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.sticker-library.show {
    opacity: 1;
}

.library-back-btn {
    position: fixed;
    top: 20px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
    overflow: visible;
}

.library-logout-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #808080;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
}

.library-logout-btn:hover {
    background: #f5f5f5;
    border-color: #ff3b30;
    color: #ff3b30;
}

.library-back-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2.5px solid #22A7E4;
    border-radius: 16px;
    pointer-events: none;
    box-shadow: 0 0 0 1px rgba(34, 167, 228, 0.1);
}

.library-back-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.library-back-btn:hover::after {
    box-shadow: 0 0 0 1px rgba(34, 167, 228, 0.2);
}

.library-back-logo {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 12px;
    pointer-events: none;
}

.library-grid {
    position: relative;
    width: 20000px;
    height: 20000px;
    margin: 0;
    padding: 0;
}

.sticker-square {
    width: 100%;
    aspect-ratio: 1;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    animation: fadeInSquare 0.4s ease-out forwards;
    opacity: 0;
    min-height: 220px;
    overflow: hidden;
    position: relative;
}

.pack-image {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 16px;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.sticker-square:hover .pack-image {
    width: 80%;
    height: 80%;
}

.sticker-square:nth-child(1) { animation-delay: 0.1s; }
.sticker-square:nth-child(2) { animation-delay: 0.15s; }
.sticker-square:nth-child(3) { animation-delay: 0.2s; }
.sticker-square:nth-child(4) { animation-delay: 0.25s; }
.sticker-square:nth-child(5) { animation-delay: 0.3s; }
.sticker-square:nth-child(6) { animation-delay: 0.35s; }
.sticker-square:nth-child(7) { animation-delay: 0.4s; }
.sticker-square:nth-child(8) { animation-delay: 0.45s; }
.sticker-square:nth-child(n+9) { animation-delay: 0.5s; }

@keyframes fadeInSquare {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */

/* iPad - Desktop mode at 85% scale */
@media (min-width: 768px) and (max-width: 1024px) {
    html {
        zoom: 0.85;
        -moz-transform: scale(0.85);
        -moz-transform-origin: 0 0;
        -webkit-transform: scale(0.85);
        -webkit-transform-origin: 0 0;
        transform: scale(0.85);
        transform-origin: 0 0;
        width: 117.65%; /* 100% / 0.85 to maintain layout */
        height: 117.65%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
        height: 100%;
    }

    /* Ensure desktop styles are used, not mobile responsive styles */
    .pack-sidebar {
        width: 270px !important;
    }

    .sidebar-pack-square {
        width: 250px !important;
        height: 250px !important;
    }
}

/* Smaller tablets (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .container {
        padding: 40px 20px;
    }

    .app-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }

    .framer-text.framer-styles-preset-17nuuo0 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .access-btn {
        width: 85px;
        height: 28px;
        font-size: 14px;
    }

    .library-back-btn,
    .pack-back-btn {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 30px;
    }

    .library-back-logo,
    .pack-back-logo {
        width: 40px;
        height: 40px;
    }

    .pack-sidebar {
        width: 200px;
        padding: 15px 8px;
    }

    .sidebar-pack-square {
        width: 180px;
        height: 180px;
    }

    .pack-image-container {
        max-width: 500px;
    }

    .pack-detail-image {
        max-width: 500px;
    }

    .pack-detail-image-blur {
        max-width: 425px;
    }
}

/* iPhone - Desktop mode at 50% scale */
@media (max-width: 480px) {
    html {
        zoom: 0.5;
        -moz-transform: scale(0.5);
        -moz-transform-origin: 0 0;
        -webkit-transform: scale(0.5);
        -webkit-transform-origin: 0 0;
        transform: scale(0.5);
        transform-origin: 0 0;
        width: 200%; /* 100% / 0.5 to maintain layout */
        height: 200%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
        height: 100%;
    }

    /* Ensure desktop styles are used, not mobile responsive styles */
    .pack-sidebar {
        width: 270px !important;
    }

    .sidebar-pack-square {
        width: 250px !important;
        height: 250px !important;
    }

    .pack-detail {
        flex-direction: row !important;
    }
}


/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .access-btn:active,
    .own-btn:active,
    .sidebar-pack-square:active,
    .sticker-square:active {
        transform: scale(0.95);
    }

    .library-back-btn:active,
    .pack-back-btn:active {
        transform: scale(0.9);
    }
}


/* Pack Detail Page */
.pack-detail {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: #ffffff;
    flex-direction: row;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.pack-detail.show {
    opacity: 1;
}

.pack-back-btn {
    position: fixed;
    top: 20px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
}

.pack-back-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2.5px solid #22A7E4;
    border-radius: 50%;
    pointer-events: none;
}

.pack-back-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pack-back-logo {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: none;
}

/* Pack Sidebar */
.pack-sidebar {
    width: 270px;
    height: 100vh;
    background: #ffffff;
    padding: 20px 10px;
    margin-left: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-search {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.sidebar-search:focus {
    border-color: #22A7E4;
}

.sidebar-search::placeholder {
    color: #999;
}

.sidebar-packs-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    flex: 1;
}

.pack-sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.sidebar-pack-square {
    width: 250px;
    height: 250px;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    flex-shrink: 0;
}

.sidebar-pack-square:hover {
    transform: scale(1.05);
}

.sidebar-pack-square.active {
    border: 3px solid #209DD6;
    border-radius: 20px;
}

.sidebar-pack-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Pack Main Content */
.pack-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 40px 40px 40px;
    padding-top: 120px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ffffff;
}

.pack-image-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    position: relative;
}

.pack-detail-image-blur {
    position: absolute;
    width: 85%;
    max-width: 510px;
    height: auto;
    object-fit: contain;
    filter: blur(40px);
    opacity: 0.4;
    z-index: 0;
    transform: scale(1.1);
}

.pack-detail-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    animation: pulseScale 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.pack-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    justify-content: flex-start;
    margin-left: 0px;
    margin-top: 20px;
    align-self: flex-start;
}

.pack-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.pack-title.pink-aesthetic-gradient {
    background: linear-gradient(135deg, #ee889b 0%, #ffc4d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.burgundy-aesthetic-gradient {
    background: linear-gradient(135deg, #3d0712 0%, #8a3643 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.beige-aesthetic-gradient {
    background: linear-gradient(135deg, #b09875 0%, #f6e7cf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.orange-aesthetic-gradient {
    background: linear-gradient(135deg, #ec6904 0%, #ff9e12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.brown-aesthetic-gradient {
    background: linear-gradient(135deg, #612a09 0%, #935328 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.lavender-aesthetic-gradient {
    background: linear-gradient(135deg, #8772c7 0%, #bda9f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.leopard-theme-mask {
    background-image: url('Packs/Pack 7 | Leopard Theme/LeopardThemeMask.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.vintage-theme-gradient {
    background: linear-gradient(135deg, #959984 0%, #ebdbb4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.tropical-theme-gradient {
    background: linear-gradient(135deg, #fe2d8d 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.dark-theme-gradient {
    background: linear-gradient(135deg, #000000 0%, #e6b764 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.olive-green-aesthetic-gradient {
    background: linear-gradient(135deg, #6f743a 0%, #c3c489 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.pearl-theme-gradient {
    background: linear-gradient(135deg, #cfc5ae 0%, #f7f5f1 50%, #cebead 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.rose-gold-theme-gradient {
    background: linear-gradient(135deg, #e0987e 0%, #fac0a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.mermaid-theme-gradient {
    background: linear-gradient(135deg, #92c8be 0%, #f7e2cf 33%, #fcb6a4 66%, #a8c0f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.strawberry-theme-gradient {
    background: linear-gradient(135deg, #d30e0b 0%, #fb715b 50%, #c9db35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.chinese-theme-gradient {
    background: linear-gradient(135deg, #a90600 0%, #dc3f2a 33%, #fc9700 66%, #fdcc2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.ancient-egypt-theme-gradient {
    background: linear-gradient(135deg, #191818 0%, #efb663 25%, #265a97 50%, #f3bc68 75%, #0bc3aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-title.moroccan-theme-gradient {
    background: linear-gradient(135deg, #a12020 0%, #079e63 50%, #a12020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.own-btn {
    background: #22A7E4;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
    box-shadow: none;
    flex-shrink: 0;
}

.own-btn:hover {
    background: #49D6C1;
    transform: translateY(-1px);
    box-shadow: none;
}

.own-btn:active {
    transform: translateY(0);
}

