/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Logo */
.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1976d2;
}

.logo-accent {
    color: #9c27b0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(156, 39, 176, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #9c27b0;
    border: 2px solid #9c27b0;
}

.btn-secondary:hover {
    background: #9c27b0;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #9c27b0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9ff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    padding: 20px;
    height: 100%;
}

.app-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.app-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976d2;
}

.mood-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mood-avatar {
    font-size: 2rem;
}

.mood-text {
    color: #666;
    font-size: 0.9rem;
}

.community-posts {
    margin-top: 20px;
}

.post {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-avatar {
    font-size: 1.5rem;
}

.post-content {
    flex: 1;
}

.post-text {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.target-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.group-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.group-card:hover {
    transform: translateY(-5px);
}

.group-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.group-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.group-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8f9ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9c27b0;
    font-weight: bold;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: white;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: #4caf50;
    color: white;
}

.timeline-item.current .timeline-marker {
    background: #9c27b0;
    color: white;
}

.timeline-item.upcoming .timeline-marker {
    background: #e0e0e0;
    color: #666;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 45%;
    margin: 0 2.5%;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.timeline-content p {
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9c27b0;
    font-weight: bold;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
    text-align: center;
}

.community .section-header h2,
.community .section-header p {
    color: white;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.community-cta {
    margin-top: 3rem;
}

.community-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.community-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8f9ff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9c27b0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #9c27b0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #9c27b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .target-groups {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline:before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-marker {
        left: 30px;
        transform: none;
    }

    .timeline-content {
        width: 100%;
        margin: 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .community-stats {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
    }

    .feature-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
    }
    
    .btn-secondary {
        border-color: #000;
        color: #000;
    }
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    color: #333;
    margin-bottom: 2rem;
}

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mission-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-circle {
    width: 300px;
    height: 300px;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.person {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.person-1 { top: 20px; left: 50%; transform: translateX(-50%); }
.person-2 { top: 50%; right: 20px; transform: translateY(-50%); }
.person-3 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.person-4 { top: 50%; left: 20px; transform: translateY(-50%); }
.person-5 { top: 30%; left: 10%; }
.person-6 { top: 30%; right: 10%; }

/* Vision Section */
.vision {
    padding: 6rem 0;
    background: #f8f9ff;
}

.vision-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-content h2 {
    color: #333;
    margin-bottom: 2rem;
}

.vision-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: white;
}

.pillar h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Values Section */
.values {
    padding: 6rem 0;
    background: white;
}

.values h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #9c27b0;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: #f8f9ff;
}

.team h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar i {
    font-size: 2rem;
    color: white;
}

.team-member h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #9c27b0;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Impact Section */
.impact {
    padding: 6rem 0;
    background: white;
}

.impact h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-stat {
    text-align: center;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
}

.impact-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #9c27b0;
    margin-bottom: 0.5rem;
}

.impact-stat .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.stat-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Story Section */
.story {
    padding: 6rem 0;
    background: #f8f9ff;
}

.story h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.story-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.story-year {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
}

.story-text {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.story-text h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: white;
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* App Screenshots Section */
.app-screenshots {
    padding: 6rem 0;
    background: #f8f9ff;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.screenshot-mockup {
    margin-bottom: 2rem;
}

.phone-frame {
    width: 200px;
    height: 400px;
    background: #333;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9ff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.app-screen {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.screen-header h3 {
    font-size: 1rem;
    margin: 0;
    color: #333;
}

.screen-header p {
    font-size: 0.6rem;
    margin: 0;
    color: #666;
}

.screen-content {
    flex: 1;
    overflow-y: auto;
}

/* Login Screen Styles */
.login-screen .screen-header {
    flex-direction: column;
    text-align: center;
}

.input-field {
    margin-bottom: 10px;
    position: relative;
}

.input-field input {
    width: 100%;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.6rem;
    background: white;
}

.input-field label {
    display: block;
    font-size: 0.5rem;
    color: #666;
    margin-bottom: 3px;
}

.checkbox-field {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.5rem;
}

.checkbox-field input {
    margin-right: 5px;
}

.login-btn {
    width: 100%;
    padding: 8px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.6rem;
    margin-bottom: 10px;
}

.signup-link {
    font-size: 0.5rem;
    color: #666;
    margin: 0;
}

.signup-link span {
    color: #e91e63;
}

/* Home Screen Styles */
.home-screen .logo {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1976d2;
}

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

.header-icons i {
    font-size: 0.7rem;
    color: #666;
}

.mood-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mood-avatar {
    font-size: 1.2rem;
}

.mood-section input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.6rem;
    color: #666;
}

.mood-feed {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    overflow-x: auto;
}

.mood-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    font-size: 0.5rem;
    color: #666;
}

.mood-item .mood-avatar {
    font-size: 1rem;
    margin-bottom: 3px;
}

.post-card {
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.user-avatar {
    font-size: 1rem;
}

.post-header span {
    font-size: 0.6rem;
    font-weight: 500;
    color: #333;
}

.post-content p {
    font-size: 0.6rem;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.post-actions {
    display: flex;
    gap: 15px;
}

.post-actions i {
    font-size: 0.7rem;
    color: #666;
}

.post-actions i.fa-heart {
    color: #e91e63;
}

/* Forums Screen Styles */
.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 5px 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-bar i {
    font-size: 0.6rem;
    color: #666;
    margin-right: 5px;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.6rem;
    color: #666;
}

.category-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    overflow-x: auto;
}

.tab {
    padding: 5px 8px;
    background: white;
    border-radius: 15px;
    font-size: 0.5rem;
    color: #666;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tab.active {
    background: #e91e63;
    color: white;
}

.forum-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.forum-avatar {
    font-size: 1.5rem;
}

.forum-info {
    flex: 1;
}

.forum-info h4 {
    font-size: 0.6rem;
    margin: 0 0 3px 0;
    color: #333;
}

.forum-info p {
    font-size: 0.5rem;
    margin: 0;
    color: #666;
    line-height: 1.2;
}

.status-badge {
    background: #e91e63;
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.4rem;
    white-space: nowrap;
}

/* Chat Screen Styles */
.chat-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chat-avatar {
    font-size: 1.2rem;
}

.chat-info h4 {
    font-size: 0.6rem;
    margin: 0;
    color: #333;
}

/* Profile Screen Styles */
.profile-header {
    background: #1976d2;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    flex-direction: row;
    justify-content: space-between;
}

.profile-info h3 {
    font-size: 0.8rem;
    margin: 0 0 5px 0;
    color: white;
}

.profile-info p {
    font-size: 0.5rem;
    margin: 0;
    color: white;
    opacity: 0.9;
}

.profile-avatar {
    font-size: 1.5rem;
}

.profile-actions {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.profile-actions button {
    flex: 1;
    padding: 5px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.5rem;
    color: #333;
}

.profile-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

/* Share Screen Styles */
.share-screen .screen-header {
    flex-direction: column;
    align-items: flex-start;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.user-avatar {
    width: 20px;
    height: 20px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: bold;
}

.share-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.5rem;
    margin-top: 5px;
}

.guidelines-box {
    background: white;
    border: 1px solid #1976d2;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
}

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

.guidelines-header h4 {
    font-size: 0.6rem;
    margin: 0;
    color: #333;
}

.guidelines-header i {
    font-size: 0.6rem;
    color: #666;
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}

.guidelines-list li {
    font-size: 0.5rem;
    color: #666;
    margin-bottom: 3px;
    padding-left: 10px;
    position: relative;
}

.guidelines-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e91e63;
}

.guidelines-footer {
    font-size: 0.5rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.screenshot-info {
    max-width: 300px;
}

.screenshot-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.screenshot-info p {
    color: #666;
    line-height: 1.5;
}

/* Active navigation link */
.nav-link.active {
    color: #9c27b0;
    font-weight: 600;
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .contact-form,
    .footer {
        display: none;
    }
    
    .hero {
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
