* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    position: relative;
    background: transparent;
    backdrop-filter: blur(34px);
    z-index: 9;
}

.site-header .logo {
    transition: all 300ms ease;
}

.site-header .logo:hover {
    transform: scale(1.2);
}

.site-header .logo-link svg {
    width: 160px;
    height: auto;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(20px, 6vw, 40px);
    position: relative;
}

.main-content {
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 20px 0 40px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 300;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    width: 20px;
    height: 20px;
}

.background-text {
    position: absolute;
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-dot:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-dot:nth-child(2) {
    top: 60%;
    left: 90%;
    animation-delay: 2s;
}

.floating-dot:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.site-main {
    margin-bottom: 42px;
}

.site-footer p,
.site-footer span,
.site-footer a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}

.site-footer .row {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    margin-top: auto;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .header {
        font-size: 1rem;
    }

    .tagline {
        font-size: 0.8rem;
        max-width: 150px;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
