.home-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.home-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.site-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-subtitle {
    font-size: 18px;
    color: #666;
}

.home-main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.features-section {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.login-section {
    margin-bottom: 50px;
}

.fake-login-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.login-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.fake-login-form {
    margin-top: 20px;
}

.fake-login-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.fake-login-form input:focus {
    outline: none;
    border-color: #667eea;
}

.fake-login-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.guide-section {
    margin-bottom: 50px;
}

.guide-list {
    display: grid;
    gap: 20px;
}

.guide-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.guide-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.guide-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.guide-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.home-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.icp {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .fake-login-box {
        padding: 30px 20px;
    }
}

