* { margin: 0; padding: 0; font-family: 'Bai Jamjuree', sans-serif; box-sizing: border-box; }
h1, h2, h3, p, li { color: #fff; }
p, li { font-size: 18px; font-weight: 400; line-height: 1.7em; }
p { margin-bottom: 15px; }
h1 { font-size: 32px; line-height: 1.3; font-weight: 700; margin-bottom: 10px; }
h2 { font-size: 28px; font-weight: 600; line-height: 1.3; }
h3 { font-size: 20px; line-height: 1.3; font-weight: 600; margin-bottom: 5px; }
a { color: #7eb8da; text-decoration: none; }
a:hover { color: #a8d4f0; }
img { max-width: 100%; }
ul { list-style: none; }

body { background-color: #181818; color: #fff; }

.container { width: 100%; max-width: 980px; padding: 0 15px; margin: 0 auto; }
.container-sm { max-width: 784px; }
.container-lg { max-width: 1200px; }

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #131d25 0%, #1d272f 100%);
    padding: 30px 0;
    text-align: center;
    border-bottom: 3px solid #26445f;
}
.site-header img.logo { max-width: 400px; }

/* === NAV === */
.site-nav {
    background-color: #131d25;
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid #26445f;
}
.site-nav a {
    color: #8ab4d4;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 20px;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.site-nav a:hover { color: #fff; }

/* === BANNER / HERO === */
.banner-section {
    padding: 50px 0 30px;
    text-align: center;
}
.banner-title { font-size: 36px; margin-bottom: 15px; }
.banner-subtitle { color: #aaa; font-size: 16px; max-width: 600px; margin: 0 auto; }
.banner-subtitle p { color: #aaa; }

.hero { padding: 60px 0 40px; text-align: center; }
.hero h1 { font-size: 36px; margin-bottom: 15px; }
.hero h1 span { color: #7eb8da; }
.hero p.subtitle { color: #aaa; font-size: 16px; max-width: 600px; margin: 0 auto 15px; }
.hero .cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 40px;
    background-color: #26445f;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.hero .cta:hover { background-color: #345a7a; }

/* === ACCENT COLOR === */
.accent-color { color: #7eb8da; }

/* === LAYOUT === */
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.absolute { position: absolute; }
.font-14 { font-size: 14px; }
.font-18 { font-size: 18px; }
.font-20 { font-size: 20px; }
.mt-40 { margin-top: 40px; }
.mb-15 { margin-bottom: 15px; }

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.row > * { padding: 0 15px; }
.col-3 { width: 33.333%; }
.col-6 { width: 50%; }
.col-9 { width: 75%; }
.col-12 { width: 100%; }

/* === FEATURES === */
.features { padding: 50px 0; border-top: 1px solid #2a2a2a; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 25px;
}
.feature-card h3 { color: #7eb8da; margin-bottom: 10px; font-size: 18px; }
.feature-card p { color: #aaa; font-size: 14px; margin-bottom: 0; }

/* === DOMAINS === */
.domains { padding: 50px 0; border-top: 1px solid #2a2a2a; }
.domains h2 { text-align: center; margin-bottom: 10px; }
.domains h2 span { color: #7eb8da; }
.domains p.section-sub { text-align: center; color: #aaa; font-size: 16px; margin-bottom: 30px; }
.domain-cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.domain-card {
    background: linear-gradient(180deg, #1d272f 0%, #181818 100%);
    border: 1px solid #26445f;
    border-radius: 6px;
    padding: 20px 35px;
    text-align: center;
}
.domain-card .domain-name { font-size: 22px; font-weight: 700; color: #7eb8da; }
.domain-card .domain-label { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* === FORMS === */
section { padding: 20px 0; }
.form { max-width: 600px; margin: 30px auto 0; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #8ab4d4;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-family: 'Bai Jamjuree', sans-serif;
    transition: border-color 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: #26445f;
}
.form-control::placeholder { color: #555; }

.radio-group { margin-bottom: 20px; }
.radio-group .label {
    font-size: 14px;
    font-weight: 600;
    color: #8ab4d4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.radio-group label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    width: 30%;
    min-width: 150px;
    position: relative;
}
.radio-group label .radio-control {
    position: absolute;
    opacity: 0;
}
.radio-group label span {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
}
.radio-group label .check {
    background-color: transparent;
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}
.radio-group label .check:after {
    position: absolute;
    top: 2px;
    left: 2px;
    content: ;
    display: block;
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.radio-group label input:checked + .check { border: 1px solid rgba(255, 255, 255, 0.5); }
.radio-group label input:checked + .check:after { background-color: #ffffff; }
.radio-group label:hover .check { border: 1px solid rgba(255, 255, 255, 0.5); }

.btn {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    background-color: transparent;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
.form .btn_blue {
    padding: 16px 22px;
    display: block;
    width: 100%;
    color: #ffffff;
    background-color: #26445f;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    letter-spacing: 1px;
}
.form .btn_blue:hover { background-color: #345a7a; }
.form .error, .error { font-size: 14px; color: #ff6b6b; margin-bottom: 16px; }
.attention { color: #ff6b6b; font-size: 14px; }
.info p { color: #aaa; }

/* === PRIVACY === */
ul.privacylist { padding-bottom: 20px; list-style: disc; }
.privacylist li { margin-left: 40px; color: #aaa; font-size: 16px; }

/* === FOOTER === */
.site-footer {
    padding: 50px 0 20px;
    border-top: 1px solid #2a2a2a;
    margin-top: 50px;
    text-align: center;
}
.powered-by { margin-bottom: 20px; }
.powered-by p { color: #555; font-size: 13px; margin-bottom: 10px; }
.powered-by img { width: 250px; opacity: 0.5; }
.powered-by img:hover { opacity: 0.8; }
.extra-domains { margin-top: 20px; margin-bottom: 25px; }
.extra-domains p { color: #555; font-size: 14px; margin-bottom: 8px; }
.extra-domains .domain-list { color: #666; font-size: 15px; }
.extra-domains .domain-list span { margin: 0 10px; }
.copyright { padding-top: 20px; border-top: 1px solid #2a2a2a; color: #444; font-size: 12px; }

/* old footer compat */
.main-footer { display: none; }
.float-bg-top, .float-bg-bottom { display: none; }

/* === NEW DOMAINS BOX === */
.new-domains {
    background: linear-gradient(180deg, #1d272f 0%, #181818 100%);
    border: 1px solid #26445f;
    border-radius: 6px;
    padding: 25px 30px;
    position: relative;
}
ul.dash-list { list-style: none; padding-left: 25px; position: relative; }
ul.dash-list > li::before { content: 2014; position: absolute; left: 0; }
img.nd-img { width: 150px; right: 15px; bottom: 20px; }
ul.no-bullet { list-style: none; }
.flex-2-col { display: flex; flex-wrap: wrap; }
.flex-col-item { width: 50%; }

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .domain-cards { flex-direction: column; align-items: center; }
    .hero h1, .banner-title { font-size: 28px; }
    .site-nav a { margin: 0 10px; font-size: 12px; }
    .row { flex-wrap: wrap; }
    .col-3, .col-6, .col-9, .col-12 { width: 100%; }
    .radio-group label { width: 100%; }
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    p, li { font-size: 16px; }
}
@media screen and (max-width: 460px) {
    h1, .banner-title { font-size: 22px; }
    h2 { font-size: 20px; }
    h3 { font-size: 16px; }
    p, li { font-size: 14px; }
}
