* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    background: #050505;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    overflow-x: hidden;
}

.stars-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    z-index: -1;
}

.container { width: 100%; max-width: 450px; z-index: 10; }

.deploy-card, .logs-card {
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.header { text-align: center; margin-bottom: 25px; }
.icon-rocket { font-size: 40px; margin-bottom: 10px; }
.header h2 { font-size: 24px; letter-spacing: 1px; }
.header p { font-size: 10px; color: #4facfe; font-weight: bold; margin-top: 5px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; color: #4facfe; font-weight: bold; margin-bottom: 8px; }

input[type="text"] {
    width: 100%; padding: 14px; background: #000; border: 1px solid #222;
    border-radius: 12px; color: white; outline: none; transition: 0.3s;
}
input[type="text"]:focus { border-color: #4facfe; box-shadow: 0 0 10px rgba(79, 172, 254, 0.2); }

.upload-area {
    border: 2px dashed #4facfe; padding: 25px; border-radius: 12px;
    text-align: center; cursor: pointer; background: rgba(79, 172, 254, 0.05);
}

#deployBtn {
    width: 100%; padding: 16px; background: linear-gradient(90deg, #4facfe, #00f2fe);
    border: none; border-radius: 12px; color: white; font-weight: bold;
    font-size: 16px; cursor: pointer; transition: 0.3s;
}
#deployBtn:disabled { filter: grayscale(1); cursor: not-allowed; }

.cs-button {
    display: block; text-align: center; margin-top: 15px; color: #888;
    text-decoration: none; font-size: 12px;
}

/* LOGS STYLING */
.logs-card h3 { font-size: 14px; margin-bottom: 15px; color: #4facfe; }
.log-item {
    background: #000; padding: 12px; border-radius: 10px;
    margin-bottom: 10px; border-left: 3px solid #00f2fe;
}
.log-item p { font-size: 13px; color: #fff; margin-bottom: 4px; }
.log-item a { color: #00f2fe; font-size: 11px; text-decoration: none; word-break: break-all; }
