:root {
    --primary: #111827;
    --accent: #3b82f6;
    --bg: #f9fafb;
    --text: #1f2937;
    --muted: #6b7280;
    --radius: 8px;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px;
}

.container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

p.sub {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 40px;
}

input, select, button {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius);
    border: 1px solid #d1d5db;
    font-size: 1rem;
    margin-bottom: 20px;
    box-sizing: border-box;
}

button {
    background-color: var(--accent);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background-color: #2563eb;
}

.mention-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 16px;
    text-align: left;
    margin-bottom: 30px;
}

.mention-box h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.plans {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 12px;
}

.plan-option {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
}

.plan-option input {
    margin-right: 8px;
}

.footer {
    margin: 60px 0 30px;
    font-size: 0.9rem;
    color: var(--muted);
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .plans { flex-direction: column; }
}

.keyword-ctn {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.suggested-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.suggested-keyword {
    background-color: #f3f4f6;
    color: #111827;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: 1px solid #e5e7eb;
}

.suggested-keyword:hover {
    background-color: #e0e7ff;
    color: #1e40af;
    border-color: #c7d2fe;
}


.relative {
    position: relative;
}

.flex {
    display: flex;
}

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

.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

.w-full {
    width: 100%;
}

.rounded-full {
    border-radius: 9999px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.absolute {
    position: absolute;
}

.top-2 {
    top: 0.5rem;
}

.right-2 {
    right: 0.5rem;
}

.bottom-2 {
    bottom: 0.5rem;
}

.left-2 {
    left: 0.5rem;
}

.top-12 {
    top: 3rem;
}

.right-12 {
    right: 3rem;
}

.bottom-12 {
    bottom: 3rem;
}

.left-12 {
    left: 3rem;
}

.size-12 {
    width: 3rem;
    height: 3rem;
}

.size-14 {
    width: 3.5rem;
    height: 3.5rem;
}

.size-\[70px\] {
    width: 70px;
    height: 70px;
}

.rotate-3 {
    transform: rotate(3deg);
}

.-rotate-3 {
    transform: rotate(-3deg);
}

.-rotate-6 {
    transform: rotate(-6deg);
}

.rotate-\[135deg\] {
    transform: rotate(135deg);
}

.rotate-\[-135deg\] {
    transform: rotate(-135deg);
}

.rotate-\[-55deg\] {
    transform: rotate(-55deg);
}

.rotate-\[45deg\] {
    transform: rotate(45deg);
}

.text-lg {
    font-size: 0.8rem;
}

.font-semibold {
    font-weight: 600;
}

.fill-base-content {
    fill: currentColor;
}

.emoji {
    font-size: 50px;
}

/* Media queries */
@media (max-width: 768px) {
    .max-md\:max-w-\[400px\] {
        max-width: 400px;
    }
    .aspect-\[1\/1\] {
        aspect-ratio: 1 / 1;
    }
    .emoji {
        font-size: 40px;
    }

    .text-lg {
        max-width: 130px;
    }
}

@media (min-width: 768px) {
    .md\:w-\[650px\] {
        width: 650px;
    }
    .md\:aspect-\[3\/2\] {
        aspect-ratio: 3 / 2;
    }
    .md\:size-24 {
        width: 6rem;
        height: 6rem;
    }
    .md\:text-xl {
        font-size: 1.25rem;
    }
    .emoji {
        font-size: 60px;
    }
}

@media (max-width: 370px) {
    .text-lg {
        font-size: 0.6rem;
        max-width: 100px;
    }
}