/* General Styles */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0f0f0f;
    scroll-behavior: smooth;
}

/* Header Section */
header {
    background: #1a1a1a;
    border-bottom: 3px solid #e50914;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 3.5rem;
    margin: 0;
    letter-spacing: 6px;
    text-transform: uppercase;
}

header p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e50914;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Main Content */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section {
    margin-bottom: 100px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.section p {
    font-size: 1.15rem;
    color: #bbbbbb;
    max-width: 850px;
    margin: 0 auto 40px auto;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.equipment-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
    transition: transform 0.4s ease;
}

.equipment-img:hover {
    transform: translateY(-10px);
}

.main-tech-img {
    height: 500px;
}

/* Platform Icons */
.platform-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.platform-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    width: 150px;
    transition: background 0.3s;
}

.platform-card:hover {
    background: #252525;
}

.platform-card svg {
    margin-bottom: 15px;
}

.platform-name {
    font-weight: bold; 
    color: #fff;
}

/* Replay Info Box */
.replay-box {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-left: 5px solid #e50914;
    padding: 30px;
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
    border-radius: 0 15px 15px 0;
}

.replay-box h3 {
    margin-top: 0;
    color: #e50914;
    font-size: 1.5rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 60px 20px;
    background: #0a0a0a;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #222;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    header h1 { font-size: 2.5rem; }
    .section h2 { font-size: 2rem; }
    .platform-container { gap: 20px; }
}