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

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --text-dark: #000000;
    --text-light: #6b7280;
    --background: #f5f5f5;
    --card-background: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --accent-yellow: #ffd700;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    position: relative;
}

/* Decorative curved element */
body::before {
    content: '';
    position: fixed;
    left: -100px;
    top: 150px;
    width: 300px;
    height: 600px;
    background: var(--accent-yellow);
    border-radius: 50%;
    transform: rotate(-20deg);
    opacity: 0.8;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: white;
    color: var(--text-dark);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--text-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Main Content */
main {
    padding: 40px 20px 60px;
    position: relative;
}

/* Pitch Section */
.pitch {
    background: white;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pitch p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pitch-question {
    font-size: 1.35rem !important;
    font-style: italic;
    font-weight: 600;
    margin: 30px 0 25px 0 !important;
    padding: 25px 35px;
    background: #fafafa;
    border-left: 4px solid var(--text-dark);
    border-radius: 0 4px 4px 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.pitch-headline {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 30px 0 25px 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.pitch-closing {
    font-size: 1.25rem !important;
    margin-top: 35px !important;
}

.pitch-value {
    font-size: 1.25rem !important;
    margin-top: 25px !important;
    margin-bottom: 10px !important;
}

.yet {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1em;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.intro h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}


/* Domains Grid */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.domain-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.domain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.domain-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    word-break: break-word;
}

.domain-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: #f0f0f0;
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.domain-status {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.cta-button {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 14px 40px;
    border-radius: 4px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.cta-button:hover {
    background: var(--secondary-color);
}

.cta-button:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

/* Search in header */
.search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: white;
}

.search-wrapper input {
    border: none;
    outline: none;
    font-size: 0.95rem;
    width: 200px;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    body::before {
        width: 200px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo-section h1 {
        font-size: 2rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
    }

    .search-wrapper input {
        width: 100%;
    }

    .pitch {
        padding: 30px 25px;
    }

    .pitch p {
        font-size: 1rem;
    }

    .pitch-headline {
        font-size: 1.5rem;
    }

    .pitch-closing,
    .pitch-value {
        font-size: 1.1rem !important;
    }

    .domains-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 20px;
    }

    body::before {
        display: none;
    }
}
