* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Disable hover styles on touch devices */
body.no-hover #account-btn:hover,
body.no-hover .menu-item:hover {
    background: none !important;
    cursor: default !important;
}

/* --- Navbar Styling for Transparency Effect --- */

.navbar {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Style links and icons to be WHITE on the transparent bar */
.navbar .nav-link,
.navbar .account-btn,
.navbar .cart-btn,
.navbar .mobile-menu-toggle {
    color: white; 
    transition: color 0.4s ease-in-out;
}

.navbar.mobile-open {
    background-color: #000;
    transition: background-color 0.3s ease;
}

.navbar.mobile-open .nav-link {
    color: #000000; /* make links visible on white background */
}


/* --- Scrolled State (Applied via JavaScript) --- */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Style links and icons to be DARK on the scrolled white bar */
.navbar.scrolled .nav-link,
.navbar.scrolled .account-btn,
.navbar.scrolled .cart-btn,
.navbar.scrolled .mobile-menu-toggle {
    color: #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-link.dropdown::after {
    content: "▼";
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover > .nav-link.dropdown::after {
    transform: rotate(180deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
        
.account-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
    color: #000;
}

.account-btn:hover {
    background-color: #4caf4f30;
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
    color: #333;
}

.cart-btn:hover {
    background-color:#4caf4f30;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}


/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    margin-left: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.mobile-menu-toggle:hover {
    background-color: #4caf4f30;
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    transform: rotate(90deg) scale(1.1);
    color: #4CAF50;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.804);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.236);
    z-index: 999;
    height: 100dvh;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.active {
    max-height: 100vh;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
    visibility: visible;
    pointer-events: auto;
    height: calc(100vh - 60px);
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.296);
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInFromLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-item:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-item:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-item:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-menu.active .mobile-nav-item:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes slideInFromLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}


.mobile-nav-link:hover {
    background: linear-gradient(135deg, #4CAF501a, rgba(244, 67, 54, 0.05));
    color: #4CAF50;
    transform: translateX(8px);
    padding-left: 2rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #4CAF50, #ff6b6b);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
}

/* Special styling for Resources link */
.mobile-nav-link.resources {
    position: relative;
}

.mobile-nav-arrow {
    font-size: 1.2rem;
    font-weight: bold;
    color: #999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-10px);
    opacity: 0;
}

.mobile-nav-link:hover .mobile-nav-arrow {
    color: #4CAF50;
    transform: translateX(0);
    opacity: 1;
}

/* Pulse animation for the arrow */
.mobile-nav-link.resources:hover .mobile-nav-arrow {
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(5px) scale(1.1);
    }
}

/* Add a subtle glow effect */
.mobile-nav-link:active {
    background: #4caf4f30;
    transform: translateX(12px) scale(0.98);
}

/* Main content */
.main-content {
    margin-top: 70px;
    min-height: 200vh;
    padding: 4rem 2rem;
}

.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .navbar {
        padding: 0 0.5rem;
    }
            
    .nav-container {
        height: 60px;
    }

    .logo img {
        max-width: 120px;
    }
            
    .checkout-btn {
        display: none;
    }
            
    .account-btn, .cart-btn {
        padding: 0.4rem;
    }
            
    .nav-actions {
        gap: 0.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
            
    .main-content {
        margin-top: 60px;
        padding: 2rem 1rem;
    }
}
        
@media (max-width: 480px) {
    .logo img {
        max-width: 100px;
    }
            
    .hero-title {
        font-size: 2rem;
    }
            
    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }
}

        
/* Hero */
/* Keyframe animation for the looping text glow effect */
@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

.animate-text-glow {
    animation: text-glow 4s ease-in-out infinite;
}

/* Keyframes for text fade animation */
@keyframes fade-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Classes to apply the animations */
.text-fade-out {
    animation: fade-out 0.5s ease-out forwards;
}

.text-fade-in {
    animation: fade-in 0.5s ease-in forwards;
}

#shop-now-btn {
background-color: #4CAF50;  /* ✅ Gives the button a green background */
transition: transform 0.2s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;  /* ✅ Smooth animations */
border-radius: 8px;  /* ✅ Rounded corners */
display: flex;  /* ⚠️ Turns the button itself into a flex container */
margin-left: auto;
margin-right: auto;
padding: 0.75rem 1.5rem;  /* ✅ Increases padding for better touch targets */
}

#shop-now-btn:hover {
    background-color: rgba(255, 255, 255, 0.90); 
    color: #4CAF50;
    transform: scale(1.01);
    border-radius: 5px;
}
            
/* Keyframe animation for the popping emojis */
@keyframes emoji-pop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1) translateY(-80px);
    }
}

.emoji {
    position: absolute;
    font-size: 2rem;
    pointer-events: none;
    animation: emoji-pop 1.2s ease-out forwards;
}

#loginPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1010;
}

.resources-sidebar.open {
    right: 0; /* Slide in from right */
}

.resources-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
}

.resources-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.3s, transform 0.3s;
}

.close-sidebar:hover {
    color: #4CAF50;
    transform: rotate(90deg); /* rotates 90 degrees on hover */
}

.resources-content {
    padding: 1rem;
}

.mobile-resources-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-resources-list li {
    margin-bottom: 0.5rem;
}

.mobile-resource-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    text-decoration: none;
    color: #333;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0);
}

.mobile-resource-link:hover {
    background: #4caf4f30;
    color: #4CAF50;
    transform: translateX(4px);
    border-color: rgba(244, 67, 54, 0.2);
}

/* Style the icons and content within mobile links */
.mobile-resource-link .resource-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-resource-link:hover .resource-icon {
    background: #4CAF50;
    color: white;
    transform: scale(1.1);
}

.mobile-resource-link .resource-content {
    flex: 1;
}

.mobile-resource-link .resource-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.mobile-resource-link .resource-description {
    font-size: 12px;
    color: #888;
    transition: color 0.3s ease;
}

.mobile-resource-link:hover .resource-description {
    color: #666;
}

.mobile-resource-link .resource-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #4CAF50;
}

.mobile-resource-link:hover .resource-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Active state for the mobile resources link */
.mobile-nav-link.active {
    background: #4caf4f30;
    color: #4CAF50;
}

/* Overlay to darken background when sidebar is open */
.resources-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.resources-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.resources-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* hidden off-screen by default */
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.804); /* dark translucent */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(30px); /* Safari support */
    box-shadow: -2px 0 10px rgba(186, 39, 39, 0.3);
    transition: right 0.3s ease-in-out;
    z-index: 2000;
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,0.1); /* subtle edge */
}

/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
    --color-gray-200: oklch(92.8% 0.006 264.531);
    --color-gray-300: oklch(87.2% 0.01 258.338);
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-7xl: 4.5rem;
    --text-7xl--line-height: 1;
    --text-8xl: 6rem;
    --text-8xl--line-height: 1;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --tracking-wider: 0.05em;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji');
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden='until-found'])) {
    display: none!important;
  }
}
@layer utilities {
  .absolute {
    position: absolute;
  }
  .relative {
    position: relative;
  }
  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }
  .z-0 {
    z-index: 0;
  }
  .z-10 {
    z-index: 10;
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }
  .flex {
    display: flex;
  }
  .hidden {
    display: none;
  }
  .h-full {
    height: 100%;
  }
  .h-screen {
    height: 100vh;
  }
  .w-full {
    width: 100%;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .items-center {
    align-items: center;
  }
  .justify-center {
    justify-content: center;
  }
  .space-x-2 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .space-x-3 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  .rounded-md {
    border-radius: var(--radius-md);
  }
  .bg-black {
    background-color: var(--color-black);
  }
  .object-cover {
    object-fit: cover;
  }
  .object-center {
    object-position: center;
  }
  .p-8 {
    padding: calc(var(--spacing) * 8);
  }
  .px-10 {
    padding-inline: calc(var(--spacing) * 10);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .text-center {
    text-align: center;
  }
  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  .text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
  }
  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }
  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }
  .font-black {
    --tw-font-weight: var(--font-weight-black);
    font-weight: var(--font-weight-black);
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .tracking-wider {
    --tw-tracking: var(--tracking-wider);
    letter-spacing: var(--tracking-wider);
  }
  .text-gray-200 {
    color: var(--color-gray-200);
  }
  .text-gray-300 {
    color: var(--color-gray-300);
  }
  .text-white {
    color: var(--color-white);
  }
  .uppercase {
    text-transform: uppercase;
  }
  .opacity-50 {
    opacity: 50%;
  }
  .transition-transform {
    transition-property: transform, translate, scale, rotate;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .duration-300 {
    --tw-duration: 300ms;
    transition-duration: 300ms;
  }
  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }
  .hover\:scale-105 {
    &:hover {
      @media (hover: hover) {
        --tw-scale-x: 105%;
        --tw-scale-y: 105%;
        --tw-scale-z: 105%;
        scale: var(--tw-scale-x) var(--tw-scale-y);
      }
    }
  }
  .md\:text-7xl {
    @media (width >= 48rem) {
      font-size: var(--text-7xl);
      line-height: var(--tw-leading, var(--text-7xl--line-height));
    }
  }
  .lg\:text-8xl {
    @media (width >= 64rem) {
      font-size: var(--text-8xl);
      line-height: var(--tw-leading, var(--text-8xl--line-height));
    }
  }
}
@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-tracking {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-ease {
  syntax: "*";
  inherits: false;
}
@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-space-x-reverse: 0;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
    }
  }
}













