* {
    box-sizing: border-box;
}

:root {
    --primary-color: #ff5c8a;
    --secondary-color: #ff99aa;
    --accent-color: #ffccd5;
    --dark-color: #7a2e4d;
    --light-color: #fff0f5;
    --text-color: #000000;
    --button-text: #3d1f2b;
    --button-bg: #ff99aa;
    --button-label-color: #ffffff;
    --title-color: #000000;
}

h1, h2, h3, h4 {
    color: var(--title-color);
}

body {
    font-family: 'Courier New', monospace;
    background-color: var(--primary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--primary-color);
}

.pixel-header {
    background-color: var(--secondary-color);
    padding: 15px;
    margin-bottom: 20px;
    border: 4px solid var(--dark-color);
    box-shadow: 8px 8px 0 var(--dark-color);
}

.pixel-header h1 {
    margin: 0;
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 0 var(--dark-color);
}

.settings-btn {
    padding: 8px;
    min-width: auto;
}

.theme-options {
    max-height: 60vh;
    overflow-y: auto;
    padding: 10px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.theme-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    transition: transform 0.2s;
    color: var(--button-label-color, var(--text-color));
}

.theme-option:hover {
    transform: scale(1.05);
}

.theme-option.active {
    background-color: var(--accent-color);
    color: white;
}

.theme-preview {
    width: 40px;
    height: 20px;
    margin-bottom: 5px;
}

.default-theme    { background: #ff5c8a; }
.dark-theme       { background: #1e1e1e; }
.ocean-theme      { background: #0077be; }
.forest-theme     { background: #2e8b57; }
.sunset-theme     { background: #ff7e5f; }
.matrix-theme     { background: #003b00; }
.pastel-theme     { background: #ffd1dc; }
.neon-theme       { background: #39ff14; }
.vintage-theme    { background: #c9b29b; }
.midnight-theme   { background: #1a1a40; }
.coffee-theme     { background: #6f4e37; }
.blue-theme       { background: #a8d8ea; }
.ice-theme        { background: #b3e5fc; }
.space-theme      { background: #0b0033; }
.cyberpunk-theme  { background: #ff0090; }
.lavender-theme   { background: #e6e6fa; }
.monochrome-theme { background: #888888; }
.sakura-theme     { background: #ffb7c5; }
.fire-theme       { background: #ff4500; }
.arctic-theme     { background: #d0f0ff; }
.bronze-theme     { background: #cd7f32; }
.emerald-theme    { background: #50c878; }
.candy-theme      { background: #ff69b4; }
.desert-theme     { background: #edc9af; }
.rosegold-theme    { background: #e0bfb8; }
.amethyst-theme    { background: #9966cc; }
.honeydew-theme    { background: #f0fff0; }
.twilight-theme    { background: #58427c; }
.pear-theme        { background: #d1e231; }
.denim-theme       { background: #1560bd; }
.buttercup-theme   { background: #f5d300; }
.slate-theme       { background: #708090; }
.tangerine-theme   { background: #f28500; }
.mystic-theme      { background: #8a2be2; }
.mint-theme        { background: #a2e0d0; }
.peach-theme       { background: #ffb7a0; }
.lilac-theme       { background: #d0a2e0; }
.honey-theme       { background: #ffd700; }
.sage-theme        { background: #b8c8a0; }
.sky-theme         { background: #87ceeb; }
.blush-theme       { background: #ffb6c1; }
.mocha-theme       { background: #d2b48c; }
.seafoam-theme     { background: #9fe2bf; }
.orchid-theme      { background: #da70d6; }
.endpoint-display {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f5f5f5;
}

.endpoint-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.endpoint-container code {
    flex-grow: 1;
    padding: 8px;
    background-color: #e9e9e9;
    overflow-x: auto;
}

.response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.theme-preview-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
}

.default-theme {
    background: linear-gradient(135deg, #FFCEE5 0%, #FF88C0 50%, #ff5c8a 100%);
}

.dark-theme {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
}

.forest-theme {
    background: linear-gradient(135deg, #2e8b57 0%, #3cb371 50%, #2e8b57 100%);
}

.add-theme-form {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 2px solid var(--dark-color);
}

.pixel-nav {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    gap: 10px;
    margin-bottom: 20px;
}

.pixel-nav div {
    width: 40px;
    height: 40px;
    background-color: yellow;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-color);
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    font-family: 'Press Start 2P', monospace;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

body {
    padding-bottom: 40px;
}

.yoedzx {
  font-weight: bold;
  text-decoration: none;
  animation: rainbowText 5s infinite;
}

@keyframes rainbowText {
  0%   { color: #ffb3ba; }
  20%  { color: #ffdfba; }
  40%  { color: #ffffba; }
  60%  { color: #baffc9; }
  80%  { color: #bae1ff; }
  100% { color: #ffb3ba; }
}

.confirm-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pixel-button {
    border: 4px solid var(--dark-color);
    padding: 8px 12px;
    box-shadow: 4px 4px 0 var(--dark-color);
    font-family: 'Courier New', monospace;
    background-color: var(--button-bg, var(--accent-color));
    color: var(--button-label-color, var(--button-text));
    border: 2px solid var(--accent-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.modal-content h3 {
    color: var(--title-color, var(--text-color));
}

.theme-option {
  color: var(--button-label-color, var(--text-color));
}

h1, h2, h3 {
  color: var(--title-color, var(--text-color));
}

.pixel-button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--dark-color);
}

.pixel-button:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.pixel-button.active {
    background-color: var(--accent-color);
    color: white;
}

.add-btn {
    background-color: #a5d6a7;
    margin-left: auto;
}

.cancel-btn {
    background-color: #ef9a9a;
}

.pixel-input,
textarea.pixel-input {
    background-color: white;
    border: var(--pixel-size) solid var(--dark-color);
    padding: 10px;
    font-family: 'Courier New', monospace;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 4px 4px 0 var(--dark-color);
}

.pixel-input::placeholder {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pixel-input, textarea.pixel-input {
    background-color: white;
    border: var(--pixel-size) solid var(--dark-color);
    padding: 10px;
    font-family: 'Courier New', monospace;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 4px 4px 0 var(--dark-color);
}

.content-section {
    display: none;
    background-color: white;
    padding: 20px;
    border: var(--pixel-size) solid var(--dark-color);
    box-shadow: 8px 8px 0 var(--dark-color);
}

.content-section.active {
    display: block;
}

.items-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.code-container {
    height: 200px;
    overflow: auto;
    white-space: pre;
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
}

.item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.item-title span:first-child {
    font-weight: bold;
}

.item-category {
    background-color: #222;
    color: #fff;
    padding: 2px 6px;
    font-size: 0.8em;
    margin-left: 8px;
    border-radius: 4px; /* Tambahkan ini */
}

.clock-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

@keyframes dynamicIsland {
    0% {
        width: 50px;
        height: 30px;
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
        filter: blur(1px);
    }
    50% {
        width: auto;
        height: 30px;
        opacity: 0.9;
        transform: scale(1.02) translateY(0);
        filter: blur(0.5px);
    }
    100% {
        width: auto;
        height: 30px;
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes pixelGlow {
    0%, 100% {
        text-shadow: 0 0 2px var(--accent-color);
    }
    50% {
        text-shadow: 0 0 4px var(--accent-color);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        filter: blur(1px);
    }
    80% {
        opacity: 1;
        filter: blur(0.5px);
    }
    100% {
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    20% {
        opacity: 0.8;
        transform: translateY(-5px) scale(0.98);
    }
    100% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
        filter: blur(2px);
    }
}

.retro-box {
    display: inline-block;
    border: 2px solid var(--dark-color);
    padding: 8px 16px;
    background-color: var(--light-color);
    font-family: 'VT323', monospace;
    line-height: 1.2;
    animation: slideIn 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 -2px 0 var(--dark-color),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    color: var(--text-color);
}

.retro-box.exit {
    animation: slideOut 0.4s cubic-bezier(0.6, -0.3, 0.74, 0.05) forwards;
}

.time-notice {
    font-size: 14px;
    background-color: var(--accent-color);
    color: var(--button-text);
    padding: 4px 8px;
    display: inline-block;
    animation: 
        pixelGlow 1.5s ease-in-out infinite,
        float 2s ease-in-out infinite;
    box-shadow: 
        0 2px 0 var(--dark-color),
        inset 0 -2px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid var(--dark-color);
    transform-origin: center;
}

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

.retro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-color), 
        transparent);
    opacity: 0.6;
}

.clock-display {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 6px;
    letter-spacing: 1px;
    position: relative;
}

.clock-display::after {
    content: '••••••••';
    position: absolute;
    bottom: -8px;
    left: 0;
    font-size: 6px;
    color: var(--dark-color);
    opacity: 0.3;
    letter-spacing: 2px;
}

.retro-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--accent-color), 
        var(--primary-color), 
        var(--accent-color));
    opacity: 0.3;
}

.time-notice {
    font-size: 14px;
    background-color: var(--accent-color);
    color: var(--button-text);
    padding: 4px 8px;
    margin-top: 8px;
    display: inline-block;
    animation: 
        pixelGlow 1.5s ease-in-out infinite,
        pixelBounce 0.4s ease;
    box-shadow: 
        0 2px 0 var(--dark-color),
        inset 0 -2px 0 rgba(255, 255, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid var(--dark-color);
    position: relative;
    overflow: hidden;
}

.time-notice::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}

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

.retro-box:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 8px var(--dark-color),
        inset 0 -2px 0 var(--dark-color),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    background-color: var(--light-color);
}

.time-notice:hover {
    animation: 
        pixelGlow 1s ease-in-out infinite,
        pixelBounce 0.4s ease;
    transform: scale(1.02);
    background-color: var(--secondary-color);
}

.code-container pre,
.code-container code {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.4;
    white-space: pre;
}

.code-container code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.code-item pre {
    background-color: #f0f8ff;
    border: 3px solid var(--dark-color);
    padding: 12px;
    margin: 8px 0;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    box-shadow: inset 3px 3px 0 #d0e0f0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.code-item .item-actions {
    margin-top: 10px;
}

.item-card {
    background-color: var(--light-color);
    border: 4px solid var(--dark-color);
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 5px 5px 0 var(--dark-color);
    position: relative;
}

.item-card p {
    margin: 8px 0;
    word-break: break-word;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .item-card {
        padding: 10px;
    }
}

.social-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    border: 2px solid var(--dark-color);
    box-shadow: 3px 3px 0 var(--dark-color);
    transition: all 0.2s ease;
}

.social-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--dark-color);
}

.social-btn.whatsapp { background-color: #25D366; }
.social-btn.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.social-btn.facebook { background-color: #1877F2; }
.social-btn.youtube { background-color: #FF0000; }
.social-btn.telegram { background-color: #0088CC; }
.social-btn.github { background-color: #333; }
.social-btn.twitter { background-color: #1DA1F2; }

.social-btn {
    position: relative;
}

.social-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: white;
    padding: 3px 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.social-btn:hover::after {
    opacity: 1;
}

.item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.item-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.item-card p strong {
    display: inline-block;
    min-width: 70px;
}

.item-actions .pixel-button {
    padding: 5px 10px;
    font-size: 14px;
}

.add-form {
    background-color: white;
    padding: 20px;
    border: var(--pixel-size) solid var(--dark-color);
    box-shadow: 8px 8px 0 var(--dark-color);
    margin-top: 20px;
}

.login-form {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 10px;
    border: 4px solid var(--dark-color);
    box-shadow: 5px 5px 0 var(--dark-color);
    max-width: 100%;
    flex-wrap: wrap;
}

.login-form .pixel-input {
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    padding: 8px;
}

.login-form .pixel-button {
    padding: 8px 12px;
    white-space: nowrap;
}

.pixel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 12px;
}

.user-info {
    display: flex;
    gap: 10px;
    align-items: center;
    color: white;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    background: var(--light-color);
    border: 3px solid var(--accent-color);
    padding: 2rem;
    width: 90%;
    max-width: 700px;
    margin: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    animation: popUp 0.3s ease-in-out;
}

.pixel-box {
  background: var(--light-color);
  position: relative;
  overflow: hidden;
  animation: pixelPop 0.4s ease-in-out forwards;
}

.pixel-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/pixellate.png');
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: pixelMovement 0.5s linear infinite;
}

@keyframes pixelMovement {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 10px 10px;
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pixelPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pixel-box * {
  position: relative;
  z-index: 2;
  animation: textFadeIn 0.3s ease-out;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

pre {
    background-color: #f5f5f5;
    padding: 10px;
    overflow-x: auto;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .login-form {
        width: 100%;
    }
    
    .login-form .pixel-input {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .item-card {
        padding: 10px;
    }

    .login-form {
        width: 100%;
        flex-wrap: wrap;
    }

    .login-form .pixel-input {
        min-width: 100%;
        max-width: 100%;
    }

    .items-container {
        grid-template-columns: 1fr;
    }

    .item-actions .pixel-button {
        flex-grow: 1;
        text-align: center;
    }

    .pixel-nav {
        flex-direction: column;
    }

    .pixel-nav .pixel-button {
        width: 100%;
        margin-bottom: 8px;
    }
}

#apiOutput img,
#apiOutput video {
    max-height: 300px;
    display: block;
    margin: 0 auto 15px;
}

#apiOutput audio {
    width: 100%;
    margin-bottom: 15px;
}

.modal-content {
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content pre {
    max-height: 300px;
    overflow-y: auto;
}

.pixel-alert {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--light-color);
  border: 4px solid var(--dark-color);
  box-shadow: 8px 8px 0 var(--dark-color);
  padding: 20px;
  z-index: 1000;
  max-width: 80%;
  text-align: center;
  animation: alertPop 0.3s ease-out;
  will-change: transform;
}

.pixel-alert-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.pixel-button.small {
  padding: 8px 16px;
  font-size: 14px;
}

.code-filter {
    padding: 15px;
    margin-bottom: 20px;
    background-color: var(--light-color);
}

.code-filter h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.pixel-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    background-color: var(--button-bg);
    border: 2px solid var(--dark-color);
    box-shadow: 3px 3px 0 var(--dark-color);
}

.pixel-checkbox input {
    margin-right: 5px;
    cursor: pointer;
}

.pixel-checkbox:hover {
    background-color: var(--secondary-color);
    color: white;
}

@keyframes alertPop {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  80% { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.pixel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.pixel-modal-content {
    background-color: var(--light-color);
    margin: 50px auto;
    padding: 20px;
    border: 4px solid var(--dark-color);
    box-shadow: 8px 8px 0 var(--dark-color);
    max-width: 600px;
    position: relative;
}

.pixel-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--dark-color);
}

.pixel-close:hover {
    color: var(--accent-color);
}

.pixel-form {
    margin-top: 15px;
}

.pixel-form-group {
    margin-bottom: 15px;
}

.pixel-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.pixel-form-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.pixel-input {
    width: 100%;
    padding: 8px;
    border: 2px solid var(--dark-color);
    background-color: white;
    font-family: 'Courier New', monospace;
}

.pixel-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px var(--accent-color);
}

a,
button {
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
a:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

.welcome-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}

.pixel-welcome-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--light-color);
  border: 4px solid var(--dark-color);
  box-shadow: 8px 8px 0 var(--dark-color);
  padding: 25px;
  width: 85%;
  max-width: 350px;
  text-align: center;
  z-index: 10000;
}

.pixel-welcome-alert h3 {
  margin: 0 0 15px 0;
  color: var(--accent-color);
  font-size: 1.4rem;
}

.pixel-welcome-alert p {
  margin: 0 0 20px 0;
  font-size: 1rem;
  line-height: 1.4;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  text-decoration: none !important;
  border: none;
  font-weight: bold;
  margin-top: 10px;
}

.pixel-welcome-alert .pixel-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--dark-color);
  background: none;
  border: none;
  padding: 5px;
}

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