.main {
    padding-top: 80px;
    background: #000;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero */
.hero {
    padding: 6rem 0;
    text-align: center;
    background: radial-gradient(circle at center 30%, rgba(30, 144, 255, 0.08), transparent 70%);
}

.title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight {
    background: linear-gradient(90deg, #1E90FF, #00BFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.searchWrapper {
    display: flex;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    max-width: 700px;
    margin: 0 auto 2rem;
    box-shadow: 0 0 40px rgba(30, 144, 255, 0.15);
    transition: box-shadow 0.2s;
}

.errorInput {
    box-shadow: 0 0 0 2px #ff4d4f;
}

.errorMessage {
    color: #ff4d4f;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.searchInput {
    flex: 1;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    color: #333;
}

.searchBtn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.searchBtn:hover {
    transform: scale(1.02);
}

.popularTlds {
    color: #666;
    font-size: 0.9rem;
}

.tag {
    color: var(--primary);
    margin-left: 1rem;
    cursor: pointer;
    border-bottom: 1px dashed transparent;
}

.tag:hover {
    border-bottom-color: var(--primary);
}

/* Pricing Table */
.pricing {
    padding: 4rem 0;
    background: #050505;
}

.sectionTitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.tableWrapper {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    /* For rounded corners */
    overflow-x: auto;
    /* Scroll table on small screens */
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.table th {
    background: #111;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #222;
}

.table td {
    padding: 1.5rem;
    border-bottom: 1px solid #1a1a1a;
    color: white;
    font-size: 1rem;
}

.table tr:last-child td {
    border-bottom: none;
}

.tldCell {
    font-weight: 700;
    color: var(--primary) !important;
    font-size: 1.2rem !important;
}

/* Features */
.features {
    padding: 6rem 0;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featureCard {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.featureCard h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.featureCard p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}