body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: #f6f8fa;
    color: #222;
}

/* Header */
header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 42px;
    margin-left: 10px;
}

.logo span {
    font-size: 22px;
    font-weight: 700;
    color: #ff7c00;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    color: #444;
    transition: .3s;
}

nav a:hover {
    color: #ff7c00;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 550px;
}

.hero h1 {
    font-size: 38px;
    color: #ff7c00;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.hero-img {
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Button */
.btn-play img {
    width: 200px;
    margin-top: 20px;
}

/* Features */
#features {
    padding: 70px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.feature-box {
    background: #fff7ec;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    border-left: 5px solid #ff7c00;
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #ff7c00;
}

/* Screens */
.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.screen-box {
    background: #ddd;
    height: 220px;
    border-radius: 12px;
    text-align: center;
    line-height: 220px;
    font-size: 20px;
}

/* Section box */
.section-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    line-height: 1.9;
}

/* Contact */
.contact-box a {
    font-weight: bold;
    color: #ff7c00;
}

/* Footer */
footer {
    background: #ff7c00;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: white;
    margin: 0 10px;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-img {
        margin-bottom: 20px;
    }
}
