/* OnlyTemplate Theme Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

/* CSS Variables */
:root {
    --brand-purple: #482080;
    --brand-pink: #FF4081;
    --brand-light: #F0F4FF;
    --brand-dark: #1A1A1A;
    --text-gray: #666666;
    --text-gray-light: #999999;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-dark);
    background-color: var(--brand-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Navigation */
.site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 12px 12px;
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 16px 12px;
    }
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

@media (min-width: 1024px) {
    .nav-buttons {
        flex: 0 1 auto;
        max-width: 400px;
    }
}

.nav-button {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-weight: 600;
    border-radius: 9999px;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

@media (min-width: 1024px) {
    .nav-button {
        flex: 0 0 auto;
        min-width: 120px;
        max-width: 180px;
        padding: 12px 24px;
    }
}

.nav-button-purple {
    background: var(--brand-purple);
    color: var(--white);
}

.nav-button-purple:hover {
    background: rgba(72, 32, 128, 0.9);
    transform: scale(1.05);
}

.nav-button-pink {
    background: var(--brand-pink);
    color: var(--white);
}

.nav-button-pink:hover {
    background: rgba(255, 64, 129, 0.9);
    transform: scale(1.05);
}

.nav-toggle {
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-purple);
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.nav-toggle-icon {
    width: 32px;
    height: 2px;
    background: currentColor;
    transition: var(--transition);
}

.nav-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 9999;
    background: var(--brand-purple);
    color: var(--white);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 80px 24px 40px;
    margin: 0;
    box-sizing: border-box;
}

.nav-menu-overlay.active {
    display: flex;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

html.menu-open {
    overflow: hidden;
    height: 100%;
}

.nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-close:hover {
    transform: rotate(90deg);
}

.nav-menu-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 0;
}

.nav-menu-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    transition: var(--transition);
    display: block;
    padding: 8px 0;
    text-decoration: none;
}

.nav-menu-item:hover {
    color: var(--brand-pink);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-light);
    overflow: hidden;
    padding: 70px 0 8px;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 100px 16px 0;
    }
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 48px;
        text-align: left;
    }
}

.hero-image-wrapper {
    width: 100%;
    order: 1;
    margin: 0;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        order: 2;
        flex: 0 0 70%;
        max-width: 70%;
    }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .hero-image {
        width: 100%;
        aspect-ratio: 4 / 3;
        max-height: 85vh;
        border-radius: 24px;
        box-shadow: var(--shadow-xl);
        object-fit: cover;
    }
}

.hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 16px 16px 16px;
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    container-type: inline-size;
    container-name: hero-content;
}

@media (min-width: 1024px) {
    .hero-content {
        order: 1;
        flex: 0 0 30%;
        max-width: 30%;
        min-width: 0;
        padding: 0;
        align-items: flex-start;
    }
}

.hero-title {
    font-size: clamp(24px, 8vw, 48px);
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--brand-purple);
    margin-bottom: 12px;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    transition: font-size 0.2s ease;
}

/* Fallback стили для разных размеров экрана (если JS не загрузится) */
@media (min-width: 480px) {
    .hero-title {
        font-size: clamp(28px, 9vw, 56px);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: clamp(32px, 7vw, 72px);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(36px, 2.5vw, 96px);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: clamp(42px, 2.2vw, 96px);
    }
}

@media (min-width: 1536px) {
    .hero-title {
        font-size: clamp(48px, 2vw, 96px);
    }
}

.hero-subtitle-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .hero-subtitle-wrapper {
        justify-content: flex-start;
    }
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
    margin: 0;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

.hero-verification-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.verification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4A5568;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.verification-icon svg {
    width: 24px;
    height: 24px;
}

.verification-icon svg circle {
    fill: #4A5568;
}

.verification-icon svg path {
    stroke: white;
    stroke-width: 2;
}

.hero-button {
    background: var(--brand-pink);
    color: var(--white);
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    align-self: center;
}

@media (min-width: 1024px) {
    .hero-button {
        align-self: flex-start;
    }
}

.hero-button:hover {
    background: rgba(255, 64, 129, 0.9);
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 80px 24px;
    background: var(--brand-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: rgba(255, 64, 129, 0.05);
    border-radius: 50%;
    filter: blur(48px);
    transform: translate(50%, -50%);
}

.about-container {
    max-width: 1152px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-bio {
    line-height: 1.75;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--brand-pink);
}

.about-label-icon {
    width: 20px;
    height: 20px;
}

.about-label-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 14px;
}

.about-title {
    font-size: 48px;
    color: var(--brand-purple);
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 60px;
    }
}

.about-text {
    color: rgba(72, 32, 128, 0.8);
    font-size: 18px;
    line-height: 1.75;
}

.about-text p {
    margin-bottom: 24px;
}

.about-stats {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(72, 32, 128, 0.05);
}

@media (min-width: 768px) {
    .about-stats {
        padding: 40px;
    }
}

.stats-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--brand-purple);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats-title-line {
    width: 32px;
    height: 2px;
    background: var(--brand-pink);
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px 16px;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(72, 32, 128, 0.1);
    padding-bottom: 8px;
}

.stat-label {
    color: rgba(72, 32, 128, 0.5);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-icon {
    width: 16px;
    height: 16px;
}

.stat-value {
    color: var(--brand-purple);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

/* Platform Links Section */
.platform-links-section {
    padding: 80px 16px;
    background: var(--white);
}

.platform-links-container {
    max-width: 1280px;
    margin: 0 auto;
}

.platform-links-header {
    text-align: center;
    margin-bottom: 48px;
}

.platform-links-subtitle {
    color: var(--brand-pink);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .platform-links-subtitle {
        font-size: 16px;
    }
}

.platform-links-title {
    color: var(--brand-purple);
    font-size: 48px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .platform-links-title {
        font-size: 60px;
    }
}

.platform-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .platform-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.platform-link-item {
    position: relative;
    height: 96px;
    width: 100%;
    overflow: hidden;
    display: block;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .platform-link-item {
        height: 128px;
    }
}

.platform-link-item:hover {
    transform: scale(1.02);
}

.platform-link-bg {
    position: absolute;
    inset: 0;
}

.platform-link-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.platform-link-item:hover .platform-link-bg img {
    transform: scale(1.1);
}

.platform-link-overlay {
    position: absolute;
    inset: 0;
    background: rgba(72, 32, 128, 0.4);
    backdrop-filter: blur(1px);
    transition: var(--transition);
}

.platform-link-item:hover .platform-link-overlay {
    background: rgba(72, 32, 128, 0.2);
}

.platform-link-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-link-name {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .platform-link-name {
        font-size: 24px;
    }
}

/* Content Section */
.content-section {
    padding: 80px 16px;
    background: var(--brand-light);
}

.content-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.content-text-block {
    max-width: none;
}

.content-title {
    font-size: 36px;
    color: var(--brand-purple);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .content-title {
        font-size: 48px;
    }
}

.content-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-pink);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .content-subtitle {
        font-size: 30px;
    }
}

.content-text {
    color: #374151;
    line-height: 1.75;
    font-size: 18px;
}

.content-text p {
    margin-bottom: 16px;
}

.content-large-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .content-large-image {
        height: 600px;
    }
}

.content-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-gallery {
    width: 100%;
}

.gallery-title {
    font-size: 30px;
    color: var(--brand-purple);
    margin-bottom: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 36px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    background: var(--brand-dark);
}

.content-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-cta {
    text-align: center;
}

.content-cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--brand-pink), var(--brand-purple));
    color: var(--white);
    font-weight: 700;
    padding: 24px 48px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.content-cta-button:hover {
    background: linear-gradient(to right, var(--brand-purple), var(--brand-pink));
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 80px 16px;
    background: var(--white);
}

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
}

.faq-title {
    font-size: 36px;
    color: var(--brand-purple);
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 48px;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(72, 32, 128, 0.2);
    border-radius: 16px;
    overflow: hidden;
    background: var(--brand-light);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(72, 32, 128, 0.05);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-purple);
    padding-right: 16px;
}

.faq-arrow {
    font-size: 24px;
    color: var(--brand-pink);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: #374151;
    line-height: 1.75;
}

/* Footer */
.site-footer {
    background: var(--brand-light);
    padding: 48px 16px;
    text-align: center;
    border-top: 1px solid rgba(72, 32, 128, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-copyright {
    color: rgba(72, 32, 128, 0.6);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 12px;
    color: rgba(72, 32, 128, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--brand-purple);
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Selection */
::selection {
    background: var(--brand-pink);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--brand-light);
}

::-webkit-scrollbar-thumb {
    background: rgba(72, 32, 128, 0.2);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(72, 32, 128, 0.4);
}

