/*
Theme Name: My Antigravity Theme
Theme URI: 
Author: Sartaniia Advanced Systems
Author URI: 
Description: Custom landing page theme for Sartaniia Advanced Systems.
Version: 1.0.0
Text Domain: my-antigravity-theme
*/

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #050505;
    color: #e0e0e0;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.site-header {
    background-color: rgba(5, 5, 5, 0.85);
    border-bottom: 1px solid #00f3ff;
    padding: 20px 0;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-logo svg {
    height: 43px;
    width: auto;
    display: block;
    overflow: visible;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.4));
}

.site-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00f3ff;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.content-area {
    padding: 60px 40px;
    background: rgba(15, 15, 20, 0.7);
    margin-top: 60px;
    margin-bottom: 60px;
    border-radius: 4px;
    border: 1px solid rgba(255, 0, 234, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 0, 234, 0.1),
        inset 0 0 15px rgba(0, 243, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ff00ea;
    box-shadow: 0 0 10px #ff00ea;
}

.content-area h2 {
    margin-top: 0;
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 0, 234, 0.8);
    margin-bottom: 30px;
}

.content-area p {
    line-height: 1.8;
    font-size: 18px;
    color: #a0aab5;
    font-family: 'Courier New', Courier, monospace;
}
