* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #f3f4f6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #1f2937;
}

.container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(100px, auto);
    gap: 16px;
}

.card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Profile Card - Spans 2 columns */
.profile-card {
    grid-column: span 2;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.profile-content img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-content h1 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.profile-content p {
    color: #6b7280;
    font-size: 0.9rem;
}

.social-tags span {
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4b5563;
}

/* Main CTA - Spans 2 columns */
.main-cta {
    grid-column: span 2;
    background: #ff0000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
}

.main-cta .content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.main-cta .icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* Square Links */
.square-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    gap: 10px;
    color: white;
}

.square-link i {
    font-size: 2rem;
}

.square-link span {
    font-weight: 600;
}

.bg-dark { background: #000; }
.bg-purple { background: #5865F2; }
.bg-green { background: #1DB954; color: white; }

/* Wide Link */
.wide-link {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wide-link i {
    font-size: 1.5rem;
}

/* Map Card */
.map-card {
    grid-column: span 2;
    height: 120px;
    position: relative;
    padding: 0;
}

.map-bg {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=400&h=120&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.location-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Newsletter */
.newsletter {
    grid-column: span 2;
}

.newsletter h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.newsletter form {
    display: flex;
    gap: 8px;
}

.newsletter input {
    flex: 1;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.newsletter button {
    background: #1f2937;
    color: white;
    border: none;
    width: 40px;
    border-radius: 12px;
    cursor: pointer;
}
