* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #b9b9b9;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #1d1d1d;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 90px;
}

.release-header {
    background-color: #1d1d1d;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.release-left .release-title {
    font-size: 2rem;
    font-weight: bold;
    color: #93e6dc;
}

.release-right .close-release {
    font-size: 24px;
    color: #c0b8b8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.release-right .close-release:hover {
    color: #ffffff;
}

.withdraw-note {
    display: inline-block;
    border: 1px dashed #ce2e2e;
    padding: 16px 18px;
    border-radius: 8px;
    font-size: 1rem;
    color: #ccc;
    background-color: #1a1a1a;
}

.form-group {
    display: flex;
    max-width: 600px;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #bbb;
}

input[type="text"],
select {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #1d1d1d;
    color: white;
}

input[disabled] {
    background-color: #2c2c2c;
    color: #777;
    cursor: not-allowed;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-group label {
    font-size: 1rem;
    color: #ccc;
    cursor: pointer;
}

.floating-label {
    position: relative;
    margin-bottom: 24px;
}

.floating-label input,
.floating-label select {
    width: 100%;
    padding: 14px 12px;
    font-size: 1rem;
    background: #1d1d1d;
    border: 1px solid #444;
    border-radius: 6px;
    color: #ffffff;
}

.floating-label input:focus,
.floating-label select:focus {
    outline: none;
    border-color: #00fadd;
}

.floating-placeholder {
    position: absolute;
    top: 14px;
    left: 12px;
    font-size: 1rem;
    color: #777;
    pointer-events: none;
    transition: 0.2s ease all;
}

.floating-label input:focus+.floating-placeholder,
.floating-label input:not(:placeholder-shown)+.floating-placeholder,
.floating-label select:focus+.floating-placeholder,
.floating-label select:not([value=""])+.floating-placeholder,
.floating-label input[type="date"].has-value+.floating-placeholder {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    background-color: #121212;
    padding: 0 4px;
    color: #c0b9b9;
}

.article {
    margin: 0 auto;
    margin-top: 100px;
    color: #222222;
}

.terms-of-use {
    color: #222222;
    margin: 100px 200px;
}

.terms-of-use p {
    font-size: 1.3rem;
    margin-top: 10px;
    line-height: 1.7;
}

.terms-of-use h1 {
    margin-top: 60px;
    text-transform: uppercase;
}

.site-footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: var(--font3);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-socials a img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    margin-right: 12px;
    transition: transform 0.2s;
}

.footer-socials a:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {
    .terms-of-use {
        margin: 40px 20px;
    }

    .article h1 {
        font-size: 2rem !important;
        text-align: center;
    }

    .terms-of-use p {
        font-size: 1rem;
    }

    .release-title {
        font-size: 1.5rem;
    }

    .site-footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }
}