/* wordpresshosting.vn CDN Test Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

header p {
    color: #666;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hero p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Content Section */
.content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

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

.content ul {
    list-style: none;
    padding: 0;
}

.content li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.content li:last-child {
    border-bottom: none;
}

.content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

footer p {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
}
