
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #000000);
    color: #f0f0f0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    color: #ff3333;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

a {
    color: #ff6666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: #ff3333;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
    display: inline-block;
}

header {
    margin-bottom: 30px;
}


.site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.logo {
    font-size: 2.5rem;
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.header-text h1 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    border: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 500;
    margin-top: 5px;
    letter-spacing: 3px;
    word-spacing: 5px;
}

.main-container {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.about-section {
    max-width: 900px;
    margin: 0 auto;
}

ul {
    list-style-type: none;
    margin-bottom: 30px;
}

ul li {
    margin-bottom: 15px;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

ul li i {
    margin-right: 15px;
    color: #ff3333;
    min-width: 20px;
    text-align: center;
}

.features-list, .services-list {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.contact-section {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff3333;
}

footer {
    margin-top: 30px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .sidebar {
        flex-direction: row;
        justify-content: space-between;
    }
}

.social-card {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    text-align: center;
    margin-bottom: 15px;
}

.card-icon i {
    color: #ff3333;
}

.card-content {
    flex: 1;
}

.card-content a {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.card-content p {
    font-size: 0.9rem;
    color: #cccccc;
}

.telegram-chanel .card-icon i {
    color: #0088cc;
}

.yotube-chanel .card-icon i {
    color: #ff0000;
}

.tiktok-chanel .card-icon i {
    color: #00f2ea;
}

.btn {
    display: inline-block;
    background-color: #ff3333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    
    .main-container {
        padding: 20px;
    }
    
    .social-card {
        margin-bottom: 20px;
    }
}
