/* ===============================
   GLOBAL
=================================*/

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f4f6;
    color: #222;
}

.wrapper {
    padding: 70px 20px;
}

.title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* ===============================
   TOP NAV BUTTONS
=================================*/

.top-buttons {
    text-align: center;
    margin-bottom: 45px;
}

.top-buttons a {
    display: inline-block;
    background: #ffffff;
    padding: 10px 24px;
    margin: 6px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.top-buttons a:hover {
    background: #f26522;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===============================
   MAIN CARD
=================================*/

.card {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* ===============================
   VIDEO
=================================*/

.video-box {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.video-box iframe {
    width: 100%;
    height: 520px;
    border: none;
}

/* ===============================
   SEO CONTENT
=================================*/

.content {
    line-height: 1.9;
    font-size: 17px;
}

.content h2 {
    margin-top: 40px;
    font-size: 22px;
    font-weight: 700;
}

.content ul {
    margin-top: 20px;
    padding-left: 20px;
}

.content li {
    margin-bottom: 10px;
}

.highlight {
    color: #f26522;
    font-weight: 600;
}

/* ===============================
   SOCIAL SECTION
=================================*/

.social-section {
    text-align: center;
    margin-top: 60px;
}

.social-section h2 {
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

/* Platform Colors */

.instagram { background: #E1306C; }
.youtube { background: #FF0000; }
.facebook { background: #1877F2; }
.tiktok { background: #000000; }
.linkedin { background: #0A66C2; }
.whatsapp { background: #25D366; }

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 992px) {
    .video-box iframe {
        height: 420px;
    }
}

@media (max-width: 768px) {

    .wrapper {
        padding: 40px 15px;
    }

    .title {
        font-size: 24px;
    }

    .card {
        padding: 25px;
        border-radius: 14px;
    }

    .video-box iframe {
        height: 250px;
    }

    .top-buttons a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .content {
        font-size: 15px;
    }
}

/* Mobil üçün sosial düymələr 3-3 düzülüş */
@media (max-width: 768px) {

    .social-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        justify-items: center;
    }

    .social-btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 10px 0;
    }

}