/* Overclock Page Styles */
.overclock-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Courier New', monospace;
}

.overclock-container h1 {
    text-align: center;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    margin-bottom: 30px;
    font-size: 2.5em;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ff41; }
    to { text-shadow: 0 0 20px #00ff41, 0 0 30px #00ff41; }
}

/* System Configuration */
.system-config {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.config-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid #00ff41;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transition: all 0.3s ease;
}

.config-card:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.config-card h3 {
    color: #00ff41;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-align: center;
}

.specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.spec-item:last-child {
    border-bottom: none;
}

.label {
    color: #ccc;
    font-size: 0.9em;
}

.value {
    color: #00ff41;
    font-weight: bold;
    font-size: 1.1em;
}

/* Overclock Controls */
.overclock-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.control-group {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid #00ff41;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.control-group h3 {
    color: #00ff41;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3em;
}

.slider-container {
    margin-bottom: 20px;
}

.slider-container label {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 10px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00ff41;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    background: #00cc33;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00ff41;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.slider-value {
    color: #00ff41;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    display: block;
}

/* Monitoring Section */
.monitoring {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.monitor-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid #00ff41;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.monitor-card h3 {
    color: #00ff41;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.gauge {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(#00ff41 0deg, #00ff41 var(--value), #333 var(--value), #333 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gauge::before {
    content: '';
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    position: absolute;
}

.gauge-value {
    position: relative;
    z-index: 1;
    color: #00ff41;
    font-weight: bold;
    font-size: 1.2em;
}

.performance-score {
    font-size: 2em;
    font-weight: bold;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    margin: 10px 0;
}

.stability-indicator {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 10px;
}

.stability-indicator.stable {
    background: #00ff41;
    color: #000;
}

.stability-indicator.warning {
    background: #ffaa00;
    color: #000;
}

.stability-indicator.danger {
    background: #ff0000;
    color: #fff;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 25px;
    border: 2px solid #00ff41;
    background: transparent;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn:hover {
    background: #00ff41;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.action-btn:active {
    transform: translateY(0);
}

.action-btn.danger {
    border-color: #ff0000;
    color: #ff0000;
}

.action-btn.danger:hover {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Profiles Section */
.profiles-section {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid #00ff41;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.profiles-section h2 {
    color: #00ff41;
    margin-bottom: 20px;
    text-align: center;
}

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

.profile-card {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-card:hover {
    border-color: #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.profile-card h4 {
    color: #00ff41;
    margin-bottom: 10px;
    font-size: 1em;
}

.profile-stats {
    font-size: 0.8em;
    color: #ccc;
    margin-bottom: 10px;
}

.profile-actions {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.profile-btn {
    padding: 5px 10px;
    border: 1px solid #00ff41;
    background: transparent;
    color: #00ff41;
    font-size: 0.8em;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    background: #00ff41;
    color: #000;
}

.profile-btn.delete {
    border-color: #ff0000;
    color: #ff0000;
}

.profile-btn.delete:hover {
    background: #ff0000;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .overclock-container {
        padding: 10px;
    }
    
    .overclock-container h1 {
        font-size: 2em;
    }
    
    .overclock-controls {
        grid-template-columns: 1fr;
    }
    
    .monitoring {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 200px;
    }
    
    .profiles-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for value changes */
.value-update {
    animation: valueUpdate 0.5s ease-in-out;
}

@keyframes valueUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Glitch effect for critical values */
.critical {
    animation: glitch 0.3s ease-in-out infinite;
}

@keyframes glitch {
    0% { text-shadow: 0 0 5px #ff0000; }
    25% { text-shadow: -2px 0 #ff0000, 2px 0 #00ff41; }
    50% { text-shadow: 2px 0 #ff0000, -2px 0 #00ff41; }
    75% { text-shadow: -2px 0 #00ff41, 2px 0 #ff0000; }
    100% { text-shadow: 0 0 5px #ff0000; }
} 
