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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
}

.logo-tagline {
    display: block;
    font-size: 0.7rem;
    color: #667eea;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -0.25rem;
}

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

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

.nav-menu a:hover {
    color: #667eea;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='none' fill-rule='evenodd'%3e%3cg fill='%23ffffff' fill-opacity='0.05'%3e%3ccircle cx='30' cy='30' r='4'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badge-glow 2s ease-in-out infinite alternate;
}

@keyframes badge-glow {
    from {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

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

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: white;
    color: #667eea;
}

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

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

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

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    color: #2d3748;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

/* Workflow */
.workflow {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

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

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

/* Implementation */
.implementation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.code-example {
    background: #2d3748;
    padding: 2rem;
    border-radius: 12px;
    color: white;
}

.code-example h3 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.code-example pre {
    background: #1a202c;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
}

.code-example code {
    color: #68d391;
    font-family: 'Monaco', 'Consolas', monospace;
}

.tech-details {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tech-details h3 {
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.tech-details ul {
    list-style: none;
    space: 1rem;
}

.tech-details li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Architecture */
.architecture-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.client-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    width: 300px;
}

.arrows {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.arrow {
    background: #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4a5568;
}

.servers-box {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.server {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    width: 200px;
}

.server h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

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

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .implementation-content {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .servers-box {
        flex-direction: column;
        align-items: center;
    }
    
    .arrows {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none; /* Simplify for mobile */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .benefits-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* Context Banner */
.context-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.context-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.context-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Solution Statement */
.solution-statement {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.solution-statement h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.solution-statement p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* Quote Section */
.quote-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
    border-left: 4px solid #667eea;
}

.quote-section blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #2d3748;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.quote-section cite {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

/* Ending Wars Section */
.vision-statement {
    text-align: center;
    margin-bottom: 3rem;
}

.vision-intro {
    font-size: 1.3rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.balance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.balance-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.current-problem {
    border-left: 4px solid #ff6b6b;
}

.openadp-solution {
    border-left: 4px solid #48bb78;
}

.choice-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.bad-option {
    background: #fed7d7;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #e53e3e;
}

.vs {
    text-align: center;
    font-weight: bold;
    color: #4a5568;
    padding: 0.5rem 0;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.solution-point {
    background: #f0fff4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #48bb78;
}

.solution-point strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.future-vision {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.future-vision h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.future-vision p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.example-case {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.example-case h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.example-case p {
    margin: 0;
    font-style: italic;
    line-height: 1.7;
}

.end-wars-cta {
    background: #2d3748;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.end-wars-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.end-wars-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    color: #cbd5e0;
}

/* Responsive adjustments for balance grid */
@media (max-width: 768px) {
    .balance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choice-options {
        gap: 0.5rem;
    }
    
    .vs {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

/* Big Tech Support Section */
.tech-problem-statement {
    text-align: center;
    margin-bottom: 3rem;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4299e1;
}

.tech-intro {
    font-size: 1.3rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

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

.tech-benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4299e1;
    transition: transform 0.3s ease;
}

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

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.tech-benefit-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-benefit-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tech-benefit-card p:last-child {
    margin-bottom: 0;
}

.industry-example {
    background: linear-gradient(135deg, #4299e1 0%, #2b6cb0 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.industry-example h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.example-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.current-state,
.openadp-state {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.current-state h4,
.openadp-state h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.current-state ul,
.openadp-state ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.current-state li,
.openadp-state li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.current-state li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.openadp-state li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.collaboration-statement {
    background: #2d3748;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.collaboration-statement h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    text-align: center;
}

.collaboration-statement p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #cbd5e0;
}

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

/* Responsive adjustments for tech section */
@media (max-width: 768px) {
    .tech-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Volunteer Section Styles */
.volunteer-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.volunteer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='none' fill-rule='evenodd'%3e%3cg fill='%23ffffff' fill-opacity='0.05'%3e%3ccircle cx='30' cy='30' r='4'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

.volunteer-section .container {
    position: relative;
    z-index: 1;
}

.volunteer-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.volunteer-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: volunteer-glow 2s ease-in-out infinite alternate;
}

@keyframes volunteer-glow {
    from {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

.volunteer-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.volunteer-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Enterprise welcome section */
.enterprise-welcome {
    margin: 2rem 0 3rem 0;
}

.enterprise-highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.enterprise-highlight h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.enterprise-highlight p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.enterprise-types {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.enterprise-type {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.enterprise-type:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.volunteer-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.volunteer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.primary-card {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.volunteer-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.volunteer-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.volunteer-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #666;
}

.volunteer-benefits {
    margin: 1.5rem 0;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.benefit-icon {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.volunteer-cta {
    margin-top: 2rem;
}

.cta-subtitle {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
}

.volunteer-actions {
    margin-top: 1.5rem;
}

.btn-volunteer-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-volunteer-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-volunteer-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-volunteer-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.urgency-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.urgency-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

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

.urgency-item {
    text-align: center;
    padding: 1.5rem;
}

.urgency-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.urgency-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.urgency-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.call-to-action-final {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.call-to-action-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.call-to-action-final h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.call-to-action-final p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.cta-footnote {
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    opacity: 0.9;
    margin-top: 1.5rem;
}

.code-note {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
}

/* Responsive adjustments for volunteer section */
@media (max-width: 768px) {
    .volunteer-title {
        font-size: 2.2rem;
    }
    
    .volunteer-subtitle {
        font-size: 1.1rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .volunteer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .call-to-action-final {
        padding: 2.5rem 1.5rem;
    }
    
    .call-to-action-final h3 {
        font-size: 1.8rem;
    }
}

/* Discord Footer Styles */
.footer-contact {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.discord-highlight {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    text-align: center;
}

.discord-highlight h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    margin-bottom: 1rem;
}

.discord-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.discord-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.discord-note {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    font-style: italic;
}

/* Verification Section Styles */
.verification-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.verification-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

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

.verification-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: white;
}

.step-details p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.verification-note {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.verification-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.verification-note strong {
    color: #fff;
    font-weight: 600;
}

/* Enhanced code note styles */
.code-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.code-note a:hover {
    text-decoration: underline;
}

/* Responsive verification section */
@media (max-width: 768px) {
    .verification-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-icon {
        align-self: center;
    }
}

/* Developer Ecosystem Section Styles */
.developer-ecosystem-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.developer-ecosystem-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.ecosystem-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.ecosystem-intro p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.developer-opportunities {
    margin-bottom: 3rem;
}

.featured-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.opportunity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.featured-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.opportunity-benefits {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.opportunity-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.opportunity-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.opportunity-card p {
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.big-tech-vision {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.big-tech-vision h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-align: center;
}

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

.enterprise-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.enterprise-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.enterprise-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.enterprise-benefits {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.enterprise-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.big-tech-benefits {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.big-tech-benefits h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.big-tech-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.big-tech-benefits li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    opacity: 0.9;
}

.big-tech-benefits li::before {
    content: '🏢';
    position: absolute;
    left: 0;
}

.developer-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.developer-cta h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.developer-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.developer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive developer section */
@media (max-width: 768px) {
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-opportunities {
        grid-template-columns: 1fr;
    }
    
    .opportunity-benefits,
    .enterprise-benefits {
        justify-content: center;
    }
    
    .developer-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Demo Section Styles */
.demo-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.demo-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-hero h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.demo-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.demo-description h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.demo-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.demo-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.demo-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.demo-text p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.demo-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.demo-badge {
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.4);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 500;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.connected {
    background: #27ae60;
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.5);
}

.demo-security {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.security-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
}

.security-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.security-value {
    font-weight: 600;
}

.security-value.weak {
    color: #e74c3c;
}

.security-value.strong {
    color: #27ae60;
}

.demo-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-demo-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-demo-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-demo-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-demo-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.demo-note {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.demo-note strong {
    color: var(--text-primary);
}

/* Responsive Demo Section */
@media (max-width: 768px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-hero h3 {
        font-size: 1.8rem;
    }
    
    .demo-subtitle {
        font-size: 1.1rem;
    }
    
    .demo-screen {
        padding: 1.5rem;
    }
    
    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-demo-primary,
    .btn-demo-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .demo-features {
        gap: 1rem;
    }
    
    .demo-feature {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .demo-hero h3 {
        font-size: 1.6rem;
    }
    
    .demo-subtitle {
        font-size: 1rem;
    }
    
    .demo-header {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .demo-status {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    .security-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 

/* Applications Section */
.applications-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.applications-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.applications-showcase {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.application-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.application-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.featured-app {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.featured-app .app-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.app-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.app-icon-container {
    flex-shrink: 0;
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: white;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-info {
    flex: 1;
}

.app-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.app-tagline {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0 0 1rem 0;
}

.app-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-badge.live {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.app-badge.openadp {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.app-badge.pwa {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.featured-app .app-badge.live {
    background: rgba(255, 255, 255, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-app .app-badge.openadp {
    background: rgba(255, 255, 255, 0.2);
    color: #86efac;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-app .app-badge.pwa {
    background: rgba(255, 255, 255, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-description {
    padding: 1.5rem 2rem;
}

.app-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.app-features {
    padding: 0 2rem 1.5rem 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.1rem;
}

.app-tech-stack {
    padding: 0 2rem 1.5rem 2rem;
}

.tech-stack-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.tech-stack-items {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-item {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.app-actions {
    padding: 0 2rem 1.5rem 2rem;
    display: flex;
    gap: 1rem;
}

.btn-app-primary {
    background: white;
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.btn-app-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-app-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.btn-app-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.app-stats {
    padding: 1.5rem 2rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.app-stats .stat-item {
    text-align: center;
}

.app-stats .stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.app-stats .stat-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.app-stats .stat-value.live {
    color: #86efac;
}

.coming-soon-apps {
    background: white;
    border-radius: 16px;
    border: 2px dashed #e2e8f0;
    padding: 3rem 2rem;
    text-align: center;
}

.coming-soon-apps h3 {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 1rem;
}

.coming-soon-text {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coming-soon-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.coming-soon-text a:hover {
    text-decoration: underline;
}

.call-for-apps {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.call-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.call-content h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.call-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .app-actions {
        flex-direction: column;
    }
    
    .app-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .call-for-apps {
        flex-direction: column;
        text-align: center;
    }
}