
/* notailwindcss.js/styles.css */
:root {
    --color-blue-600: #3b82f6;
    --color-blue-100: #dbeafe;
    --color-indigo-500: #6366f1;
    --color-green-300: #6fcf97;
    --color-purple-400: #a855f7;
    --color-teal-300: #4ade80;
    --color-orange-300: #fdba74;
    --color-gray-900: #111827;
    --color-gray-800: #1f2937;
    --color-gray-700: #4b5563;
    --color-gray-500: #6b7280;
    --color-gray-300: #d1d5db;
    --color-gray-200: #e5e7eb;
}

body {
    padding: 2rem;
    font-family: system-ui, sans-serif;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 50%, black 100%);
    color: white;
    min-height: 100vh;
}

header {
    background: linear-gradient(to right, var(--color-blue-600), var(--color-indigo-500));
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
}

main {
    margin-top: 2rem;
}

section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}

section:hover {
    box-shadow: 0 0 1.5rem rgba(0, 0, 255, 0.3);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

h2 {
    font-size: 1.5rem;
    color: #a0cfff;
    margin-bottom: 0.5rem;
}

p {
    color: #cccccc;
    line-height: 1.6;
}

pre {
    background: #1a1a1a;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    color: #cccccc;
}

code {
    font-family: monospace;
    background: #1a1a1a;
    padding: 0.2rem 0.4rem;
    border-radius: 0.3rem;
}

a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    color: #a855f7;
}

button {
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, var(--color-blue-600), var(--color-indigo-500));
    color: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

button:hover {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.4);
    transform: translateY(-0.1rem);
}

footer {
    text-align: center;
    margin-top: 4rem;
    color: #888888;
}

footer a {
    color: #6366f1;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-white-5 {
    background: rgba(255, 255, 255, 0.05) !important;
}

.shadow-lg {
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3) !important;
}

.rounded-xl {
    border-radius: 1rem !important;
}

.backdrop-blur-lg {
    backdrop-filter: blur(10px);
}

.transition-colors {
    transition: color 0.3s ease !important;
}

.transition-shadow {
    transition: box-shadow 0.3s ease !important;
}

/* Additional custom styles */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}

.card:hover {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

.list-style {
    list-style-type: none;
    padding-left: 1.5rem;
}

.list-style li::before {
    content: "•";
    color: #6366f1;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Gradient buttons */
.btn-primary {
    background: linear-gradient(to right, var(--color-blue-600), var(--color-indigo-500));
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 1rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Additional specific selectors for components used in documentation */
.support-section {
    margin-bottom: 2rem;
}

.support-section h2 {
    font-size: 1.75rem;
    color: #a0cfff;
    margin-bottom: 1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .resources-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Styling for support resources */
.support-resources {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Styling for the FAQ section */
.faq-question {
    font-size: 1.25rem;
    color: #a0cfff;
    margin-bottom: 0.5rem;
}

/* Styling for contact information */
.contact-icon {
    height: 1.5rem;
    width: 1.5rem;
    margin-right: 0.5rem;
}

/* Custom CSS for URL encoding explanation */
.encoding-demo {
    font-family: monospace;
    padding: 0.5rem;
    background: #1a1a1a;
    color: #cccccc;
    border-radius: 0.5rem;
}
