/* Critical CSS for Above-the-fold Content */
/* This file contains only the essential styles needed for initial page render */

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Hero Section */
.cursor-hero-section {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Primary Button Styles */
.bg-primary {
    background-color: #1D4ED8;
    color: #F9FAFB;
}

.text-primary {
    color: #1D4ED8;
}

/* Utility Classes */
.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.bg-black {
    background-color: #000000;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
}
