sushilideaclan01's picture
feat: Initialize a full-stack application with a FastAPI backend and React frontend for AI-powered marketing research concept generation.
481234c
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
:root {
--primary: #ffd700;
--primary-hover: #ffdf33;
--bg-dark: #070707;
--card-bg: rgba(255, 255, 255, 0.03);
--card-border: rgba(255, 255, 255, 0.08);
--text-main: #ffffff;
--text-muted: #888888;
--accent: #ffd700;
--glow: rgba(255, 215, 0, 0.15);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg-dark);
color: var(--text-main);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
line-height: 1.5;
}
/* Layout System */
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}
.flex {
display: flex;
}
.items-center {
align-items: center;
}
.justify-between {
justify-content: space-between;
}
.gap-2 {
gap: 0.5rem;
}
.gap-3 {
gap: 0.75rem;
}
.gap-4 {
gap: 1rem;
}
.gap-6 {
gap: 1.5rem;
}
.gap-12 {
gap: 3rem;
}
.grid {
display: grid;
}
.grid-cols-2 {
grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
.app-grid {
display: grid;
grid-template-columns: 400px 1fr;
gap: 3rem;
}
}
/* Components */
.glass {
background: var(--card-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--card-border);
border-radius: 20px;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass:hover {
border-color: rgba(255, 215, 0, 0.2);
}
.premium-header {
height: 80px;
border-bottom: 1px solid var(--card-border);
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 100;
}
.nav-link {
color: var(--text-muted);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: color 0.3s ease;
margin-left: 2rem;
}
.nav-link:hover {
color: var(--primary);
}
.logo-container {
display: flex;
align-items: center;
gap: 12px;
}
.logo-box {
background: var(--primary);
padding: 8px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}
.logo-text {
font-size: 1.5rem;
font-weight: 800;
letter-spacing: -0.5px;
}
.logo-text span {
color: var(--primary);
}
.premium-button {
background: var(--primary);
color: #000;
border: none;
padding: 14px 28px;
border-radius: 12px;
font-weight: 700;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
display: flex;
align-items: center;
gap: 10px;
justify-content: center;
width: 100%;
font-size: 1rem;
}
.premium-button:hover {
background: var(--primary-hover);
transform: translateY(-3px);
box-shadow: 0 10px 30px var(--glow);
}
.premium-button:active {
transform: translateY(-1px);
}
.premium-button:disabled {
background: #222;
color: #555;
cursor: not-allowed;
transform: none;
box-shadow: none;
}
.form-group {
margin-bottom: 1.5rem;
}
label {
display: block;
margin-bottom: 8px;
font-size: 0.85rem;
font-weight: 600;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.5px;
}
input,
textarea {
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--card-border);
border-radius: 12px;
padding: 14px;
color: white;
width: 100%;
font-size: 1rem;
font-family: inherit;
transition: all 0.3s ease;
}
input:focus,
textarea:focus {
outline: none;
border-color: var(--primary);
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 0 0 4px var(--glow);
}
/* Typography & Decoration */
.gradient-text {
background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.section-title {
font-size: 1.25rem;
font-weight: 700;
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 2rem;
}
.card-title {
font-size: 0.75rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--text-muted);
margin-bottom: 1rem;
}
.icon-badge {
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 215, 0, 0.1);
color: var(--primary);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
background: #222;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #333;
}