/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #000;
}

.header a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
}

.header a:hover {
    color: #ff3d00;
}

/* HERO */
.hero {
    height: 80vh;
    background: url('image3.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 600px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #ff3d00;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
}

/* MEMBERSHIP PLANS */
.plans {
    padding: 60px 20px;
    text-align: center;
    background: #111;
}

.plan-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.plan {
    background: #222;
    padding: 25px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.plan.featured {
    border: 2px solid #ff3d00;
    transform: scale(1.05);
}

.plan .price {
    font-size: 28px;
    margin: 10px 0;
    color: #ff3d00;
}

.plan button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff3d00;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* VIDEO GRID */
.video-grid {
    padding: 40px 20px;
    text-align: center;
}

.video-grid h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.video-card {
    background: #222;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.video-card:hover {
    transform: scale(1.03);
}

.video-card img,
.video-card video {
    width: 100%;
    border-radius: 8px;
}

/* PAGINATION */
.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination button {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background: #333;
    color: #fff;
}

.pagination button.active {
    background: #ff3d00;
}

/* CHAT SECTION */
.chat-section {
    padding: 60px 20px;
    background: #222;
    text-align: center;
}

.chat-box {
    max-width: 600px;
    margin: auto;
    background: #333;
    padding: 20px;
    border-radius: 10px;
}

.chat-box textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    border-radius: 6px;
    border: none;
    resize: none;
    font-size: 16px;
}

.chat-box button {
    margin-top: 15px;
    padding: 12px 25px;
    background: #ff3d00;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* CONTACT SECTION */
.contact {
    padding: 60px 20px;
    text-align: center;
    background: #000;
}

.contact .telegram {
    font-size: 22px;
    margin-top: 10px;
    color: #00aaff;
    font-weight: bold;
}

/* PAYMENT PAGE */
.payment-section {
    padding: 60px 20px;
    text-align: center;
    background: #111;
    color: #fff;
}

.payment-info {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.payment-plans {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.payment-card {
    background: #222;
    padding: 25px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.payment-card .price {
    font-size: 26px;
    margin: 10px 0;
    color: #ff3d00;
}

.contact-admin-box {
    margin-top: 30px;
}

.contact-admin-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff3d00;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
}

.contact-admin-btn:hover {
    background: #ff5722;
}
