/* ===== Global Styles ===== */
:root {
    --primary: #ff4757;
    --primary-dark: #e84118;
    --secondary: #2f3542;
    --secondary-light: #57606f;
    --dark: #1e272e;
    --dark-light: #2f3640;
    --light: #f1f2f6;
    --light-dark: #dfe4ea;
    --success: #2ed573;
    --success-dark: #27ae60;
    --warning: #ffa502;
    --warning-dark: #e67e22;
    --danger: #ff4757;
    --danger-dark: #e84118;
    --info: #1e90ff;
    --info-dark: #187bcd;
    --admin-primary: #4a00e0;
    --admin-secondary: #8e2de2;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('../fonts/Rajdhani-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('../fonts/Rajdhani-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: var(--light);
    line-height: 1.6;
    background-image: url('../img/bg-pattern.png');
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
	cursor: url('https://snipp.ru/demo/712/pointer-1.cur') 4 1, pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== Header Styles ===== */
.site-header {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo .white {
    color: white;
}

.logo .red {
    color: var(--primary);
}

.main-nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--light);
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--dark);
    z-index: 1000;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: var(--light);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
}

/* ===== Main Content Styles ===== */
main {
    flex: 1;
    padding: 30px 0;
}

.page-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--danger));
}

/* ===== Minecraft Page Styles ===== */
.minecraft-theme .page-title {
    color: #4CAF50;
}

.donate-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.donate-item {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    border: 3px solid var(--secondary-light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.donate-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: rotate(30deg);
    pointer-events: none;
}

.donate-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.donate-title {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-count {
    background-color: var(--primary);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-left: 10px;
    font-weight: bold;
}

.donate-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin: 20px 0;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
}

.donate-timer {
    font-size: 22px;
    text-align: center;
    color: var(--warning);
    font-weight: bold;
    margin: 20px 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.donate-timer.ready {
    color: var(--success);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.minecraft-form {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    border: 3px solid var(--secondary-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.minecraft-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--danger));
}

.minecraft-form h2 {
    color: var(--light);
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-dark);
    font-size: 16px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 2px solid var(--secondary-light);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.3);
}

.submit-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.form-timer {
    background-color: var(--secondary);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
}

.submit-btn {
    background: linear-gradient(to right, var(--primary), var(--danger));
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--danger), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.submit-btn:disabled {
    background: var(--secondary-light);
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ===== Footer Styles ===== */
.site-footer {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-text {
    color: var(--light-dark);
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--light-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-link i {
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.youtube {
    background: linear-gradient(to right, #ff0000, #ff5e57);
}

.social-icon.steam {
    background: linear-gradient(to right, #1b2838, #2a475e);
}

.social-icon.vk {
    background: linear-gradient(to right, #4a76a8, #5b88bd);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: var(--light-dark);
    font-size: 14px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .main-nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .donate-container {
        grid-template-columns: 1fr;
    }
    
    .minecraft-form {
        padding: 20px;
    }
    
    .submit-container {
        flex-direction: column;
    }
    
    .submit-btn {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 15px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .donate-item {
        padding: 20px;
    }
    
    .donate-title {
        font-size: 20px;
        flex-direction: column;
    }
    
    .donate-count {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== Animation Keyframes ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-info { color: var(--info); }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.hidden { display: none; }
/* ===== SAMP Page Styles ===== */
.samp-theme {
    background: url('../img/samp-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.samp-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.samp-theme .container {
    position: relative;
    z-index: 1;
}

.samp-theme .page-title {
    color: #f39c12;
}

.ref-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #f39c12;
}

.counter-box {
    text-align: center;
    padding: 10px 20px;
    background: rgba(243, 156, 18, 0.2);
    border-radius: 5px;
}

.counter-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #f39c12;
}

.counter-label {
    font-size: 14px;
    color: #ddd;
}

.promo-code {
    background: #7d0c00;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
}

.server-item {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #3498db;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.server-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #f39c12;
}

.server-title {
    color: #3498db;
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.online {
    font-size: 18px;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
}

.server-info {
    display: flex;
    justify-content: space-between;
}

.server-timer, .server-slots {
    flex: 1;
}

.timer-label, .slots-label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

.timer {
    font-size: 24px;
    font-weight: bold;
    color: #f39c12;
    font-family: 'Orbitron', sans-serif;
}
.timer228 {
    font-size: 24px;
    font-weight: bold;
    color: #f39c12;
	margin-left: 20%;
}

.timer.ready {
    color: #2ecc71;
    animation: pulse 1.5s infinite;
}

.slots-available {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
	margin-left: 25%;
}

.samp-form {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #e74c3c;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    margin: 40px auto 0;
}

.samp-form h2 {
    color: #e74c3c;
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.form-check {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.form-check input {
    margin-right: 10px;
}

.form-check label {
    color: #ddd;
    font-size: 14px;
}

.neco {
    color: #e74c3c;
    font-weight: bold;
}

.important-note {
    background: rgba(231, 76, 60, 0.2);
    border-left: 4px solid #e74c3c;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-note i {
    color: #e74c3c;
    font-size: 24px;
}

.important-note p {
    margin: 0;
    color: white;
}

/* ===== Developments Page Styles ===== */
.developments-theme {
    background: #1a1a1a;
}

.projects-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.projects-panel {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.games-panel {
    border: 2px solid #9b59b6;
}

.scripts-panel {
    border: 2px solid #3498db;
}

.panel-title {
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title i {
    color: inherit;
}

.games-panel .panel-title {
    color: #9b59b6;
}

.scripts-panel .panel-title {
    color: #3498db;
}

.project-item, .script-item {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.project-item:hover, .script-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-image, .script-image {
    height: 180px;
    overflow: hidden;
}

.project-image img, .script-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-item:hover .project-image img, 
.script-item:hover .script-image img {
    transform: scale(1.05);
}

.project-content, .script-content {
    padding: 15px;
}

.project-title {
    color: #9b59b6;
    font-size: 20px;
    margin-bottom: 10px;
}

.script-title {
    color: #3498db;
    font-size: 20px;
    margin-bottom: 10px;
}

.project-description {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.project-buttons, .script-buttons {
    display: flex;
    gap: 10px;
}

.project-btn, .script-btn {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.overview-btn {
    background: rgba(155, 89, 182, 0.3);
    color: #9b59b6;
    border: 1px solid #9b59b6;
}

.overview-btn:hover {
    background: #9b59b6;
    color: white;
}

.download-btn {
    background: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.download-btn:hover {
    background: #2ecc71;
    color: white;
}

.script-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.project-news, .script-news {
    margin-top: 30px;
}

.news-title {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
}

.news-date {
    color: #f39c12;
    font-size: 12px;
    min-width: 70px;
}

.news-text {
    color: #ddd;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .projects-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .server-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .server-timer, .server-slots {
        text-align: center;
    }
    
    .ref-counter {
        flex-direction: column;
        gap: 15px;
    }
    
    .project-buttons, .script-buttons {
        flex-direction: column;
    }
}
/* ===== Main Page Styles ===== */
.main-page {
    background-color: #1a1a1a;
    color: #f1f2f6;
    padding: 30px 0;
}

.top-section {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.video-panel, .news-panel {
    flex: 1;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.panel-header {
    background: linear-gradient(to right, #ff4757, #000000);
    padding: 15px 20px;
    color: white;
}

.panel-header h2 {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-header i {
    font-size: 24px;
}

.video-container {
    padding: 20px;
}

.video-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 5px;
}

.video-footer {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

.video-footer i {
    color: #ff4757;
    margin-right: 5px;
}

.news-list {
    padding: 15px;
}

.news-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
}

.news-date {
    color: #f39c12;
    min-width: 120px;
    font-weight: 500;
}

.news-text {
    color: #f1f2f6;
}

.about-panel {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-content {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.features-panel {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-section, .philosophy-section {
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.feature-item {
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #ff4757;
}

.feature-item h4 {
    color: #f39c12;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item ul {
    padding-left: 20px;
    margin: 10px 0;
}

.feature-item li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
}

.feature-item li::before {
    content: "•";
    color: #ff4757;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.philosophy-section ul {
    padding-left: 20px;
}

.philosophy-section li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
}

.join-section {
    background: rgba(255, 71, 87, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 3px solid #2ecc71;
}

.slogan {
    text-align: center;
    font-style: italic;
    margin: 25px 0;
    font-size: 18px;
}

.slogan .highlight {
    color: #f39c12;
    font-weight: bold;
    margin-top: 10px;
}

.ps-note {
    font-size: 14px;
    color: #bbb;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.slogans-panel {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.slogan-item {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(46, 204, 113, 0.2));
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slogan-item h3 {
    margin: 0;
    color: #f1f2f6;
    font-weight: 500;
}

.social-panel {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-buttons {
    display: flex;
    gap: 15px;
    padding: 20px;
    flex-wrap: wrap;
}

.social-btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn i {
    font-size: 20px;
}

.social-btn.youtube {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid #ff0000;
}

.social-btn.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-btn.steam {
    background: rgba(27, 40, 56, 0.2);
    color: #1b2838;
    border: 1px solid #1b2838;
}

.social-btn.steam:hover {
    background: #1b2838;
    color: white;
}

.social-btn.vk {
    background: rgba(74, 118, 168, 0.2);
    color: #4a76a8;
    border: 1px solid #4a76a8;
}

.social-btn.vk:hover {
    background: #4a76a8;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .top-section {
        flex-direction: column;
    }
    
    .video-container iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .video-container iframe {
        height: 300px;
    }
    
    .slogans-panel {
        flex-direction: column;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
    }
}