/* ===== RESET & VARIABLES ===== */
:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --muted-color: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.2);
    --header-height: 80px;
    --transition-slow: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    --transition-fast: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    --danger-color: 255, 80, 80;
    --success-color: 80, 255, 120;
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  button, input, textarea {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
  }
  
  /* ===== CUSTOM CURSOR ===== */
  .cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
  }
  
  .cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  
  .cursor-grow {
    transform: scale(1.5);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: transparent;
  }
  
  /* ===== LOADER ===== */
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .loader.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader-text {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
  }
  
  .loader-progress {
    width: 200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--accent-color);
    animation: loading 2s ease forwards;
  }
  
  @keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
  }
  
  /* ===== LAYOUT ===== */
  .container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section {
    min-height: 100vh;
    padding: 120px 0 80px;
    display: none;
    position: relative;
  }
  
  .section.active {
    display: block;
  }
  
  /* ===== HEADER ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--transition-fast);
  }
  
  .header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    transition: transform var(--transition-fast);
  }
  
  .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
  }
  
  .logo:hover {
    transform: translateY(-2px);
  }
  
  .logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .nav-list {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
    opacity: 0.7;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
  }
  
  .nav-link:hover, .nav-link.active {
    opacity: 1;
  }
  
  .nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
  }
  
  .menu-toggle span {
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    transition: all var(--transition-fast);
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
  
  /* ===== HOME SECTION ===== */
  .section-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    position: relative;
    overflow: hidden;
  }
  
  .home-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .title {
    position: relative;
    font-family: 'Space Mono', monospace;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }
  
  /* Glitch Effect */
  .glitch {
    position: relative;
  }
  
  .glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
  }
  
  .glitch::after {
    left: -2px;
    text-shadow: 1px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
  }
  
  @keyframes glitch-anim-1 {
    0% { clip: rect(22px, 9999px, 28px, 0); }
    5% { clip: rect(51px, 9999px, 95px, 0); }
    10% { clip: rect(81px, 9999px, 92px, 0); }
    15% { clip: rect(45px, 9999px, 46px, 0); }
    20% { clip: rect(35px, 9999px, 98px, 0); }
    25% { clip: rect(2px, 9999px, 72px, 0); }
    30% { clip: rect(37px, 9999px, 67px, 0); }
    35% { clip: rect(72px, 9999px, 69px, 0); }
    40% { clip: rect(28px, 9999px, 9px, 0); }
    45% { clip: rect(67px, 9999px, 98px, 0); }
    50% { clip: rect(39px, 9999px, 27px, 0); }
    55% { clip: rect(33px, 9999px, 53px, 0); }
    60% { clip: rect(15px, 9999px, 4px, 0); }
    65% { clip: rect(76px, 9999px, 92px, 0); }
    70% { clip: rect(81px, 9999px, 82px, 0); }
    75% { clip: rect(2px, 9999px, 60px, 0); }
    80% { clip: rect(8px, 9999px, 74px, 0); }
    85% { clip: rect(89px, 9999px, 35px, 0); }
    90% { clip: rect(98px, 9999px, 35px, 0); }
    95% { clip: rect(63px, 9999px, 14px, 0); }
    100% { clip: rect(53px, 9999px, 45px, 0); }
  }
  
  @keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 72px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    55% { clip: rect(2px, 9999px, 48px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    65% { clip: rect(59px, 9999px, 50px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    75% { clip: rect(2px, 9999px, 82px, 0); }
    80% { clip: rect(47px, 9999px, 73px, 0); }
    85% { clip: rect(3px, 9999px, 27px, 0); }
    90% { clip: rect(26px, 9999px, 55px, 0); }
    95% { clip: rect(42px, 9999px, 97px, 0); }
    100% { clip: rect(38px, 9999px, 49px, 0); }
  }
  
  .subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
  }
  
  .blink {
    animation: blink 1s infinite step-end;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  .price {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.6;
  }
  
  .price span {
    opacity: 1;
    font-weight: 700;
  }
  
  .cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .btn {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: transparent;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-fast);
    cursor: pointer;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width var(--transition-fast);
    z-index: -1;
  }
  
  .btn:hover::before {
    width: 100%;
  }
  
  .btn-primary {
    background-color: var(--text-color);
    color: var(--bg-color);
  }
  
  .btn-primary:hover {
    background-color: transparent;
    color: var(--text-color);
  }
  
  .btn-outline:hover {
    border-color: var(--text-color);
  }
  
  .btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
  }
  
  .btn-block {
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .special {
    position: relative;
  }
  
  .special::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
  }
  
  .scroll-indicator:hover {
    opacity: 1;
  }
  
  .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    position: relative;
  }
  
  .wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 2px;
    animation: wheel 1.5s infinite;
  }
  
  @keyframes wheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
  }
  
  .arrows {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  
  .arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    transform: rotate(45deg);
    animation: arrows 1.5s infinite;
  }
  
  .arrows span:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .arrows span:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  @keyframes arrows {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
  }
  
  .bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  
  .element {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 8s infinite ease-in-out;
  }
  
  .element-2 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 15%;
    animation: float 12s infinite ease-in-out reverse;
  }
  
  .element-3 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 10%;
    animation: float 15s infinite ease-in-out;
  }
  
  @keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
  }
  
  /* ===== SECTION HEADERS ===== */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }
  
  .section-header.with-back {
    position: relative;
  }
  
  .back-button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
  }
  
  .back-button:hover {
    opacity: 1;
  }
  
  .back-button svg {
    width: 30px;
    height: 30px;
  }
  
  .section-tag {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-color);
    margin-bottom: 0.5rem;
  }
  
  .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .section-line {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 0 auto;
  }
  
  /* ===== ABOUT SECTION ===== */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-content p {
    margin-bottom: 1.5rem;
  }
  
  blockquote {
    font-family: 'Space Mono', monospace;
    font-style: italic;
    font-size: 1.2rem;
    border-left: 1px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0 1rem;
  }
  
  .about-image {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .about-design {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-design .cross-one,
  .about-design .cross-two {
    position: absolute;
    width: 1rem;
    height: 10rem;
    background-color: white;
    border-radius: 0.5rem;
  }
  
  .about-design .cross-one {
    transform: rotate(45deg);
  }
  
  .about-design .cross-two {
    transform: rotate(-45deg);
  }
  
  .about-design .circle {
    width: 6rem;
    height: 6rem;
    border: 4px solid white;
    border-radius: 50%;
    position: absolute;
  }
  
  /* ===== GALLERY SECTION ===== */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .artwork-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
    cursor: pointer;
    transition: transform var(--transition-fast);
  }
  
  .artwork-card:hover {
    transform: translateY(-10px);
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .artwork-image {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .artwork-design {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  /* Different artwork design styles */
  .aurora-design::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, transparent, white, transparent);
    animation: aurora 3s infinite;
  }
  
  .aurora-design::before {
    content: '';
    position: absolute;
    height: 60%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, white, transparent);
    animation: aurora 3s infinite 1.5s;
  }
  
  @keyframes aurora {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
  }
  
  .movimento-design {
    position: relative;
  }
  
  .movimento-design::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 60%;
    background-color: white;
    transform: rotate(15deg);
    animation: wave 4s ease-in-out infinite;
  }
  
  @keyframes wave {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
  }
  
  .contemplacao-design {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contemplacao-design::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    border: 2px solid white;
    border-radius: 50%;
    opacity: 0.6;
  }
  
  .contemplacao-design::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 60%;
    background-color: white;
    transform: translateY(20px);
  }
  
  .sinfonia-design {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .sinfonia-design::before,
  .sinfonia-design::after {
    content: '';
    width: 2px;
    height: 40px;
    background-color: white;
    margin: 5px;
    animation: sinfonia 2s ease infinite;
  }
  
  .sinfonia-design::after {
    animation-delay: 0.5s;
  }
  
  @keyframes sinfonia {
    0%, 100% { height: 40px; }
    50% { height: 80px; }
  }
  
  .serie-design {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .serie-design::before,
  .serie-design::after {
    content: '';
    width: 3px;
    height: 60%;
    background-color: white;
  }
  
  .serie-design::before {
    transform: translateX(-20px);
  }
  
  .serie-design::after {
    transform: translateX(20px);
  }
  
  .dourado-design {
    position: relative;
  }
  
  .dourado-design::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 70%;
    background: linear-gradient(to bottom, #fff, #ffd700, #fff);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  
  .abstrato-design {
    position: relative;
  }
  
  .abstrato-design::before,
  .abstrato-design::after {
    content: '';
    position: absolute;
    background-color: white;
  }
  
  .abstrato-design::before {
    width: 70%;
    height: 3px;
    top: 40%;
    transform: rotate(45deg);
  }
  
  .abstrato-design::after {
    width: 3px;
    height: 70%;
    left: 40%;
    transform: rotate(45deg);
  }
  
  .artwork-info {
    text-align: center;
  }
  
  .artwork-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .artwork-price {
    font-family: 'Space Mono', monospace;
    color: var(--muted-color);
    font-size: 1.1rem;
  }
  
  /* ===== PURCHASE SECTION ===== */
  .purchase-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .purchase-option {
    text-align: center;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
  }
  
  .purchase-option:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .purchase-icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
  }
  
  .purchase-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .purchase-option h3 {
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .purchase-option p {
    margin-bottom: 2rem;
    color: var(--muted-color);
  }
  
  /* ===== ARTISTS SECTION ===== */
  .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .artist-card {
    text-align: center;
    transform: translateY(0);
    transition: transform var(--transition-fast);
  }
  
  .artist-card:hover {
    transform: translateY(-10px);
  }
  
  .artist-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
  }
  
  .artist-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .artist-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .artist-info p {
    color: var(--muted-color);
  }
  
  /* ===== AUCTION SECTION ===== */
  .section-auction {
    padding-top: 80px;
  }
  
  .auction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .auction-image {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .auction-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .supreme-stick-design {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .supreme-stick {
    width: 10px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8), transparent);
    position: absolute;
    animation: glow 3s ease-in-out infinite;
  }
  
  .supreme-text {
    font-family: 'Space Mono', monospace;
    position: absolute;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
  }
  
  @keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255,255,255,0.5); }
    50% { box-shadow: 0 0 20px rgba(255,255,255,0.8); }
  }
  
  .auction-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .auction-description {
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  
  .auction-form h4 {
    margin-bottom: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
  }
  
  /* ===== FORMS ===== */
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--muted-color);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    transition: border-color var(--transition-fast);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .form-disclaimer {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* ===== MODAL ===== */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
  }
  
  .modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
  }
  
  .modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: transform var(--transition-fast);
  }
  
  .modal.active .modal-container {
    transform: translateY(0);
  }
  
  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
    z-index: 1;
  }
  
  .modal-close:hover {
    opacity: 1;
  }
  
  .modal-close svg {
    width: 24px;
    height: 24px;
  }
  
  .success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .success-icon svg {
    width: 60px;
    height: 60px;
    stroke: rgb(var(--success-color));
  }
  
  .success-modal h2 {
    margin-bottom: 1rem;
  }
  
  .success-modal p {
    margin-bottom: 2rem;
    opacity: 0.8;
  }
  
  .artwork-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .artwork-detail-image {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .artwork-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .artwork-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .artwork-description {
    margin: 1.5rem 0;
  }
  
  .artwork-description p:not(:last-child) {
    margin-bottom: 1rem;
  }
  
  /* ===== EASTER EGG ===== */
  .easter-egg {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .easter-egg:hover {
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  .easter-egg-content {
    position: fixed;
    bottom: 50px;
    left: 20px;
    width: 300px;
    background-color: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .easter-egg-content.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  
  .easter-egg-admin {
    margin-top: 15px;
    text-align: center;
  }
  
  .small-text {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 10px;
  }
  
  /* ===== ADMIN PANEL ===== */
  .section-admin {
    background-color: var(--bg-color);
    min-height: 100vh;
    padding-top: 100px;
  }
  
  .admin-container {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
  }
  
  .admin-tabs {
    display: flex;
    overflow-x: auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .admin-tab {
    padding: 15px 20px;
    font-size: 0.9rem;
    color: var(--muted-color);
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .admin-tab:hover {
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .admin-tab.active {
    color: var(--text-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .admin-panel {
    display: none;
    padding: 30px;
  }
  
  .admin-panel.active {
    display: block;
  }
  
  .panel-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .panel-description {
    color: var(--muted-color);
    margin-bottom: 30px;
  }
  
  .admin-input {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-color);
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
  }
  
  .admin-input:focus {
    border-color: var(--accent-color);
  }
  
  .config-preview-container {
    margin-bottom: 20px;
  }
  
  .logo-preview-wrapper, .artwork-preview-wrapper {
    max-width: 400px;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
  }
  
  .logo-preview {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .logo-preview img {
    max-height: 80%;
    max-width: 80%;
  }
  
  .logo-preview-placeholder {
    color: var(--muted-color);
    font-style: italic;
  }
  
  .artwork-preview {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .artwork-preview img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
  
  .toggle-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 24px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: rgba(255, 255, 255, 0.6);
  }
  
  input:checked + .slider:before {
    transform: translateX(24px);
  }
  
  .upload-group {
    margin-bottom: 20px;
  }
  
  .upload-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  
  .upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  
  .file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
  }
  
  .file-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .file-label:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .file-icon {
    font-size: 1.2rem;
  }
  
  .file-name {
    font-size: 0.85rem;
    color: var(--muted-color);
    flex: 1;
  }
  
  .admin-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
  }
  
  .btn-danger {
    color: rgb(var(--danger-color));
    border-color: rgba(var(--danger-color), 0.3);
  }
  
  .btn-danger:hover {
    background-color: rgba(var(--danger-color), 0.1);
    border-color: rgba(var(--danger-color), 0.5);
  }
  
  .btn-save {
    border-color: rgba(var(--success-color), 0.3);
  }
  
  .btn-save:hover {
    background-color: rgba(var(--success-color), 0.1);
    border-color: rgba(var(--success-color), 0.5);
  }
  
  .export-container {
    margin-top: 20px;
  }
  
  .export-code {
    width: 100%;
    height: 300px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    resize: none;
    margin-bottom: 15px;
  }
  
  .artworks-admin-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  
  .artworks-list {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
  }
  
  .artworks-list-header {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .artworks-list-header h4 {
    margin: 0;
    font-size: 1rem;
  }
  
  .artworks-list-items {
    max-height: 500px;
    overflow-y: auto;
  }
  
  .artwork-list-item {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .artwork-list-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .artwork-list-item.selected {
    background-color: rgba(255, 255, 255, 0.08);
  }
  
  .artwork-item-thumbnail {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .artwork-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .artwork-mini-design {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .artwork-item-info {
    flex-grow: 1;
  }
  
  .artwork-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 4px;
  }
  
  .artwork-item-price {
    font-size: 0.8rem;
    color: var(--muted-color);
  }
  
  .artwork-edit-panel {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 20px;
  }
  
  .artwork-edit-form h4 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 992px) {
    .title {
      font-size: 4rem;
    }
    
    .about-grid,
    .auction-grid,
    .artwork-detail-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .about-content {
      order: 2;
    }
    
    .about-image {
      order: 1;
    }
    
    .artworks-admin-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      width: 250px;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: right var(--transition-fast);
      z-index: 99;
    }
    
    .nav.active .nav-list {
      right: 0;
    }
    
    .menu-toggle {
      display: flex;
      z-index: 100;
    }
    
    .title {
      font-size: 3rem;
    }
    
    .purchase-options {
      grid-template-columns: 1fr;
    }
    
    .cursor, .cursor-follower {
      display: none;
    }
    
    body {
      cursor: auto;
    }
    
    .admin-tabs {
      flex-wrap: wrap;
    }
    
    .admin-panel {
      padding: 20px 15px;
    }
  }
  
  @media (max-width: 480px) {
    .title {
      font-size: 2.5rem;
    }
    
    .subtitle {
      font-size: 1.2rem;
    }
    
    .cta-container {
      flex-direction: column;
      gap: 1rem;
    }
    
    .btn {
      width: 100%;
      text-align: center;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }