/* MyTokenWallet Home Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 56px;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .tagline {
    font-size: 28px;
    color: #666;
    margin-bottom: 15px;
}

.hero .subtitle {
    font-size: 20px;
    color: #999;
}

/* Services Overview */
.services-overview {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.services-overview h2 {
    color: #667eea;
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

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

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.service-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #667eea;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    min-height: 60px;
}

.service-link {
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
}

/* Features Section */
.features {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.features h2 {
    color: #667eea;
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

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

.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.feature-item h3 {
    color: #667eea;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.8;
}

/* Paymail Section */
.paymail-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    text-align: center;
}

.paymail-section h2 {
    color: #667eea;
    font-size: 32px;
    margin-bottom: 20px;
}

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

.paymail-box {
    background: #f8f9fa;
    border: 2px solid #667eea;
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
}

.paymail-box code {
    font-size: 24px;
    color: #667eea;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: white;
}

.footer p {
    margin: 10px 0;
    font-size: 16px;
}

.footer a {
    color: white;
    text-decoration: underline;
    margin: 0 15px;
}

.footer a:hover {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero .tagline {
        font-size: 20px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .services-overview {
        padding: 30px 20px;
    }

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

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

    .features {
        padding: 30px 20px;
    }

    .paymail-box code {
        font-size: 18px;
    }
}
