@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
    font-family: "Bai Jamjuree", sans-serif;
}
[x-cloak] {
    display: none !important;
}
.compact-prose {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #4b5563;
}

.compact-prose h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.compact-prose h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.compact-prose p {
    margin-bottom: 0.5rem;
}

.compact-prose a {
    color: #4f46e5;
    text-decoration: none;
    background-image: linear-gradient(to right, #a78bfa, #a78bfa);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px;
    transition: all 0.2s ease;
}

.compact-prose a:hover {
    color: #7c3aed;
    background-size: 100% 2px;
}

.compact-prose ul,
.compact-prose ol {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.compact-prose ul {
    list-style-type: none;
}

.compact-prose ul li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
}

.compact-prose ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.5em;
    height: 0.5em;
    background: #7c3aed;
    border-radius: 50%;
    transform: translateY(-50%);
}

.compact-prose ol {
    list-style-type: decimal;
}

.compact-prose li {
    margin-bottom: 0.5rem;
}

.compact-prose blockquote {
    border-left: 3px solid #8b5cf6;
    background-color: #f5f3ff;
    padding: 0.5rem;
    margin: 0.5rem 0;
    font-style: italic;
    color: #5b21b6;
    border-radius: 0 6px 6px 0;
}

.compact-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin: 1rem 0;
    box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9d5ff;
}

.compact-prose code {
    background-color: #ede9fe;
    color: #5b21b6;
    padding: 0.15rem 0.3rem;
    border-radius: 0.2rem;
    font-family: monospace;
    font-size: 0.8em;
}

.compact-prose pre {
    background-color: #1e1b4b;
    color: #e9d5ff;
    padding: 0.75rem;
    border-radius: 0.375rem;
    overflow-x: auto;
    margin: 1rem 0;
    font-size: 0.8em;
}

.compact-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.5rem 0;
    font-size: 0.8em;
}

.compact-prose th,
.compact-prose td {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.compact-prose th {
    background: linear-gradient(to bottom, #f3f4f6, #e5e7eb);
    font-weight: 600;
    color: #111827;
}

.compact-prose tr:nth-child(even) {
    background-color: #f9fafb;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-100px) translateX(10px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes move-left-right {
    0% {
        left: 0;
        transform: translateX(0);
    }

    50% {
        left: 100%;
        transform: translateX(-100%);
    }

    100% {
        left: 0;
        transform: translateX(0);
    }
}

.animate-ping-slow {
    animation: ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%,
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.animate-move-left-right {
    animation: move-left-right 3s ease-in-out infinite;
}
.logo-container {
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.compact-card {
    transition: all 0.2s ease;
}

.compact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.container {
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
}
.animate-gradient {
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Grid styling for the mock UI */
.grid-container {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 2px;
    margin: 0 auto;
    max-width: 100%;
}

.cell {
    width: 100%;
    padding-bottom: 100%; /* Creates square cells */
    background-color: #334155;
    border-radius: 4px;
}

/* Make some cells "active" for visual effect */
.cell[data-x="2"][data-y="3"],
.cell[data-x="3"][data-y="4"],
.cell[data-x="4"][data-y="5"],
.cell[data-x="5"][data-y="6"],
.cell[data-x="6"][data-y="5"],
.cell[data-x="7"][data-y="4"],
.cell[data-x="8"][data-y="3"] {
    background-color: #3b82f6;
}
