@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.canvas {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.logo .curved {
    color: #ff6b6b;
    font-weight: 300;
}

nav a, nav button {
    margin-left: 20px;
    text-decoration: none;
    color: #666;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
}

.btn-post {
    background: linear-gradient(135deg, #ff6b6b, #ffa502);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.description {
    color: #888;
    font-size: 18px;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.creative-card {
    background: linear-gradient(135deg, hsl(var(--hue), 70%, 95%), hsl(var(--hue), 70%, 90%));
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.creative-card:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.creative-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.creative-card p {
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .canvas {
        padding: 25px;
    }
    .hero h2 {
        font-size: 36px;
    }
}