.elec-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    overflow: hidden;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(30,30,30,1);
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    padding: 20px;
    max-width: 800px;
    width: 90%;
}

.slider-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-button {
    display: inline-block;
    padding: 15px 30px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slider-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .elec-slider-container {
        height: 60vh;
    }
    
    .slider-content h2 {
        font-size: 2em;
    }
    
    .slider-content p {
        font-size: 1em;
    }
    
    .slider-button {
        padding: 12px 24px;
        font-size: 1em;
    }
}
