@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&display=swap');

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

body {
    background-color: #0C0D0D;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #0C0D0D;
    display: flex;
    justify-content: center;
    padding: 16px 0;
    border-bottom: 1px solid #212121;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    width: 100%;
    padding: 0 24px;
}

.logo {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-icon {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    vertical-align: middle;
}

main {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.intro-section {
    margin: 40px 0;
    color: #8a8f98;
}

.content-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
}

.cards-section {
    display: flex;
    gap: 8px;
    margin-top: 48px;
}

.card {
    background-color: #141516;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    flex: 1;
    transition: background-color 0.3s ease;
}

.card:hover {
    background-color: #252729;
}

.card h3 {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.card p {
    color: #FFFFFF;
}

.card-image {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.card-description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.card-chip {
    display: inline-block;
    background-color: #4CB221;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    padding: 4px 12px;
    border-radius: 12px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: block;
}

.card-link .card {
    height: 100%;
}

/* myCommunity page specific styles */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.beta-button {
    background-color: #4CB221;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.beta-button:hover {
    background-color: #3a8f1a;
}

.app-intro {
    margin: 40px 0 40px 0;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.app-tagline {
    font-size: 12px;
    line-height: 16px;
    color: #8a8f98;
    margin-bottom: 8px;
}

.app-chip {
    display: inline-block;
    background-color: #4CB221;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    padding: 4px 12px;
    border-radius: 12px;
}

.development {
    background-color: #2184B2;
}

.app-description {
    margin: 40px 0;
}

.app-description p {
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.mockups-section {
    margin: 40px 0;
    width: 100%;
    text-align: center;
}

.phone-mockup {
    display: inline-block;
    width: 280px;
    height: 560px;
    background-color: #000;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 16px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 4px;
}

.screen-content {
    flex: 1;
    padding: 20px;
    color: #000;
    overflow-y: auto;
}

.screen-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

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

.screen-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.header-icons {
    display: flex;
    gap: 12px;
}

.contact-list {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.connect-btn {
    background-color: #FF8C00;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}

.important-dates {
    margin-top: 24px;
}

.important-dates h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.date-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
}

.date {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.event {
    font-size: 14px;
    color: #000;
}

.friends-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.friend-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #000;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
}

.field input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
}

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

.section-header h3 {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin: 0;
}

.section-header button {
    background-color: #007AFF;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    font-size: 18px;
}

.why-section {
    margin: 80px 0;
}

.why-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.why-section p {
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 16px;
}
