/* Very Simple Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f0f2f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Main Container */
.container {
    max-width: 1000px;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.header p {
    color: #666;
    font-size: 16px;
}

/* Progress */
.progress {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.step.completed .step-number {
    background: #28a745;
}

.step.current .step-number {
    background: #007bff;
}

.step-label {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

/* Phones Grid */
.phones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.phone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Phone Frame */
.phone-frame {
    width: 100%;
    max-width: 280px;
    height: 500px;
    border: 12px solid #1a1a1a;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #000;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 0 0 10px 10px;
    z-index: 10;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 10;
}

.phone-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
    display: block;
}

/* Phone Actions */
.phone-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
    max-width: 280px;
}

.action-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.report-btn {
    background: #dc3545;
    color: white;
}

.report-btn:hover {
    background: #c82333;
}

.next-btn {
    background: #28a745;
    color: white;
}

.next-btn:hover {
    background: #218838;
}

/* URL Box */
.url-box {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.url-box input {
    width: 100%;
    max-width: 600px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #f8f9fa;
    margin-bottom: 15px;
}

.primary-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
}

.primary-btn:hover {
    background: #0056b3;
}

.secondary-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
}

.secondary-btn:hover {
    background: #545b62;
}

/* Hide scrollbars */
html, body {
    overflow-x: hidden;
}

.phone-frame iframe {
    overflow: hidden !important;
}

/* Responsive */
@media (max-width: 768px) {
    .phones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 20px;
    }
    
    .phone-frame {
        height: 400px;
        max-width: 250px;
    }
    
    .progress {
        gap: 20px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}