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

:root {
    --font-metal: 'Metal Mania', cursive;
    --font-bold: 'Black Ops One', cursive;
    --font-title: 'Russo One', sans-serif;
    --font-heading: 'Oswald', sans-serif;
}

body {
    font-family: var(--font-heading);
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Fire Particles Background */
.fire-particles,
.sparks {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ember {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6500;
    border-radius: 50%;
    bottom: 0;
    opacity: 0;
    animation: ember-float 5s ease-in infinite;
}

.spark {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffd700;
    border-radius: 50%;
    bottom: 0;
    animation: spark-rise 3s ease-out infinite;
}

/* Animations */
@keyframes ember-float {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-200px) translateX(20px) rotate(360deg);
    }
}

@keyframes spark-rise {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0);
    }
}

@keyframes flame-flicker {
    0%, 100% {
        opacity: 0.8;
        transform: scaleY(1) translateY(0);
    }
    25% {
        opacity: 0.9;
        transform: scaleY(1.1) translateY(-5px);
    }
    50% {
        opacity: 0.7;
        transform: scaleY(0.95) translateY(2px);
    }
    75% {
        opacity: 0.85;
        transform: scaleY(1.05) translateY(-3px);
    }
}

@keyframes fire-glow {
    0%, 100% {
        filter: brightness(1) hue-rotate(0deg);
    }
    50% {
        filter: brightness(1.3) hue-rotate(10deg);
    }
}

@keyframes text-fire {
    0%, 100% {
        color: #ffffff;
        text-shadow:
            0 0 15px rgba(255, 165, 0, 0.9),
            0 0 25px rgba(255, 69, 0, 0.7),
            0 0 35px rgba(255, 69, 0, 0.5),
            0 0 45px rgba(255, 0, 0, 0.3);
    }
    50% {
        color: #ffffff;
        text-shadow:
            0 0 20px rgba(255, 215, 0, 1),
            0 0 35px rgba(255, 165, 0, 0.9),
            0 0 45px rgba(255, 69, 0, 0.7),
            0 0 60px rgba(255, 0, 0, 0.5);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000 0%, rgba(127, 29, 29, 0.2) 50%, #000 100%);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: brightness(0.4);
    animation: fire-glow 3s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.2), transparent);
    animation: pulse 2s ease-in-out infinite;
}

.flame-overlay {
    position: absolute;
    bottom: 0;
    animation: flame-flicker 2s ease-in-out infinite;
}

.flame-1 {
    left: 0;
    right: 0;
    height: 12rem;
    background: linear-gradient(to top, rgba(255, 102, 0, 0.3), rgba(220, 38, 38, 0.2), transparent);
}

.flame-2 {
    right: 0;
    width: 33.333%;
    height: 16rem;
    background: linear-gradient(to top left, rgba(202, 138, 4, 0.2), rgba(255, 102, 0, 0.1), transparent);
    animation-delay: 0.5s;
}

.flame-3 {
    left: 0;
    width: 33.333%;
    height: 16rem;
    background: linear-gradient(to top right, rgba(220, 38, 38, 0.2), rgba(255, 102, 0, 0.1), transparent);
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fade-in 1s ease-out;
}

.metallica-logo {
    width: 100%;
    max-width: 42rem;
    filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.8));
    animation: fire-glow 3s ease-in-out infinite;
}

.tour-title {
    font-family: var(--font-bold);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    animation: text-fire 2s ease-in-out infinite;
}

.event-details {
    position: relative;
    background: linear-gradient(to right, rgba(127, 29, 29, 0.5), rgba(124, 45, 18, 0.5), rgba(127, 29, 29, 0.5));
    border: 2px solid #ea580c;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.pulse-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.1), transparent);
    animation: pulse 2s ease-in-out infinite;
}

.event-date,
.event-location,
.event-venue {
    position: relative;
    z-index: 10;
}

.event-date {
    font-family: var(--font-title);
    color: #f97316;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.event-location {
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.event-venue {
    font-family: var(--font-title);
    color: #fb923c;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

.cta-button,
.cta-button-large {
    position: relative;
    font-family: var(--font-bold);
    padding: 1.25rem 3rem;
    background: linear-gradient(to right, #ea580c, #dc2626);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 4px solid #f97316;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.cta-button-large {
    padding: 1.5rem 4rem;
    font-size: 1.875rem;
}

.cta-button:hover,
.cta-button-large:hover {
    border-color: #fbbf24;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.8);
}

.btn-text {
    position: relative;
    z-index: 10;
}

.btn-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #ca8a04, #ea580c);
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button:hover .btn-gradient,
.cta-button-large:hover .btn-gradient {
    opacity: 1;
}

.btn-particles,
.btn-particles-large {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.cta-button:hover .btn-particles,
.cta-button-large:hover .btn-particles-large {
    opacity: 1;
}

.btn-particle,
.btn-particle-large {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fef08a;
    border-radius: 50%;
    bottom: 0;
    animation: ember-float 1.5s ease-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #f97316;
    animation: bounce 2s ease-in-out infinite;
}

/* Sections */
.about-section,
.faq-section,
.gallery-section,
.merch-section,
.final-cta {
    position: relative;
    padding: 5rem 1rem;
}

.section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000, rgba(127, 29, 29, 0.1), #000);
    z-index: -1;
}

.flame-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 102, 0, 0.05), transparent);
    animation: flame-flicker 3s ease-in-out infinite;
    z-index: -1;
}

.flame-bg-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 102, 0, 0.1), transparent);
    animation: flame-flicker 2s ease-in-out infinite;
}

.section-title {
    font-family: var(--font-bold);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    z-index: -1;
}

.fire-text {
    animation: text-fire 2s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    color: #fb923c;
    font-family: var(--font-title);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

/* About Section */
.about-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.highlight-orange {
    color: #f97316;
    font-family: var(--font-title);
    font-weight: bold;
}

.highlight-light {
    color: #fb923c;
}

.highlight-bold {
    color: #fb923c;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-box {
    background: linear-gradient(to bottom, #18181b, #000);
    border: 2px solid #78350f;
    padding: 1.5rem;
}

.stat-number {
    color: #f97316;
    font-family: var(--font-bold);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-family: var(--font-heading);
    font-size: 0.875rem;
}

.tagline {
    color: #fb923c;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
}

.info-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(127, 29, 29, 0.2);
    border-left: 4px solid #ea580c;
}

.info-box p {
    text-align: left;
    font-size: 1rem;
}

.info-highlight {
    color: #f97316;
    font-weight: bold;
}

/* FAQ Section */
.faq-list {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(to right, #18181b, #000);
    border: 2px solid #78350f;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #f97316;
}

.faq-question {
    cursor: pointer;
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.125rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #fb923c;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #f97316;
    transition: transform 0.3s;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    color: #d1d5db;
    font-family: var(--font-heading);
    line-height: 1.75;
    border-top: 1px solid rgba(120, 53, 15, 0.3);
    margin-top: 0.5rem;
}

.faq-answer strong {
    color: #fb923c;
}

.faq-footer {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to right, rgba(127, 29, 29, 0.3), rgba(124, 45, 18, 0.2), rgba(127, 29, 29, 0.3));
    border: 2px solid #9a3412;
}

.faq-footer-title {
    color: #d1d5db;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.faq-footer-text {
    color: #fb923c;
    font-family: var(--font-title);
    font-size: 0.875rem;
}

/* Gallery Section */
.gallery-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 4px solid #78350f;
    aspect-ratio: 16 / 9;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: #f97316;
    transform: translateY(-5px);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
}

.gallery-sparks {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.gallery-item:hover .gallery-sparks {
    opacity: 1;
}

.gallery-spark {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fbbf24;
    border-radius: 50%;
    bottom: 10%;
    animation: spark-rise 1.5s ease-out infinite;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.7);
    }
    to {
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f97316;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #fbbf24;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fb923c;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 1.125rem;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 20px;
    margin: 0 20px;
    color: #f97316;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    user-select: none;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #fbbf24;
    background-color: rgba(255, 165, 0, 0.1);
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to right, #ea580c, #dc2626);
    color: #fff;
    border: 3px solid #f97316;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.6);
}

.scroll-to-top.show {
    display: flex;
}

/* Merch Section */
.merch-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.merch-item {
    position: relative;
    background: linear-gradient(to bottom, #18181b, #000);
    border: 2px solid #78350f;
    overflow: hidden;
    transition: border-color 0.3s;
}

.merch-item:hover {
    border-color: #f97316;
}

.merch-image {
    position: relative;
    aspect-ratio: 1;
    background: #27272a;
    overflow: hidden;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.merch-item:hover .merch-image img {
    transform: scale(1.1);
}

.merch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.merch-particles {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.merch-item:hover .merch-particles {
    opacity: 1;
}

.merch-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fb923c;
    border-radius: 50%;
    bottom: 10%;
    animation: ember-float 2s ease-out infinite;
}

.merch-info {
    padding: 1rem;
    position: relative;
}

.merch-name {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.merch-item:hover .merch-name {
    color: #fb923c;
}

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

.merch-price {
    color: #f97316;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.5rem;
}

.merch-add {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ea580c;
    color: #f97316;
    transition: border-color 0.3s;
}

.merch-item:hover .merch-add {
    border-color: #fbbf24;
}

.merch-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 102, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.merch-item:hover .merch-glow {
    opacity: 1;
}

.merch-note {
    margin-top: 4rem;
    text-align: center;
}

.merch-note p {
    color: #9ca3af;
    font-family: var(--font-heading);
    font-size: 0.875rem;
}

/* Final CTA */
.final-cta {
    padding: 8rem 1rem;
}

.cta-title {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    position: relative;
    border-top: 2px solid #78350f;
    padding: 2rem 0;
}

.footer p {
    text-align: center;
    color: #6b7280;
    font-family: var(--font-heading);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .merch-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Media Queries для лайтбокса и кнопки наверх */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 15px;
        margin: 0 5px;
    }
    
    .lightbox-close {
        font-size: 40px;
        right: 20px;
    }
}
/* === HERO LOGO CONTAINER === */
.metallica-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  z-index: 10;
  overflow: visible;
}

/* === MAIN FIRE LOGO === */
.fire-logo {
  width: min(95vw, 1100px);
  aspect-ratio: 3.6 / 1;
  background: linear-gradient(
    90deg,
    #ff3300,
    #ffcc00,
    #ff6600,
    #ff0000,
    #ff6600
  );
  background-size: 300% 300%;
  -webkit-mask-image: url("images/Metallica_wordmark.png");
          mask-image: url("images/Metallica_wordmark.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;

  animation: metalFire 6s linear infinite;
  filter:
    drop-shadow(0 0 25px rgba(255,100,0,0.7))
    drop-shadow(0 0 50px rgba(255,150,0,0.5))
    brightness(1.2)
    contrast(1.15);
  transition: transform 0.3s ease-in-out;
}

.metallica-logo-wrap:hover .fire-logo {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 35px rgba(255,160,40,0.8))
    drop-shadow(0 0 80px rgba(255,90,0,0.6))
    brightness(1.3);
}

/* === FIRE ANIMATIONS === */
@keyframes metalFire {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === SPARK PARTICLES === */
.logo-sparks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 3; /* над логотипом, но не перекрывает секции */
}


/* Базовый стиль искры */
.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, #ffb400 0%, #ff6600 60%, transparent 100%);
  border-radius: 50%;
  opacity: 0.8;
  animation: flySpark 3s ease-in infinite;
}

/* Анимация взлёта */
@keyframes flySpark {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-180px) scale(0.5);
    opacity: 0;
  }
}
.about-section,
.faq-section,
.gallery-section,
.merch-section,
.final-cta,
.footer {
  position: relative;
  z-index: 10;
}
.section-title.fire-text {
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 140, 0, 0.9),
    0 0 25px rgba(255, 90, 0, 0.8),
    0 0 40px rgba(255, 50, 0, 0.6);
}
.logo-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 3;
}

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, #ffb400 0%, #ff6600 60%, transparent 100%);
  border-radius: 50%;
  opacity: 0.8;
  animation: flySpark 2.5s ease-out infinite;
}

@keyframes flySpark {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}
.fire-logo {
  animation: metalFire 6s linear infinite, firePulse 2s ease-in-out infinite;
}

@keyframes firePulse {
  0%, 100% {
    filter: drop-shadow(0 0 25px rgba(255, 80, 0, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(255, 160, 0, 1));
  }
}
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;      /* центрирует по горизонтали */
  justify-content: center;  /* если хочешь по вертикали в секции */
  text-align: center;       /* выравнивает сам текст */
  padding: 6rem 1rem;       /* отступы сверху/снизу */
}
