/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #222;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Header and Navigation */
header {
    background-color: #111;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

header h1 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link:hover {
    color: #ddd;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.2s;
    background: transparent;
    filter: brightness(1.2) contrast(1.3);
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
    filter: brightness(1.4) contrast(1.5);
}

.beta-badge {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #fff;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px; /* Reduced since footer is hidden by default */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.stat {
    text-align: center;
    min-width: 120px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat:nth-child(1) { animation-delay: 1.2s; }
.stat:nth-child(2) { animation-delay: 1.4s; }
.stat:nth-child(3) { animation-delay: 1.6s; }

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

/* Bible Verse Section */
.bible-verse {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2.1s forwards;
}

.bible-verse .verse-text {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
}

.bible-verse .verse-reference {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-button {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background-color: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button.primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #111;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 2.4s forwards;
}

.features-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #111;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:nth-child(1) { animation: fadeInUp 0.8s ease-out 2.7s forwards; }
.feature-card:nth-child(2) { animation: fadeInUp 0.8s ease-out 2.9s forwards; }
.feature-card:nth-child(3) { animation: fadeInUp 0.8s ease-out 3.1s forwards; }
.feature-card:nth-child(4) { animation: fadeInUp 0.8s ease-out 3.3s forwards; }

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* Shield Icon for Anonymous */
.icon-shield::before {
    content: '';
    width: 32px;
    height: 40px;
    background: currentColor;
    clip-path: polygon(50% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%, 0% 0%);
    position: relative;
}

.icon-shield::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 28px;
    background: #111;
    clip-path: polygon(50% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%, 0% 0%);
}

/* Basketball Icon */
.icon-basketball::before {
    content: '';
    width: 36px;
    height: 36px;
    background: #ff8e53;
    border-radius: 50%;
    position: relative;
    border: 3px solid #111;
}

.icon-basketball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    border-radius: 50%;
    border: 2px solid #111;
}

/* Heart Icon for Support */
.icon-heart::before {
    content: '';
    width: 32px;
    height: 28px;
    background: currentColor;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
}

.icon-heart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 24px;
    background: #111;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Globe Icon for Community */
.icon-globe::before {
    content: '';
    width: 36px;
    height: 36px;
    background: currentColor;
    border-radius: 50%;
    position: relative;
}

.icon-globe::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: #111;
    border-radius: 50%;
    border: 2px solid white;
}

.feature-card h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: #111;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Story Section */
.story-section {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 3.6s forwards;
}

.story-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #111;
}

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

.story-quote p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 3.9s forwards;
}

.community-guidelines {
    background: #f8f9fa;
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.guidelines-content h2 {
    color: #111;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.guidelines-message {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.guidelines-message p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guidelines-message p:last-child {
    margin-bottom: 0;
    color: #666;
    font-size: 15px;
}

.guidelines-message p em {
    color: #ff6b6b;
    font-style: italic;
    font-weight: 500;
}

.guidelines-message strong {
    color: #ff6b6b;
    font-weight: 700;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Intro Section (for other pages) */
.intro {
    text-align: center;
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.intro h2 {
    margin-top: 0;
    color: #111;
    font-size: 28px;
}

.intro h3 {
    margin-top: 0;
    color: #111;
    font-size: 24px;
}

.intro p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Post Form */
.post-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.post-form-container h3 {
    margin-top: 0;
    color: #111;
    font-size: 22px;
}

#postForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#postContent {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    transition: border-color 0.2s;
}

#postContent:focus {
    outline: none;
    border-color: #111;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form-note {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #111;
}

.form-note p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

select {
    flex: 1;
    min-width: 150px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    transition: border-color 0.2s;
}

select:focus {
    outline: none;
    border-color: #111;
}

.submit-btn {
    background-color: #111;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #333;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Feed and Posts */
#feed {
    margin-top: 30px;
}

.post {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.post:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.post-detail {
    margin-bottom: 30px;
}

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

.post-meta {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.delete-post-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #999;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.delete-post-btn:hover {
    color: #ff4444;
    background-color: rgba(255, 68, 68, 0.1);
    opacity: 1;
    transform: scale(1.1);
}

.delete-post-btn:active {
    transform: scale(0.95);
}

.post-content {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 20px 0;
}

.post-footer {
    text-align: right;
    margin-top: 20px;
}

.post-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.like-button {
    background-color: #fff;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.like-button:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.like-button.liked {
    background-color: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.comment-button {
    background-color: #fff;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.comment-button:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    color: #333;
}

/* First Comment in Feed */
.first-comment {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    border-left: 3px solid #111;
}

.first-comment .comment-header {
    margin-bottom: 8px;
}

.first-comment .comment-meta {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.first-comment .comment-content {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* View More Comments Button */
.view-more-comments {
    text-align: center;
    margin: 15px 0;
}

.view-more-btn {
    background-color: transparent;
    color: #111;
    border: 1px solid #111;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    font-weight: 500;
}

.view-more-btn:hover {
    background-color: #111;
    color: white;
}

/* Comments Section */
.comments-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comments-section h3 {
    margin-top: 0;
    color: #111;
    font-size: 22px;
    margin-bottom: 20px;
}

.comments-section h4 {
    color: #111;
    font-size: 18px;
    margin-bottom: 15px;
}

#commentsList {
    margin-bottom: 30px;
}

.comment {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
}

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    margin-bottom: 10px;
}

.comment-meta {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}



.comment-content {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.no-comments {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

/* Comment Form */
.comment-form-container {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

#commentForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#commentContent {
    width: 100%;
    min-height: 80px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    transition: border-color 0.2s;
}

#commentContent:focus {
    outline: none;
    border-color: #111;
}

/* About Page */
.about-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-content h3 {
    color: #111;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

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

.about-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.instagram-cta {
    text-align: center;
    margin: 30px 0;
}

.instagram-button {
    display: inline-block;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    color: white;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 11px;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

footer.hide {
    transform: translateY(100%);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.footer-verse {
    font-style: italic;
    font-size: 12px;
    margin-bottom: 2px;
    max-width: 400px;
    line-height: 1.2;
}

.footer-verse .verse-text {
    color: #ddd;
}

.footer-verse .verse-reference {
    color: #ff6b6b;
    font-weight: 600;
}

.footer-copyright {
    font-size: 10px;
    opacity: 0.8;
    margin-bottom: 3px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.social-link {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Message System */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.message.error {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

.message.success {
    background-color: #e8f5e8;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.message.info {
    background-color: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #1565c0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    main {
        padding: 15px;
        padding-bottom: 80px;
    }
    
    .hero-section {
        padding: 40px 20px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .story-section, .cta-section {
        padding: 40px 20px;
    }
    
    .bible-verse {
        padding: 30px 20px;
    }
    
    .bible-verse .verse-text {
        font-size: 20px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    select {
        min-width: auto;
    }
    
    .intro, .post-form-container, .post, .about-content, .comments-section {
        padding: 20px;
    }
    
    .post-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .like-button, .comment-button {
        text-align: center;
    }
    
    .first-comment {
        padding: 12px;
        margin: 12px 0;
    }
    
    .hero-cta, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .community-guidelines {
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .guidelines-content h2 {
        font-size: 24px;
    }
    
    .guidelines-message {
        padding: 20px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-verse {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 10px;
    }
}

/* Loading States */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Form validation styles */
select:invalid {
    color: #999;
}

select option {
    color: #333;
}

select option[value=""][disabled] {
    display: none;
}
