/* HowStart Page Styles */
.howstart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #59360E 0%, #704617 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-title {
    color: #FFD700;
    font-size: 2.8rem;
    margin: 0 0 15px 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    font-weight: bold;
}

.page-subtitle {
    color: #E7E0C2;
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
}

.guide-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 25px;
    background: linear-gradient(90deg, #3a260a 0%, #59360E 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6600 0%, #FF8800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-right: 20px;
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.4);
}

.section-title {
    color: #FFD700;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.step-card {
    background: rgba(58, 38, 10, 0.8);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #704617;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: #FF6600;
}

.step-content {
    color: #E7E0C2;
    line-height: 1.7;
}

.step-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #F0E6D2;
}

.substep {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(89, 54, 14, 0.3);
    border-radius: 10px;
    border-left: 4px solid #FF6600;
}

.substep:last-child {
    margin-bottom: 0;
}

.substep-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FF6600 0%, #FF8800 100%);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    color: white;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
}

.substep-content {
    padding-left: 15px;
}

.substep-content p {
    margin: 10px 0;
    font-size: 1rem;
    color: #E7E0C2;
}

.screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
}

.screenshot {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.05);
}

.screenshot-medium {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.screenshot-large {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 15px 0;
}

.screenshot-small {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.highlight-link {
    color: #FF6600;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    color: #FFD700;
    border-bottom-color: #FFD700;
}

.server-link {
    background: linear-gradient(135deg, #FF6600 0%, #FF8800 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.3);
}

.server-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.important-note {
    background: linear-gradient(135deg, #704617 0%, #8B5A2B 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
}

.important-note h3 {
    color: #FFD700;
    margin-top: 0;
    font-size: 1.3rem;
}

.resource-links {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.resource-links li {
    margin: 10px 0;
}

.resource-link {
    display: inline-block;
    background: rgba(255, 102, 0, 0.2);
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.resource-link:hover {
    background: rgba(255, 102, 0, 0.4);
    transform: translateX(5px);
    border-color: #FF6600;
}

.tip {
    background: rgba(76, 175, 80, 0.2);
    border-left: 4px solid #4CAF50;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
    color: #A5D6A7;
}

.warning-box {
    background: rgba(255, 152, 0, 0.2);
    border-left: 4px solid #FF9800;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
    color: #FFE0B2;
}

.success-tip {
    background: rgba(76, 175, 80, 0.3);
    border-left: 4px solid #4CAF50;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
    color: #C8E6C9;
    font-weight: 500;
}

.registration-steps {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #704617;
}

.registration-steps li {
    margin: 12px 0;
    padding-left: 10px;
    color: #E7E0C2;
}

.error-item {
    background: rgba(89, 54, 14, 0.4);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.error-title {
    color: #FF6600;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.clarification {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    border-left: 3px solid #FFD700;
}

.helpful-resources {
    background: linear-gradient(135deg, #3a260a 0%, #59360E 100%);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
}

.helpful-resources h3 {
    color: #FFD700;
    margin-top: 0;
    font-size: 1.3rem;
}

.incubator-info {
    background: rgba(58, 38, 10, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-highlight {
    background: linear-gradient(135deg, #704617 0%, #8B5A2B 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
}

.feature-highlight h3 {
    color: #FFD700;
    margin-top: 0;
}

.incubator-rules {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.incubator-rules h3 {
    color: #FFD700;
    margin-top: 0;
}

.incubator-rules ul {
    color: #E7E0C2;
}

.incubator-rules li {
    margin: 10px 0;
}

.tip-box {
    background: rgba(156, 39, 176, 0.2);
    border-left: 4px solid #9C27B0;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    color: #E1BEE7;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.resource-category {
    background: rgba(58, 38, 10, 0.7);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #704617;
    transition: all 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-3px);
    border-color: #FF6600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.category-title {
    color: #FFD700;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #704617;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-list li {
    margin: 12px 0;
}

.final-tip {
    text-align: center;
    background: linear-gradient(135deg, #59360E 0%, #704617 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    color: #E7E0C2;
    font-size: 1.1rem;
    border: 2px solid #FF6600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .howstart-container {
        padding: 10px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .screenshots {
        flex-direction: column;
        align-items: center;
    }
    
    .screenshot {
        max-width: 100%;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .step-card {
        padding: 15px;
    }
    
    .substep {
        padding: 15px;
    }
}