:root {
    --bg-black: #000000;
    --bg-dark: #111111;
    --text-white: #ffffff;
    --text-gray: #888888;
    --accent: #ffffff;
    --border-color: #333333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --accent-red: #ff0000;
}

* {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    min-height: 100vh;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.split-container {
    display: flex;
    width: 100%;
    max-width: 100vw;

    overflow-x: hidden;

    position: relative;

}

.split-content {
    width: 50%;

    background-color: var(--bg-black);
    display: flex;
    flex-direction: column;
    padding: 180px 12vw 0 12vw;

    position: relative;
    z-index: 1;

}

.content-wrapper {
    max-width: 800px;

    margin: 0;
    width: 100%;
    padding-bottom: 20px;

}

.hero-text {
    margin-bottom: 60px;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    color: var(--text-white);
}

.network-highlight {
    color: var(--accent-red);
    font-style: italic;
}

.terms-section {
    margin-bottom: 40px;
    border-left: 1px solid #222;
    padding-left: 20px;
}

.terms-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-section p,
.terms-section li {
    font-family: 'Inter', sans-serif;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 300;
}

.terms-section ul {
    list-style: none;
    padding-left: 0;
}

.terms-section ul li {
    position: relative;
    padding-left: 15px;
}

.terms-section ul li::before {
    content: "•";
    color: var(--accent-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.split-visual {
    width: 50%;

    background-image: url('../assets/uploads/images/1770682032546-670763910.webp');

    background-size: cover;
    background-position: center;

    position: relative;


    filter: grayscale(100%);
}

