:root {
    --bg-color: #0e0c1f;
    --primary: #673de6;
    --primary-hover: #542ec9;
    --text-white: #ffffff;
    --text-muted: #cdced5;
    --border-color: rgba(255, 255, 255, 0.1);
    --input-bg: #ffffff;
    --input-text: #111;
    --success: #00b67a;
    --danger: #ff4d4d;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.5;
}

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

/* Header */
header {
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--text-white);
}

.my-account {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 0 60px;
}

h1 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 32px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 40px;
}

/* Search Bar (Hostinger Style) */
.search-wrapper {
    max-width: 720px;
    margin: 0 auto 40px;
}

.search-bar {
    background: var(--input-bg);
    border-radius: 48px;
    padding: 8px 8px 8px 32px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.search-bar:focus-within {
    border-color: var(--primary);
}

.search-bar input {
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    color: var(--input-text);
    padding: 12px 0;
}

.search-bar input::placeholder {
    color: #999;
}

.search-bar button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.search-bar button:hover {
    background: var(--primary-hover);
}

/* Trustpilot Section */
.trustpilot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.excellent {
    font-weight: 700;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 20px;
    height: 20px;
    background: var(--success);
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews {
    color: var(--text-muted);
    text-decoration: underline;
}

/* Results - List Style */
.results-section {
    padding-bottom: 100px;
}

.results-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-card {
    background: var(--bg-color);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.domain-name {
    font-size: 20px;
    font-weight: 500;
}

.buy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.status-badge {
    font-size: 14px;
    color: var(--success);
    font-weight: 500;
}

.status-taken {
    color: var(--danger);
}

/* Utils */
.hidden { display: none !important; }

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    .search-bar { flex-direction: column; border-radius: 12px; padding: 16px; gap: 16px; }
    .search-bar input { width: 100%; }
    .search-bar button { width: 100%; }
}
