:root {
    --primary: #FF6B00;
    --secondary: #00CFFF;
    --accent: #FFFFFF;
    --dark: #2C2C2C;
    --text: #FFFFFF;
    --bitcoin-gold: #F7931A;
    --bitcoin-orange: #FF6B00;
}

@keyframes bitcoinFloat {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes bitcoinPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes bitcoinRain {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes lightning {
    0%, 100% {
        text-shadow: 
            0 0 5px currentColor,
            0 0 10px currentColor,
            0 0 15px currentColor,
            0 0 20px var(--primary);
    }
    25% {
        text-shadow: 
            0 0 10px currentColor,
            0 0 20px currentColor,
            0 0 30px currentColor,
            0 0 40px var(--primary),
            0 0 50px var(--bitcoin-gold);
    }
    50% {
        text-shadow: 
            0 0 15px currentColor,
            0 0 30px currentColor,
            0 0 45px currentColor,
            0 0 60px var(--primary),
            0 0 75px var(--bitcoin-gold),
            0 0 90px var(--secondary);
    }
    75% {
        text-shadow: 
            0 0 10px currentColor,
            0 0 20px currentColor,
            0 0 30px currentColor,
            0 0 40px var(--primary),
            0 0 50px var(--bitcoin-gold);
    }
}

@keyframes sparkle {
    0%, 100% {
        text-shadow: 0 0 5px currentColor;
        opacity: 0.8;
    }
    50% {
        text-shadow: 0 0 15px currentColor, 0 0 25px currentColor;
        opacity: 1;
    }
}

@keyframes lightningPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 0, 0.8), 0 0 50px rgba(247, 147, 26, 0.6);
    }
}


body {
    font-family: 'Arial', sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 50%, var(--dark) 100%);
    position: relative;
    overflow-x: hidden;
    animation: backgroundLightning 8s infinite;
}

/* Individual falling bitcoin symbols */
body::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 5%;
    font-size: 24px;
    color: var(--bitcoin-orange);
    opacity: 0.4;
    animation: bitcoinRain 8s linear infinite;
    z-index: -1;
}

body::before {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 15%;
    font-size: 28px;
    color: var(--bitcoin-gold);
    opacity: 0.35;
    animation: bitcoinRain 12s linear infinite 1s;
    z-index: -1;
}

header::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 25%;
    font-size: 22px;
    color: var(--secondary);
    opacity: 0.3;
    animation: bitcoinRain 10s linear infinite 2s;
    z-index: -1;
}

.preview::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 35%;
    font-size: 26px;
    color: var(--primary);
    opacity: 0.4;
    animation: bitcoinRain 14s linear infinite 3s;
    z-index: -1;
}

.preview::before {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 45%;
    font-size: 20px;
    color: var(--bitcoin-orange);
    opacity: 0.25;
    animation: bitcoinRain 9s linear infinite 4s;
    z-index: -1;
}

.pricing::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 55%;
    font-size: 30px;
    color: var(--bitcoin-gold);
    opacity: 0.35;
    animation: bitcoinRain 11s linear infinite 5s;
    z-index: -1;
}

.pricing::before {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 65%;
    font-size: 24px;
    color: var(--secondary);
    opacity: 0.3;
    animation: bitcoinRain 13s linear infinite 6s;
    z-index: -1;
}

.disclaimer::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 75%;
    font-size: 22px;
    color: var(--primary);
    opacity: 0.4;
    animation: bitcoinRain 7s linear infinite 1.5s;
    z-index: -1;
}

.disclaimer::before {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 85%;
    font-size: 28px;
    color: var(--bitcoin-orange);
    opacity: 0.35;
    animation: bitcoinRain 15s linear infinite 7s;
    z-index: -1;
}

.contact::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 95%;
    font-size: 25px;
    color: var(--bitcoin-gold);
    opacity: 0.3;
    animation: bitcoinRain 10s linear infinite 8s;
    z-index: -1;
}

.contact::before {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 10%;
    font-size: 23px;
    color: var(--secondary);
    opacity: 0.35;
    animation: bitcoinRain 12s linear infinite 9s;
    z-index: -1;
}

footer::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 30%;
    font-size: 27px;
    color: var(--primary);
    opacity: 0.4;
    animation: bitcoinRain 16s linear infinite 10s;
    z-index: -1;
}

footer::before {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 70%;
    font-size: 21px;
    color: var(--bitcoin-orange);
    opacity: 0.25;
    animation: bitcoinRain 8s linear infinite 11s;
    z-index: -1;
}

/* Additional symbols using nth-child selectors */
.container:nth-child(1)::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 8%;
    font-size: 26px;
    color: var(--bitcoin-gold);
    opacity: 0.3;
    animation: bitcoinRain 9s linear infinite 2.5s;
    z-index: -1;
}

.container:nth-child(1)::before {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 18%;
    font-size: 24px;
    color: var(--secondary);
    opacity: 0.35;
    animation: bitcoinRain 11s linear infinite 4.5s;
    z-index: -1;
}

.gif-container:nth-child(1)::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 38%;
    font-size: 22px;
    color: var(--primary);
    opacity: 0.3;
    animation: bitcoinRain 13s linear infinite 6.5s;
    z-index: -1;
}

.gif-container:nth-child(2)::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 58%;
    font-size: 29px;
    color: var(--bitcoin-orange);
    opacity: 0.4;
    animation: bitcoinRain 7s linear infinite 8.5s;
    z-index: -1;
}

.preview-list:nth-child(1)::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 78%;
    font-size: 25px;
    color: var(--bitcoin-gold);
    opacity: 0.35;
    animation: bitcoinRain 14s linear infinite 10.5s;
    z-index: -1;
}

.plan:nth-child(1)::after {
    content: '₿';
    position: fixed;
    top: -50px;
    left: 88%;
    font-size: 23px;
    color: var(--secondary);
    opacity: 0.3;
    animation: bitcoinRain 10s linear infinite 12.5s;
    z-index: -1;
}

@keyframes backgroundLightning {
    0%, 95%, 100% {
        background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 50%, var(--dark) 100%);
    }
    97% {
        background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(247, 147, 26, 0.2) 50%, rgba(255, 107, 0, 0.1) 100%);
    }
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(255, 107, 0, 0.1) 100%);
    padding: 0;
    text-align: center;
    border-bottom: 3px solid var(--primary);
    animation: glowBorder 3s infinite;
    position: relative;
}

header::before {
    content: '₿';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--bitcoin-orange);
    animation: bitcoinPulse 2s infinite;
}

@keyframes glowBorder {
    0%, 100% {
        border-color: var(--primary);
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    }
    50% {
        border-color: var(--bitcoin-gold);
        box-shadow: 0 0 40px rgba(247, 147, 26, 0.6);
    }
}

h1 {
    font-size: 4em;
    margin: 0;
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), var(--bitcoin-gold), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: lightning 1.5s infinite, gradientShift 4s ease-in-out infinite;
}


@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 20px var(--primary),
            0 0 40px var(--bitcoin-gold);
    }
    50% {
        text-shadow: 0 0 40px var(--primary),
            0 0 80px var(--bitcoin-gold),
            0 0 120px var(--primary);
    }
}

h2 {
    color: var(--secondary);
    font-size: 1.8em;
    animation: lightning 2s infinite;
}

h3 {
    color: var(--primary);
    animation: lightning 2.5s infinite;
}


.subtitle-new {
    color: var(--bitcoin-gold) !important;
    font-size: 1.3em;
    margin-top: 10px;
    text-shadow: 0 0 15px var(--bitcoin-gold);
    animation: bitcoinGlow 2s infinite;
}

@keyframes bitcoinGlow {
    0%, 100% {
        text-shadow: 0 0 15px var(--bitcoin-gold);
    }
    50% {
        text-shadow: 0 0 30px var(--bitcoin-gold), 0 0 50px var(--primary);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px currentColor;
    }
    100% {
        text-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
    }
}

.subtitle {
    color: var(--accent);
    font-size: 1.2em;
    margin-top: 5px;
    text-shadow: 0 0 5px var(--accent);
}

.gif-container {
    position: relative;
    margin: 10px;
    text-align: center;
    flex: 1;
    max-width: 45%;
    animation: bitcoinFloat 5s ease-in-out infinite;
}

.gif-description {
    color: var(--primary);
    font-size: 1.2em;
    margin-top: 10px;
    text-shadow: 0 0 10px var(--primary);
    animation: textGlow 2s ease-in-out infinite;
}

/* Advertisement Section Styles */
.advertisement-section {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
}

.banner-row {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    position: relative;
}

.main-content {
    padding: 20px 0;
}

.advertise-text-row {
    margin: 15px 0;
    text-align: center;
}

.advertise-text {
    color: #FF6B00 !important;
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin: 0 !important;
    text-shadow: 
        0 0 10px #FF6B00,
        0 0 20px #FF6B00,
        0 0 30px #FF6B00,
        0 0 40px #FF6B00,
        0 0 50px #FF6B00,
        0 0 60px #FF6B00,
        0 0 70px #FF6B00,
        0 0 80px #FF6B00 !important;
    animation: advertiseLightning 1.5s infinite, advertisePulse 2s infinite !important;
    background: linear-gradient(45deg, #FF6B00, #FF8C00, #FFA500, #FF6B00) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-size: 200% auto !important;
    animation: advertiseLightning 1.5s infinite, advertisePulse 2s infinite, advertiseGradient 3s ease-in-out infinite !important;
}

@keyframes advertiseLightning {
    0%, 100% {
        text-shadow: 
            0 0 10px #FF6B00,
            0 0 20px #FF6B00,
            0 0 30px #FF6B00,
            0 0 40px #FF6B00,
            0 0 50px #FF6B00,
            0 0 60px #FF6B00,
            0 0 70px #FF6B00,
            0 0 80px #FF6B00;
    }
    25% {
        text-shadow: 
            0 0 15px #FF6B00,
            0 0 30px #FF6B00,
            0 0 45px #FF6B00,
            0 0 60px #FF6B00,
            0 0 75px #FF6B00,
            0 0 90px #FF6B00,
            0 0 105px #FF6B00,
            0 0 120px #FF6B00,
            0 0 135px #FF8C00;
    }
    50% {
        text-shadow: 
            0 0 20px #FF6B00,
            0 0 40px #FF6B00,
            0 0 60px #FF6B00,
            0 0 80px #FF6B00,
            0 0 100px #FF6B00,
            0 0 120px #FF6B00,
            0 0 140px #FF6B00,
            0 0 160px #FF6B00,
            0 0 180px #FF8C00,
            0 0 200px #FFA500;
    }
    75% {
        text-shadow: 
            0 0 15px #FF6B00,
            0 0 30px #FF6B00,
            0 0 45px #FF6B00,
            0 0 60px #FF6B00,
            0 0 75px #FF6B00,
            0 0 90px #FF6B00,
            0 0 105px #FF6B00,
            0 0 120px #FF6B00,
            0 0 135px #FF8C00;
    }
}

@keyframes advertisePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes advertiseGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.new-banner-link {
    width: 50%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    border: 2px solid var(--primary);
    animation: borderGlow 3s infinite;
    position: relative;
    overflow: hidden;
}

.new-banner-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block;
}

@keyframes borderGlow {
    0%, 100% {
        border-color: var(--primary);
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    }
    50% {
        border-color: var(--bitcoin-gold);
        box-shadow: 0 0 40px rgba(247, 147, 26, 0.6);
    }
}

.new-banner-gif:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.banner-gif {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 15px;
    border: 2px solid var(--primary);
    animation: borderGlow 3s infinite;
}

.demo-gif {
    width: 45%;
    max-width: 400px;
    margin: 10px;
    border: 3px solid var(--primary);
    border-radius: 15px;
    animation: lightningPulse 3s infinite;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--primary), var(--bitcoin-gold));
    color: var(--text);
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    font-size: 1.1em;
    animation: lightningPulse 2s infinite;
}

.cta-button:hover {
    box-shadow: 0 0 40px var(--primary);
    background: linear-gradient(45deg, var(--bitcoin-gold), var(--primary));
}

.cta-button::before {
    content: '₿';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--bitcoin-gold);
    transition: all 0.3s;
}

.cta-button:hover::before {
    left: 10px;
}


.preview {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(255, 107, 0, 0.05) 100%);
}

.signature-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.main-description {
    font-size: 1.4em;
    color: var(--bitcoin-gold);
    margin: 20px 0;
    animation: lightning 2s infinite;
}

.preview-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.preview-list li {
    color: var(--text);
    padding: 30px 20px;
    font-size: 1.2em;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(247, 147, 26, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 15px;
    transition: all 0.3s;
    animation: bitcoinFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    line-height: 1.4;
}



.preview-list li:hover {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.4) 0%, rgba(247, 147, 26, 0.3) 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    border-color: var(--bitcoin-gold);
}



.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.plan {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(255, 107, 0, 0.1) 100%);
    border: 3px solid var(--primary);
    padding: 30px;
    margin: 20px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: bitcoinFloat 5s ease-in-out infinite;
    flex: 1;
    min-width: 300px;
}

.plan::before {
    content: '₿';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--bitcoin-gold);
    animation: bitcoinPulse 2s infinite;
}

.plan:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.4);
    border-color: var(--bitcoin-gold);
}

.price {
    font-size: 3em;
    color: var(--bitcoin-gold);
    margin: 20px 0;
    text-shadow: 0 0 20px var(--bitcoin-gold);
    animation: bitcoinGlow 2s infinite;
}

.description {
    font-size: 1.3em;
    margin: 15px 0;
    color: var(--accent);
}

.reviews {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    padding: 60px 0;
    text-align: center;
}

.reviews h3 {
    color: var(--bitcoin-gold);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-shadow: 0 0 20px var(--bitcoin-gold);
    animation: bitcoinGlow 2s infinite;
}

.reviews-container {
    position: relative;
    min-width: 300px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 107, 0, 0.1) 100%);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.2);
    animation: reviewContainerGlow 3s infinite;
}

.review-slide {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    opacity: 0;
    transform: translateX(100%) scale(0.8);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.95) 0%, rgba(255, 107, 0, 0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    box-sizing: border-box;
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
    animation: reviewPulse 4s ease-in-out infinite;
    z-index: 10;
}

/* Fallback: Show first review even without JavaScript */
.review-slide:first-child {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
}

@keyframes reviewPulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
        border-color: var(--primary);
    }
    50% {
        box-shadow: 0 20px 50px rgba(255, 107, 0, 0.5);
        border-color: var(--bitcoin-gold);
    }
}

@keyframes reviewContainerGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 107, 0, 0.2);
        border-color: var(--primary);
    }
    50% {
        box-shadow: 0 15px 50px rgba(255, 107, 0, 0.4);
        border-color: var(--bitcoin-gold);
    }
}

.review-slide.prev {
    transform: translateX(-100%) scale(0.8);
    opacity: 0;
}

.stars {
    color: var(--bitcoin-gold);
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 0 0 25px var(--bitcoin-gold);
    animation: starGlow 2s infinite;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.stars:hover {
    transform: scale(1.1);
}

@keyframes starGlow {
    0%, 100% {
        text-shadow: 0 0 15px var(--bitcoin-gold);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px var(--bitcoin-gold), 0 0 35px var(--primary);
        transform: scale(1.05);
    }
}

.review-text {
    color: var(--text);
    font-size: 1.1em;
    line-height: 1.6;
    font-style: italic;
    text-shadow: 0 0 8px var(--text);
    margin: 0;
    padding: 0 15px;
    max-height: 120px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.disclaimer {
    padding: 20px 0;
    margin-top: 40px;
}

.disclaimer-text {
    color: #ff4444;
    font-size: 1.2em;
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    border: 3px solid #ff4444;
    border-radius: 15px;
    background: rgba(255, 68, 68, 0.1);
    text-shadow: 0 0 10px #ff4444;
    animation: glowRed 2s infinite;
    max-width: 800px;
}

@keyframes glowRed {
    0%, 100% {
        text-shadow: 0 0 10px #ff4444;
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
    }
    50% {
        text-shadow: 0 0 20px #ff4444, 0 0 30px #ff4444;
        box-shadow: 0 0 40px rgba(255, 68, 68, 0.6);
    }
}

.contact {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(255, 107, 0, 0.1) 100%);
}

.contact .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
}

.contact h3 {
    color: var(--primary);
    font-size: 2em;
    animation: textGlow 2s infinite alternate;
    margin-bottom: 30px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}

.contact-box {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2) 0%, rgba(247, 147, 26, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    animation: bitcoinFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-box:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.4) 0%, rgba(247, 147, 26, 0.3) 100%);
    border-color: var(--bitcoin-gold);
    transform: translateY(-5px) scale(1.02);
}

.contact-box h4 {
    color: var(--bitcoin-gold);
    font-size: 1.2em;
    margin-bottom: 10px;
    animation: sparkle 2s infinite;
}

.contact-box .contact-icon {
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 10px;
    animation: textGlow 2s infinite alternate;
}

.contact-box a {
    color: var(--text);
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    display: block;
    margin-top: 8px;
    transition: all 0.3s;
}

.contact-box a:hover {
    color: var(--bitcoin-gold);
    text-shadow: 0 0 10px var(--bitcoin-gold);
}

.contact-box .contact-description {
    color: var(--accent);
    font-size: 0.85em;
    margin-top: 8px;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .contact-grid {
        justify-content: center;
    }
    
    .contact-box {
        min-width: 200px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact h3 {
        font-size: 1.5em;
    }
    
    .contact-box {
        padding: 18px;
        min-width: 280px;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .contact-box {
        min-width: 90%;
        max-width: 90%;
    }
}

footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(255, 107, 0, 0.1) 100%);
    border-top: 3px solid var(--primary);
    color: var(--accent);
    position: relative;
}

footer::before {
    content: '₿ ₿ ₿';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: var(--bitcoin-gold);
    opacity: 0.6;
    animation: bitcoinPulse 2s infinite;
}

@media (max-width: 768px) {
    .preview-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    h1 {
        font-size: 2.5em;
    }

    .signature-container {
        flex-direction: column;
        align-items: center;
    }

    .gif-container {
        max-width: 80%;
    }
    
    .new-banner-gif {
        max-width: 90%;
    }
    
    .banner-row {
        flex-direction: row;
        width: 100%;
    }
    
    .new-banner-link {
        width: 50%;
        height: 180px;
    }
    
    .advertise-text {
        font-size: 0.9em !important;
        letter-spacing: 2px !important;
    }
    
    .reviews-container {
        min-width: 280px;
        max-width: 95%;
        height: 280px;
        padding: 20px;
    }
    
    .review-slide {
        top: 20px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        padding: 20px;
    }
    
    .review-text {
        font-size: 1em;
        padding: 0 10px;
        max-height: 100px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .stars {
        font-size: 1.6em;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .preview-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    h1 {
        font-size: 2em;
    }
    
    .banner-row {
        flex-direction: column;
        width: 100%;
    }
    
    .new-banner-link {
        width: 100%;
        height: 150px;
    }
    
    .advertise-text {
        font-size: 0.7em !important;
        letter-spacing: 1px !important;
    }
    
    .reviews-container {
        min-width: 260px;
        max-width: 98%;
        height: 240px;
        padding: 15px;
    }
    
    .review-slide {
        top: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        padding: 18px;
    }
    
    .review-text {
        font-size: 0.95em;
        padding: 0 8px;
        max-height: 85px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .stars {
        font-size: 1.4em;
        margin-bottom: 10px;
    }
}