body {
    margin: 0;
    background: #000;
    font-family: Arial, sans-serif;
    color: white;
}

header {
    background: #000;
    padding: 20px;
    text-align: center;
}

.logo {
    height: 80px;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(180deg, #000, #111);
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
}

.sub {
    font-size: 20px;
    color: #ccc;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta {
    display: inline-block;
    background: #ff5a1f;
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 30px;
    font-weight: bold;
    text-decoration: none;
}

.cta.dark {
    background: white;
    color: #000;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 80px 20px;
    background: #111;
}

.feature {
    width: 300px;
    margin: 20px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #ff5a1f;
}

.feature h2 {
    color: #ff5a1f;
}

.contact {
    text-align: center;
    padding: 80px 20px;
    background: #000;
}

footer {
    text-align: center;
    padding: 20px;
    color: #666;
}
/* Interactive Football Experience Section */
.interactive-experience {
    background: #111;
    padding: 80px 20px;
    text-align: center;
    color: white;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.interactive-experience h2 {
    font-size: 36px;
    color: #ff5a1f;
    font-weight: 700;
    margin-bottom: 20px;
}

.exp-intro {
    max-width: 850px;
    margin: 0 auto 40px auto;
    font-size: 20px;
    color: #ddd;
}

.interactive-experience h3 {
    font-size: 26px;
    color: #ff5a1f;
    margin-top: 40px;
}

.exp-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 600px;
}

.exp-list li {
    font-size: 18px;
    padding: 6px 0;
    color: #ccc;
}

.exp-btn {
    margin-top: 40px;
    background: #ff5a1f;
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}
/* Video Demo Section */
.video-demo {
    background: #000;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.video-demo h2 {
    font-size: 36px;
    color: #ff5a1f;
    margin-bottom: 30px;
    font-weight: 700;
}

.demo-video {
    width: 90%;
    max-width: 950px;
    border-radius: 12px;
    border: 3px solid #ff5a1f;
}
/* ===== SmartNet Popup Form ===== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
}

.modal-box {
    background: #111;
    width: 90%;
    max-width: 700px;
    margin: 80px auto;
    padding: 25px;
    border: 2px solid #ff5a1f;
    box-shadow: 0 0 25px rgba(255, 90, 31, 0.5);
    border-radius: 14px;
    color: #fff;
    animation: fadeIn 0.3s ease-out;
}

.close-btn {
    float: right;
    font-size: 30px;
    cursor: pointer;
    color: #ff5a1f;
}

.modal-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left;
}

.modal-box label {
    color: #ff5a1f;
    font-size: 16px;
    margin-top: 10px;
    display: block;
}

.modal-box input,
.modal-box textarea {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
}

.popup-btn {
    background: #ff5a1f;
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 18px;
}

.popup-btn:hover {
    background: #ff743c;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
