/* Additions to style.css for Guide Page */

/* Guide Hero */
.guide-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('image/banner3.jpeg') no-repeat center center/cover;
    height: 90vh;
   
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}
h1 {
    margin-top: 30px;
}
/* Progress Bars */
.progress-bar-container {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
    text-align: left;
}
.progress-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}
.progress-bar {
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 2s ease;
}
.progress-text {
    font-size: 0.9rem;
    margin-top: 5px;
    color: var(--text-color);
}

/* Sliders */
.slider-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.placement-slider, .advanced-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}
.placement-slider::-webkit-slider-thumb, .advanced-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}
.slider-label {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}
.slider-value {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Tips List */
.tips-list {
    list-style: none;
    max-width: 600px;
    margin: 20px auto;
}
.tips-list li {
    background: var(--white);
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}
.tips-list li:hover {
    transform: translateX(10px);
}
.tips-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Tower Stats Counters */
.tower-stats, .upgrade-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-container { max-width: 100%; }
    .tips-list li { flex-direction: column; align-items: flex-start; }
}