* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, rgb(30, 41, 59) 0%, rgb(51, 65, 85) 100%);
    min-height: 100vh;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.number-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* WordPress Content Styles */
.content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    color: white;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

.content h2 {
    font-size: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.content h3 {
    font-size: 1.75rem;
}

.content h4 {
    font-size: 1.5rem;
}

.content h5 {
    font-size: 1.25rem;
}

.content h6 {
    font-size: 1.125rem;
}

.content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.content ul,
.content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.content ul {
    list-style-type: disc;
}

.content ol {
    list-style-type: decimal;
}

.content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.content ul ul,
.content ol ol,
.content ul ol,
.content ol ul {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.content a {
    color: #60a5fa;
    text-decoration: underline;
    transition: color 0.3s;
}

.content a:hover {
    color: #3b82f6;
}

.content strong {
    font-weight: 700;
    color: white;
}

.content em {
    font-style: italic;
}

.content blockquote {
    border-left: 4px solid #60a5fa;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875em;
    color: #60a5fa;
}

.content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content pre code {
    background: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
}

.content table th,
.content table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.content table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: white;
}

.content table tr:last-child td {
    border-bottom: none;
}

.content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.content dl {
    margin: 2rem 0;
}

.content dt {
    font-weight: 700;
    color: white;
    margin-top: 1rem;
}

.content dd {
    margin-left: 2rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }
    
    .content h2 {
        font-size: 1.75rem;
    }
    
    .content h3 {
        font-size: 1.5rem;
    }
    
    .content h4 {
        font-size: 1.25rem;
    }
}

