:root {
    --footer-bg: #1a1a1a;
    --accent-color: #ffcc00; /* Shiba Yellow */
    --text-light: #ffffff;
    --transition-speed: 0.3s;
}

.footer-container {
    background-color: var(--footer-bg);
    padding: 40px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 3px solid var(--accent-color);
    margin-top: 50px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-text {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* The Big Responsive Button */
.btn-buy-template {
    position: relative;
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--accent-color);
    color: #000;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    animation: pulse 2s infinite;
}

/* Hover Effects */
.btn-buy-template:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.5);
    background-color: #ffd633;
}

/* Shine Animation Layer */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-buy-template:hover .btn-shine {
    animation: shine 0.75s forwards;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 204, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

@keyframes shine {
    100% { left: 125%; }
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .btn-buy-template {
        width: 90%;
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .footer-text {
        font-size: 1rem;
    }
}