* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0a0a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Верхнее меню */
.header {
    background-color: rgba(10, 10, 26, 0.9);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a4a;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #6c5ce7;
    display: flex;
    align-items: center;
}

.logo span {
    color: #00cec9;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #6c5ce7;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #6c5ce7;
}

.nav-menu a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 2px 0;
    transition: 0.3s;
}

/* Анимация для мобильного меню */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Герой секция */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 26, 0.8), rgba(26, 26, 58, 0.8)), url('https://artdra.pro/storage/image/background1.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
	justify-content: top;
    align-items: right;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
    color: #b2bec3;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0.5rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

/* Секция о монете */
.about {
    padding: 4rem 2rem;
    background-color: #0f0f23;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.container a{
    text-decoration : none;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #6c5ce7;
}

/* Полноэкранная карусель Events */
.events-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #0a0a1a;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.event-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.event-content {
    max-width: 1200px;
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.event-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.event-slide h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: bold;
    line-height: 1.2;
}

.event-slide p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

/* Новые цвета для event-слайдов */
.slide-1 {
    background: linear-gradient(135deg, #c5c6ca, #c5c6ca);
}

.slide-2 {
    background: linear-gradient(135deg, #eeeff3, #eeeff3);
}

.slide-3 {
    background: linear-gradient(135deg, #fd79a8, #ff9dbb);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 2rem;
}

.carousel-btn.next {
    right: 2rem;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.3);
}

/* Социальные иконки (обычные) */
.social-icons {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 1.5rem 0;
}

.social-icons li {
    margin: 0 1rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* Социальная панель */
.social-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 7, 17, 0.9);
    padding: 0.8rem 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-top: 1px solid #2a2a4a;
    transition: transform 0.3s ease;
}

.social-bar.hidden {
    transform: translateY(100%);
}

.social-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-bar-icons {
    display: flex;
    list-style: none;
}

.social-bar-icons li {
    margin: 0 1rem;
}

.social-bar-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    transition: transform 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.social-bar-icons a:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* Футер */
.footer {
    background-color: #070711;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    text-align: left;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: #6c5ce7;
    margin-bottom: 1rem;
}

.footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
}

.footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6c5ce7;
}

.copyright {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2a2a4a;
    color: #b2bec3;
    width: 100%;
}

br {
    margin: 2px;
}

/* Галерея */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Основной большой кружок */
.main-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.photo-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-container:hover {
    transform: scale(1.05);
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-container:hover img {
    transform: scale(1.1);
}

.caption {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.caption a {
    color: #fff;
    text-decoration: none;
}

/* Миниатюры */
.thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.thumbnail-item .photo-container {
    width: 100px;
    height: 100px;
    border-width: 3px;
}

.thumbnail-item .caption {
    font-size: 14px;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    display: block;
    margin: 60px auto;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ccc;
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Дорожная карта - вертикальный таймлайн */
.roadmap-timeline {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #0a0a1a, #0f0f23);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #6c5ce7;
    position: relative;
	align-items: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #6c5ce7, #00cec9);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    left: 50%;
}

.timeline-content {
    background: rgba(15, 15, 35, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid #2a2a4a;
    position: relative;
    width: 100%;
    max-width: 500px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-date {
    font-weight: bold;
    color: #6c5ce7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.timeline-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #6c5ce7, #00cec9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.timeline-item:nth-child(even) .timeline-icon {
    right: auto;
    left: -20px;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.timeline-content p {
    color: #b2bec3;
    line-height: 1.6;
}

/* Секция партнеров */
.partners {
    padding: 5rem 2rem;
    background-color: #0f0f23;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: rgba(15, 15, 35, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid #2a2a4a;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.2);
}

.partner-image {
    height: 200px;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-image img {
    transform: scale(1.1);
}

.partner-info {
    padding: 1.5rem;
    text-align: center;
}
.partner-info a{
    text-decoration : none;
}

.partner-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.partner-info p {
    color: #b2bec3;
    font-size: 1rem;
	text-decoration : none;
}

/* Секция команды */
.team {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #0f0f23, #0a0a1a);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.team-grid {
    max-width: 1200px;
	display: flex;
    margin: 0 auto;
}

.main-member {
    text-align: center;
    margin-bottom: 3rem;
}

.main-member .member-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid #6c5ce7;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.main-member .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-members-secondary,
.team-members-analytics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    text-align: center;
    background: rgba(15, 15, 35, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid #2a2a4a;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member .member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #00cec9;
}

.team-member .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.role {
    color: #b2bec3;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.member-link:hover {
    color: #00cec9;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .event-slide h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: #0a0a1a;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s;
        border-top: 1px solid #2a2a4a;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .event-slide h3 {
        font-size: 2rem;
    }
    
    .event-slide p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .event-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: 1rem;
    }
    
    .carousel-btn.next {
        right: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        left: 0;
        justify-content: flex-start;
    }
    
    .timeline-icon {
        left: -15px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-icon {
        left: -15px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .team-members-secondary,
    .team-members-analytics {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
	.section-title a{
        text-decoration : none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .about {
        padding: 3rem 1rem;
    }
    
    .social-icons a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .photo-container {
        width: 250px;
        height: 250px;
    }
    
    .thumbnails {
        gap: 15px;
    }
    
    .thumbnail-item .photo-container {
        width: 80px;
        height: 80px;
    }
    
    .modal-content {
        margin: 80px auto;
        max-width: 95%;
    }
    
    .close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }
    
    .event-slide h3 {
        font-size: 1.8rem;
    }
    
    .event-slide p {
        font-size: 1rem;
    }
    
    .event-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .main-member .member-photo {
        width: 200px;
        height: 200px;
    }
    
    .team-member .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .photo-container {
        width: 200px;
        height: 200px;
    }
    
    .thumbnails {
        gap: 10px;
    }
    
    .thumbnail-item .photo-container {
        width: 60px;
        height: 60px;
    }
    
    .caption {
        font-size: 14px;
    }
    
    .thumbnail-item .caption {
        font-size: 12px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .social-bar-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .photo-container {
        width: 180px;
        height: 180px;
    }
    
    .thumbnail-item .photo-container {
        width: 50px;
        height: 50px;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 0 0.3rem;
    }
}

/* Базовые стили для корректного отображения */
img {
    max-width: 100%;
    height: auto;
}