* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #fff;
    --bg-color: #f5f5f5;
    --card-bg: #fff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.content {
    flex: 1;
    padding: 50px;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo i {
    font-size: 40px;
    color: var(--primary-color);
    margin-right: 10px;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}

.coming-soon h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin-bottom: 20px;
}

.coming-soon p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-color);
    opacity: 0.9;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(52, 152, 219, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0;
}

.subscribe {
    margin-bottom: 30px;
}

.subscribe h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.subscribe form {
    display: flex;
    gap: 10px;
}

.subscribe input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.subscribe button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.subscribe button:hover {
    background: #c0392b;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
}

/* QR Animation Section */
.qr-animation {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect x='10' y='10' width='30' height='30' fill='%23000'/%3E%3Crect x='60' y='10' width='30' height='30' fill='%23000'/%3E%3Crect x='10' y='60' width='30' height='30' fill='%23000'/%3E%3Crect x='20' y='20' width='10' height='10' fill='%23fff'/%3E%3Crect x='70' y='20' width='10' height='10' fill='%23fff'/%3E%3Crect x='20' y='70' width='10' height='10' fill='%23fff'/%3E%3Crect x='40' y='40' width='20' height='20' fill='%23000'/%3E%3Crect x='60' y='60' width='10' height='10' fill='%23000'/%3E%3Crect x='70' y='40' width='5' height='5' fill='%23000'/%3E%3Crect x='40' y='70' width='5' height='5' fill='%23000'/%3E%3C/svg%3E");
    background-size: contain;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.scan-line {
    position: absolute;
    width: 150px;
    height: 2px;
    background: #e74c3c;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
    box-shadow: 0 0 10px #e74c3c;
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% {
        top: 30%;
    }
    50% {
        top: 70%;
    }
    100% {
        top: 30%;
    }
}

.phone-outline {
    width: 180px;
    height: 320px;
    border: 10px solid #444;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: #222;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    overflow: hidden;
    position: relative;
}

.menu-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #f5f5f5, #fff);
    padding: 15px;
    transform: translateY(100%);
    animation: showMenu 4s 1s forwards infinite;
}

.menu-preview::before, .menu-preview::after {
    content: "";
    position: absolute;
    height: 10px;
    border-radius: 5px;
    background: #ddd;
}

.menu-preview::before {
    top: 30px;
    left: 20px;
    width: 70%;
}

.menu-preview::after {
    top: 50px;
    left: 20px;
    width: 40%;
}

@keyframes showMenu {
    0% {
        transform: translateY(100%);
    }
    20% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .container {
        flex-direction: column;
        max-width: 600px;
    }
    
    .content, .qr-animation {
        width: 100%;
    }
    
    .qr-animation {
        padding: 50px 20px;
        min-height: 400px;
    }
}

@media screen and (max-width: 600px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo i {
        font-size: 30px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .coming-soon h2 {
        font-size: 24px;
    }
    
    .features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature {
        min-width: 100%;
    }
    
    .subscribe form {
        flex-direction: column;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .scan-line {
        width: 120px;
    }
    
    .phone-outline {
        width: 150px;
        height: 270px;
    }
}
