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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #FFD700;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}

.subtitle {
    font-size: 1.3rem;
    color: #FFA500;
    opacity: 0.9;
    font-weight: 300;
}

/* Controls Section */
.controls-section {
    background: #1a1a1a;
    padding: 30px;
    border: 3px solid #FFD700;
    border-radius: 15px;
    margin-bottom: 30px;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.location-selector label {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1rem;
}

.location-selector select {
    padding: 12px 18px;
    border: 2px solid #333;
    border-radius: 10px;
    background: #000000;
    color: #FFD700;
    font-size: 14px;
    min-width: 220px;
    transition: all 0.3s ease;
}

.location-selector select:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.platform-selector h3 {
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 1.4rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #FFD700;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #000000;
}

.checkbox-label:hover {
    border-color: #FFD700;
    background: #2d2d2d;
    transform: translateY(-2px);
}

.checkbox-label input {
    accent-color: #FFD700;
    transform: scale(1.2);
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fetch-button {
    padding: 16px 32px;
    background: #FFD700;
    color: #000000;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.fetch-button:hover {
    background: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.fetch-button:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.reset-button {
    padding: 16px 28px;
    background: transparent;
    color: #FFD700;
    border: 3px solid #FFD700;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reset-button:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Progress Section */
.progress-section {
    background: #1a1a1a;
    padding: 30px;
    border: 3px solid #333;
    border-radius: 15px;
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 25px;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #333;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF8C00);
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 10px;
}

.progress-text {
    text-align: center;
    margin-bottom: 25px;
    color: #FFA500;
    font-weight: bold;
    font-size: 1.2rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 3px;
    background: #333;
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    background: #000000;
    padding: 12px 24px;
    border: 2px solid #333;
    border-radius: 25px;
    color: #666;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.step.active {
    background: #FFD700;
    color: #000000;
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Results Section */
.results-section {
    background: #1a1a1a;
    padding: 30px;
    border: 3px solid #FFD700;
    border-radius: 15px;
    margin-bottom: 30px;
}

/* Summary Stats */
.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.stat-card {
    background: #000000;
    padding: 30px 25px;
    border: 3px solid #333;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card
