/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #dc2626 0%, #000000 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header */
header {
    padding: 30px 0;
    text-align: center;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.5px;
}

/* Main content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.hero {
    max-width: 800px;
}

.update-notice {
    padding: 12px 16px;
    margin-bottom: 24px;
    text-align: center;
}

.update-notice p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.update-notice strong {
    color: #7c3aed;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 900;
    color: #7c3aed;
    margin-bottom: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Courier New', 'Courier', monospace;
    text-shadow: 
        0 0 8px #7c3aed,
        0 0 15px #6d28d9,
        0 0 25px #5b21b6,
        0 0 35px #4c1d95,
        2px 2px 0px rgba(0, 0, 0, 0.9);
    animation: glitch 3s infinite;
    position: relative;
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow: 
            0 0 8px #7c3aed,
            0 0 15px #6d28d9,
            0 0 25px #5b21b6,
            0 0 35px #4c1d95,
            2px 2px 0px rgba(0, 0, 0, 0.9);
    }
    92% {
        text-shadow: 
            -2px 0 8px #7c3aed,
            2px 2px 15px #5b21b6,
            0 0 25px #6d28d9,
            0 0 35px #4c1d95,
            2px 2px 0px rgba(0, 0, 0, 0.9);
    }
    94% {
        text-shadow: 
            2px 0 8px #4c1d95,
            -2px -2px 15px #7c3aed,
            0 0 25px #5b21b6,
            0 0 35px #6d28d9,
            2px 2px 0px rgba(0, 0, 0, 0.9);
    }
}

.hero-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 32px;
    box-shadow: 
        0 0 20px #2d1b4e,
        0 0 40px #1a0f2e,
        0 0 60px #0f0820;
}

.editor-link-section {
    text-align: center;
    margin: 0 auto 32px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.editor-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.editor-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    background: #7c3aed;
    border: 2px solid #7c3aed;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.editor-link:nth-child(3) {
    background: #000;
    border: 2px solid #000;
}

.editor-link:hover {
    background: #fff;
    color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.editor-link:nth-child(3):hover {
    color: #000;
}

.claude-proxy-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-top: 12px;
    font-style: italic;
}

.mission-statement {
    max-width: 700px;
    margin: 0 auto 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #000;
    color: #333;
}

.mission-statement p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    word-spacing: -0.05em;
    font-weight: 400;
}

.mission-statement p:last-child {
    margin-bottom: 0;
}

.time-project-preview {
    max-width: 800px;
    margin: 40px auto 32px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border: 3px solid #dc2626;
}

.time-project-preview h3 {
    font-size: 24px;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 16px;
    text-align: center;
}

.time-project-preview > p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.preview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.5);
    font-size: 14px;
    font-weight: 500;
}

.preview-feature i {
    color: #dc2626;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.time-project-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.demo-btn {
    text-decoration: none;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.demo-btn.primary {
    background: #dc2626;
    color: white;
    border-color: white;
}

.demo-btn.primary:hover {
    background: white;
    color: #dc2626;
    border-color: #dc2626;
}

.demo-btn.secondary {
    background: transparent;
    color: white;
    border-color: #dc2626;
}

.demo-btn.secondary:hover {
    background: #dc2626;
    color: white;
}

.demo-disclaimer-section {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #000;
    color: #333;
}

.demo-disclaimer {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #333;
    text-align: left;
    font-style: normal;
}

.demo-disclaimer strong {
    color: #dc2626;
    font-weight: 600;
}

.repo-link-text {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.repo-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border: 2px solid #dc2626;
    background: white;
    transition: all 0.3s ease;
}

.repo-link:hover {
    background: #dc2626;
    color: white;
}

.repo-link i {
    font-size: 14px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-weight: 300;
    line-height: 1.5;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #000;
    padding: 32px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: #dc2626;
}

.feature-icon .icon-link {
    color: #dc2626;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.feature-icon .icon-link:hover {
    opacity: 0.7;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.feature p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.funding-notice {
    display: block;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(124, 58, 237, 0.15);
    border-left: 3px solid #7c3aed;
    color: #7c3aed;
    font-weight: 600;
    font-size: 13px;
}

.feature-link {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border: 2px solid #dc2626;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(220, 38, 38, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    width: 100%;
}

.resource-link:hover,
.resource-link:active {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.card-tag {
    margin-top: 16px;
    font-size: 10px;
    color: #666666;
    text-align: center;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.launch-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-weight: 400;
}

.contact-info {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.email-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 400;
}

.email-link {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    background: #dc2626;
    border: 2px solid #fff;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: #fff;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Additional Resources Section */
.additional-resources {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.resources-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 400;
}

.resources-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background: transparent;
    border: 2px solid #fff;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resources-link:hover {
    background: #fff;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Web Development Resources Section */
.web-development-resources {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
    padding: 30px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.web-dev-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 400;
}

.web-dev-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background: #dc2626;
    border: 2px solid #dc2626;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.web-dev-link:hover {
    background: #fff;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Support/Donate Section */
.support-donate {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
    padding: 30px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.support-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 400;
    text-align: left;
}

.donate-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background: #dc2626;
    border: 2px solid #dc2626;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.donate-link:hover {
    background: #fff;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* AI Agent Notice */
.ai-agent-notice {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
    padding: 25px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.agent-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.follow-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.social-link {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #a78bfa;
    text-decoration: underline;
}

/* Reading Materials Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 5% auto;
    padding: 30px;
    border: 2px solid #dc2626;
    width: 90%;
    max-width: 600px;
    color: #fff;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.modal-content h2 {
    color: #dc2626;
    margin-bottom: 30px;
    font-size: 2rem;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 10px;
}

.close {
    color: #dc2626;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #fff;
}

.reading-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reading-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.reading-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.reading-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.reading-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    background: #dc2626;
    border: 2px solid #dc2626;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reading-link:hover {
    background: #fff;
    color: #dc2626;
    transform: translateY(-2px);
}

/* HyVibe Contact Modal */
.hyvibe-contact {
    text-align: center;
    padding: 20px 0;
}

.hyvibe-description {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-instruction {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.hyvibe-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    background: #7c3aed;
    border: 2px solid #7c3aed;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hyvibe-contact-link:hover {
    background: #fff;
    color: #7c3aed;
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    margin-top: auto;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-links a:hover {
    color: #dc2626;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
}

.open-source-notice {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #000;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.github-info {
    margin-bottom: 20px;
}

.github-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.github-info p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #333;
}

.github-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid #dc2626;
    font-weight: 600;
    transition: all 0.3s ease;
}

.github-link:hover {
    background: #dc2626;
    color: white;
}

.github-link i {
    font-size: 18px;
}

.demo-notice {
    border-top: 2px solid #dc2626;
    padding-top: 20px;
}

.security-note {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    background: #f8f9fa;
    padding: 16px;
    border: 2px solid #000;
}

.security-note strong {
    color: #dc2626;
    font-weight: 600;
}

.collaboration {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Contributors Section */
.contributors-section {
    margin: 50px 0 30px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
}

.contributors-title {
    text-align: center;
    color: #7c3aed;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.contributor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid #7c3aed;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-border 2s ease-in-out infinite;
}

.contributor-card:hover {
    background: rgba(124, 58, 237, 0.15);
    transform: translateY(-5px);
}

.contributor-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.vivatax-logo {
    border-radius: 50%;
    object-fit: cover;
}

.contributor-info {
    text-align: center;
}

.contributor-info h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contributor-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: #7c3aed;
        box-shadow: 0 0 5px rgba(124, 58, 237, 0.5);
    }
    50% {
        border-color: #a78bfa;
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.8), 0 0 40px rgba(124, 58, 237, 0.4);
    }
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Tablet Landscape Responsive */
@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .additional-resources {
        padding: 25px;
        margin-top: 35px;
        margin-bottom: 35px;
    }
    
    .web-development-resources {
        padding: 25px;
        margin-top: 25px;
        margin-bottom: 35px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    header {
        padding: 20px 0;
    }
    
    .open-source-notice {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .github-info h4 {
        font-size: 18px;
    }
    
    .github-info p {
        font-size: 14px;
    }
    
    .github-link {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .security-note {
        padding: 12px;
        font-size: 13px;
    }
    
    .time-project-preview {
        padding: 20px;
        margin: 30px auto 24px;
    }
    
    .time-project-preview h3 {
        font-size: 20px;
    }
    
    .time-project-preview > p {
        font-size: 14px;
    }
    
    .preview-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .preview-feature {
        padding: 10px;
        font-size: 13px;
    }
    
    .time-project-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
.demo-btn {
    width: 100%;
    max-width: 250px;
    padding: 12px 20px;
    font-size: 14px;
}

main {
    padding: 20px 0;
}
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .cta-section {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .contact-info {
        max-width: 100%;
    }
    
    .email-link {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .additional-resources {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .resources-text {
        font-size: 15px;
    }
    
    .resources-link {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .web-development-resources {
        margin-top: 20px;
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .web-dev-text {
        font-size: 15px;
    }
    
    .web-dev-link {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    footer {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 0;
    }
    
    .hero-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .hero-image {
        max-width: 90%;
        margin: 0 auto 24px;
    }
    
    .editor-link-section {
        padding: 0 20px;
        margin-bottom: 24px;
    }
    
    .editor-description {
        font-size: 14px;
        padding: 0 4px;
    }
    
    .editor-link {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .mission-statement {
        padding: 20px 16px;
        margin-bottom: 24px;
    }
    
    .mission-statement p {
        font-size: 14px;
        text-align: left;
        margin: 0 0 20px 0;
    }
    
    .mission-statement p:last-child {
        margin-bottom: 0;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .feature {
        padding: 24px 20px;
    }
    
    .features {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }
    
    .resource-link {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .cta-section {
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .launch-text {
        font-size: 16px;
    }
    
    .open-source-notice {
        padding: 15px;
    }
    
    .github-info h4 {
        font-size: 16px;
    }
    
    .github-info p {
        font-size: 13px;
    }
    
    .github-link {
        width: 100%;
        justify-content: center;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .security-note {
        padding: 10px;
        font-size: 12px;
    }
    
    .time-project-preview {
        padding: 15px;
        margin: 24px auto 20px;
    }
    
    .time-project-preview h3 {
        font-size: 18px;
    }
    
    .time-project-preview > p {
        font-size: 13px;
    }
    
    .preview-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .preview-feature {
        padding: 8px;
        font-size: 12px;
    }
    
    .preview-feature i {
        font-size: 14px;
    }
    
    .time-project-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .demo-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .demo-disclaimer-section {
        padding: 12px;
        margin-top: 15px;
    }
    
    .demo-disclaimer {
        font-size: 12px;
    }
    
    .repo-link-text {
        font-size: 11px;
    }
    
    .repo-link {
        padding: 3px 6px;
        font-size: 11px;
    }
    
    .additional-resources {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .resources-text {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .resources-link {
        font-size: 14px;
        padding: 8px 16px;
        flex-direction: column;
        gap: 4px;
    }
    
    .web-development-resources {
        margin-top: 15px;
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .web-dev-text {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .web-dev-link {
        font-size: 14px;
        padding: 8px 16px;
        flex-direction: column;
        gap: 4px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        padding-right: 40px;
    }
    
    .close {
        font-size: 40px;
        right: 15px;
        top: 15px;
        z-index: 1001;
    }
    
    .reading-item {
        padding: 15px;
    }
    
    .reading-item h3 {
        font-size: 1.1rem;
    }
    
    .reading-item p {
        font-size: 0.9rem;
    }
    
    .reading-link {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

/* Mobile standard (320px to 480px) */
@media screen and (max-width: 480px) {
    .demo-disclaimer {
        font-size: 11px !important;
    }
    
    footer {
        padding: 15px 0;
    }
    
    .contributors-section {
        margin: 30px 0 20px 0;
        padding: 20px 0;
    }
    
    .contributors-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .contributors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contributor-card {
        padding: 20px;
    }
    
    .contributor-logo {
        width: 60px;
        height: 60px;
    }
    
    .contributor-info h5 {
        font-size: 1rem;
    }
    
    .contributor-info p {
        font-size: 0.85rem;
    }
}
