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

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

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.guide-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.category {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.guide-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.guide-content {
    padding: 40px 30px;
}

.step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
}

.guide-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.guide-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.image-container {
    margin-top: 15px;
}

.guide-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.guide-image:hover {
    transform: scale(1.02);
}

.completion {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 15px;
    color: white;
    margin-top: 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    font-weight: bold;
}

.completion h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.completion p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .guide-header {
        padding: 30px 20px;
    }

    .guide-header h1 {
        font-size: 2rem;
    }

    .guide-content {
        padding: 30px 20px;
    }

    .step {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .step-number {
        align-self: flex-start;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .completion {
        padding: 30px 15px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .guide-header h1 {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
} 