/* ОСНОВНЫЕ СТИЛИ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #e0e0e0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ШАПКА САЙТА */
.main-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.main-nav {
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-list a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* НАВИГАЦИЯ ПО ОБЪЕДИНЕНИЯМ */
.unions-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
    background: rgba(20, 20, 30, 0.8);
    margin: 20px auto;
    max-width: 800px;
    border-radius: 15px;
    margin-top: 100px;
}

/* ОБЩИЕ КНОПКИ */
.unions-nav a {
    padding: 15px 40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    color: #000; /* Единый черный цвет текста */
}

/* КНОПКИ ОБЪЕДИНЕНИЙ */
.antihype-btn {
    background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
}

.crew52-btn {
    background: linear-gradient(135deg, #52d45c 0%, #2aa833 100%);
}

.viperr-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
}

/* ЭФФЕКТЫ ПРИ НАВЕДЕНИИ */
.antihype-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
    border-color: #ffcc00;
}

.crew52-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(82, 212, 92, 0.4);
    border-color: #52d45c;
}

.viperr-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
    border-color: #8a2be2;
}

/* СТИЛИ СЕКЦИЙ ОБЪЕДИНЕНИЙ */
.crew-section {
    padding: 50px 0;
    margin-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto 100px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.antihype-title {
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.crew52-title {
    color: #52d45c;
    text-shadow: 0 0 10px rgba(82, 212, 92, 0.3);
}

.viperr-title {
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.antihype-logo, .viperr-logo {
    text-align: center;
    margin: 40px auto 50px;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    border: 3px solid #333;
}

.antihype-logo {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 153, 0, 0.1));
}

.viperr-logo {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.1));
}

.logo-text {
    font-size: 4em;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.antihype-logo .logo-text {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
}

.viperr-logo .logo-text {
    background: linear-gradient(135deg, #9370db, #);
}

.logo-subtitle {
    color: #aaa;
    margin-top: 15px;
    font-size: 20px;
    letter-spacing: 3px;
}

.antihype-description, .crew-description {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid;
    border-right: 4px solid;
    text-align: center;
    font-size: 1.1em;
    position: relative;
}

.antihype-description {
    border-color: #ffcc00;
}

.crew-description {
    border-color: #52d45c;
}

.viperr-description {
    border-color: #8a2be2;
}
.rappers-duo {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 1024px) {
    .rappers-duo {
        flex-direction: column;
        max-width: 700px;
    }
}

.rapper-card, .rapper-card-antihype {
    flex: 1;
    background: rgba(30, 30, 40, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: 3px solid transparent;
}

.rapper-card:hover, .rapper-card-antihype:hover {
    transform: translateY(-10px);
}
.zamay-card {
    border-color: #ff9900;
}

.slava-card {
    border-color: #cc3300;
}

.alblak-card {
    border-color: #52d45c;
}

.friendly-card {
    border-color: #4568dc;
}

.kai-angel-card {
    border-color: #9370db;
}

.nine-mice-card {
    border-color: #ff69b4;
}

.rapper-header {
    padding: 25px;
    text-align: center;
    border-bottom: 2px solid transparent;
}

.zamay-header {
    background: linear-gradient(135deg, #ff9900 0%, #cc6600 100%);
    border-color: #ff9900;
}

.slava-header {
    background: linear-gradient(135deg, #cc3300 0%, #990000 100%);
    border-color: #cc3300;
}

.alblak-header {
    background: linear-gradient(135deg, #52d45c 0%, #2aa833 100%);
    border-color: #52d45c;
}

.friendly-header {
    background: linear-gradient(135deg, #4568dc 0%, #b06ab3 100%);
    border-color: #4568dc;
}

.kai-angel-header {
    background: linear-gradient(135deg, #9370db 0%, #7b68ee 100%);
    border-color: #9370db;
}

.nine-mice-header {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-color: #ff69b4;
}


.rapper-name {
    font-size: 1.8em;
    margin-bottom: 5px;
    color: #000;
}

.real-name {
    font-size: 1em;
    opacity: 0.9;
    font-style: italic;
    color: #000;
}

.rapper-role {
    display: block;
    font-size: 0.9em;
    margin-top: 8px;
    opacity: 0.9;
    color: #000;
}

.zamay-name,
.slava-name,
.alblak-name,
.friendly-name,
.kai-angel-name,
.nine-mice-name {
    color: #000;
}

.rapper-content {
    padding: 25px;
}

.rapper-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 3px solid;
}

.zamay-card .rapper-image {
    border-color: #ffcc00;
}

.slava-card .rapper-image {
    border-color: #cc3300;
}

.alblak-card .rapper-image {
    border-color: #52d45c;
}

.friendly-card .rapper-image {
    border-color: #4568dc;
}

.kai-angel-card .rapper-image {
    border-color: #9370db;
}

.nine-mice-card .rapper-image {
    border-color: #ff69b4;
}

.rapper-bio {
    margin-bottom: 20px;
    line-height: 1.7;
}

.rapper-bio p {
    margin-bottom: 15px;
}

.rapper-bio strong {
    color: #ffcc00;
}

.rapper-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid;
}

.zamay-card .rapper-details {
    border-color: #ffcc00;
}

.slava-card .rapper-details {
    border-color: #cc3300;
}

.alblak-card .rapper-details {
    border-color: #52d45c;
}

.friendly-card .rapper-details {
    border-color: #4568dc;
}

.kai-angel-card .rapper-details {
    border-color: #8a2be2;
}

.nine-mice-card .rapper-details {
    border-color: #8a2be2;
}

.detail-item {
    margin-bottom: 10px;
    color: #ccc;
}

.detail-item strong {
    color: inherit;
}


@media (max-width: 1024px) {
    .rappers-duo {
        flex-direction: column;
        max-width: 700px;
    }
    
    .unions-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .antihype-btn, .crew52-btn, .viperr-btn {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .logo-text {
        font-size: 2.5em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .rapper-name {
        font-size: 1.5em;
    }
    
    .antihype-btn, .crew52-btn, .viperr-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .unions-nav {
        margin-top: 80px;
        padding: 20px 0;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .rapper-content {
        padding: 15px;
    }
    
    .rapper-header {
        padding: 15px;
    }
    
    .logo-text {
        font-size: 2em;
        letter-spacing: 3px;
    }
    
    .unions-nav {
        margin-top: 60px;
    }
}
        .donate-section {
            padding: 100px 0 80px;
            max-width: 800px;
            margin: 0 auto;
            min-height: calc(100vh - 200px);
        }

        .donate-title {
            text-align: center;
            color: #ff3300;
            font-size: 2.8em;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(255, 51, 0, 0.3);
            padding-bottom: 15px;
            border-bottom: 3px solid #ff3300;
        }

        .donate-description {
            text-align: center;
            color: #ccc;
            font-size: 1.1em;
            margin-bottom: 40px;
            line-height: 1.7;
            background: rgba(30, 30, 40, 0.8);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #444;
        }

        .donate-form {
            background: rgba(25, 25, 35, 0.95);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            border: 2px solid #444;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-label {
            display: block;
            color: #ffcc00;
            font-size: 1.1em;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #444;
            border-radius: 10px;
            color: #fff;
            font-size: 1em;
            transition: all 0.3s ease;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: #ff3300;
            box-shadow: 0 0 10px rgba(255, 51, 0, 0.3);
        }

        .form-input::placeholder {
            color: #888;
        }

        .card-input-group {
            position: relative;
        }

        .card-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #ffcc00;
            font-size: 1.2em;
        }

        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }

        .radio-option {
            flex: 1;
            min-width: 120px;
        }

        .radio-input {
            display: none;
        }

        .radio-label {
            display: block;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid #444;
            border-radius: 10px;
            text-align: center;
            color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .radio-input:checked + .radio-label {
            background: rgba(255, 51, 0, 0.2);
            border-color: #ff3300;
            color: #ffcc00;
            box-shadow: 0 0 15px rgba(255, 51, 0, 0.3);
        }

        .amount-input-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .amount-input {
            flex: 1;
        }

        .currency {
            color: #ffcc00;
            font-size: 1.2em;
            font-weight: bold;
            min-width: 40px;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #ff3300 0%, #cc2900 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.2em;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 51, 0, 0.4);
            background: linear-gradient(135deg, #ff4400 0%, #dd3300 100%);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .required {
            color: #ff3300;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Валидация */
        .form-input:invalid:not(:placeholder-shown),
        .form-select:invalid {
            border-color: #ff4444;
            animation: shake 0.5s ease-in-out;
        }

        .form-input:valid:not(:placeholder-shown),
        .form-select:valid {
            border-color: #52d45c;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: rgba(30, 30, 40, 0.95);
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            text-align: center;
            border: 2px solid #ff3300;
            box-shadow: 0 0 40px rgba(255, 51, 0, 0.4);
        }

        .modal-title {
            color: #ffcc00;
            font-size: 2em;
            margin-bottom: 20px;
        }

        .modal-text {
            color: #ccc;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .modal-close {
            background: #ff3300;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.1em;
        }

        .success-icon {
            color: #52d45c;
            font-size: 4em;
            margin-bottom: 20px;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .donate-section {
                padding: 80px 20px 40px;
            }
            
            .donate-form {
                padding: 25px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .donate-title {
                font-size: 2em;
            }
            
            .radio-group {
                flex-direction: column;
            }
            
            .radio-option {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .donate-form {
                padding: 20px;
            }
            
            .form-input, .form-select, .form-textarea {
                padding: 12px;
            }
            
            .submit-btn {
                padding: 15px;
            }
        }
                .contacts-section {
            padding: 120px 0 80px;
            max-width: 1200px;
            margin: 0 auto;
            min-height: calc(100vh - 200px);
        }

        .contacts-title {
            text-align: center;
            color: #ff3300;
            font-size: 2.8em;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(255, 51, 0, 0.3);
            padding-bottom: 15px;
            border-bottom: 3px solid #ff3300;
        }

        .contacts-description {
            text-align: center;
            color: #ccc;
            font-size: 1.2em;
            margin-bottom: 60px;
            line-height: 1.7;
            background: rgba(30, 30, 40, 0.8);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #444;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto 60px;
        }

        .contact-card {
            background: rgba(25, 25, 35, 0.95);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid #444;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            border-color: #ff3300;
            box-shadow: 0 15px 40px rgba(255, 51, 0, 0.3);
        }

        .contact-icon {
            font-size: 3em;
            margin-bottom: 25px;
            display: block;
        }

        .phone-icon { color: #52d45c; }
        .telegram-icon { color: #0088cc; }
        .vk-icon { color: #4a76a8; }

        .contact-type {
            color: #ffcc00;
            font-size: 1.3em;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
        }

        .contact-info {
            color: #fff;
            font-size: 1.4em;
            margin-bottom: 25px;
            word-break: break-all;
        }

        .contact-link {
            display: inline-block;
            padding: 12px 30px;
            background: rgba(255, 51, 0, 0.2);
            color: #ffcc00;
            text-decoration: none;
            border-radius: 25px;
            border: 2px solid #ff3300;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9em;
        }

        .contact-link:hover {
            background: #ff3300;
            color: #000;
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255, 51, 0, 0.4);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            text-decoration: none;
            color: #ccc;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            min-width: 200px;
        }

        .social-link:hover {
            background: rgba(255, 51, 0, 0.1);
            color: #ffcc00;
            border-color: #ff3300;
            transform: translateY(-5px);
        }

        .social-icon {
            font-size: 1.5em;
            min-width: 30px;
        }

        .social-text {
            text-align: left;
        }

        .social-name {
            font-weight: bold;
            display: block;
            color: #fff;
        }

        .social-username {
            font-size: 0.9em;
            opacity: 0.8;
        }

        .work-hours {
            max-width: 800px;
            margin: 60px auto 0;
            background: rgba(30, 30, 40, 0.8);
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid #ff3300;
            border-right: 4px solid #ff3300;
            text-align: center;
        }

        .work-hours h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.5em;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .work-hours p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .copy-btn {
            margin-top: 15px;
            padding: 8px 20px;
            background: rgba(82, 212, 92, 0.2);
            color: #52d45c;
            border: 1px solid #52d45c;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9em;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: #52d45c;
            color: #000;
        }

        .copy-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #52d45c;
            color: #000;
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: bold;
            z-index: 1000;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }

        .copy-notification.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .contacts-section {
                padding: 100px 20px 40px;
            }
            
            .contacts-title {
                font-size: 2em;
            }
            
            .contacts-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .contact-card {
                padding: 30px 20px;
            }
            
            .social-links {
                flex-direction: column;
                align-items: center;
            }
            
            .social-link {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .contacts-title {
                font-size: 1.8em;
            }
            
            .contact-info {
                font-size: 1.2em;
            }
            
            .contact-link {
                padding: 10px 20px;
                font-size: 0.8em;
            }
        }