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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.main-content {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.main-content.loaded {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #0066ff);
}

.title-icon {
    color: #ff0000;
    text-shadow: 
        0 0 10px #ff0000;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% {
        text-shadow: 0 0 10px #ff0000;
    }
    100% {
        text-shadow: 
            0 0 20px #ff0000,
            0 0 30px #ff0000;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2rem;
}

.logo-777 {
    color: #ff0000;
    font-family: 'Metal Mania', cursive;
    text-shadow: 
        0 0 10px #ff0000,
        2px 2px 0px #000000;
    animation: logoFlicker 3s ease-in-out infinite;
}

.logo-skull {
    color: #0066ff;
    text-shadow: 
        0 0 10px #0066ff,
        1px 1px 0px #000000;
    animation: skullGlow 2s ease-in-out infinite alternate;
}

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

@keyframes skullGlow {
    0% {
        text-shadow: 
            0 0 10px #0066ff,
            1px 1px 0px #000000;
    }
    100% {
        text-shadow: 
            0 0 20px #0066ff,
            0 0 30px #0066ff,
            1px 1px 0px #000000;
    }
}

.nav-logo h1 {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, #0066ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-flames {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-flame {
    position: absolute;
    width: 20px;
    height: 80px;
    background: linear-gradient(to top, #ff0000 0%, #ff6600 30%, #0066ff 60%, #00aaff 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: heroFlameFlicker 1s ease-in-out infinite alternate;
    opacity: 0.6;
}

.hero-flame-1 { top: 20%; left: 10%; animation-delay: 0s; }
.hero-flame-2 { top: 60%; right: 15%; animation-delay: 0.3s; }
.hero-flame-3 { bottom: 30%; left: 20%; animation-delay: 0.6s; }
.hero-flame-4 { top: 40%; right: 25%; animation-delay: 0.9s; }
.hero-flame-5 { bottom: 20%; right: 10%; animation-delay: 1.2s; }
.hero-flame-6 { top: 70%; left: 5%; animation-delay: 1.5s; }

@keyframes heroFlameFlicker {
    0% {
        transform: scaleY(1) scaleX(1) rotate(-2deg);
        opacity: 0.4;
    }
    100% {
        transform: scaleY(1.3) scaleX(0.7) rotate(2deg);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: heroFadeInUp 1.5s ease-out;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-star {
    margin-bottom: 2rem;
    position: relative;
}

.hero-star-symbol {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 
        0 0 20px #ff0000,
        0 0 40px #0066ff;
    animation: heroStarGlow 3s ease-in-out infinite alternate;
    display: block;
}

@keyframes heroStarGlow {
    0% {
        text-shadow: 
            0 0 20px #ff0000,
            0 0 40px #0066ff;
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 30px #ff0000,
            0 0 50px #ff0000,
            0 0 60px #0066ff;
        transform: scale(1.1);
    }
}

.hero-title {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.title-777 {
    font-family: 'Metal Mania', cursive;
    font-size: 3rem;
    color: #ff0000;
    text-shadow: 
        0 0 20px #ff0000,
        0 0 40px #ff0000,
        3px 3px 0px #000000;
    animation: title777Flicker 2s ease-in-out infinite;
}

.title-main {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 
        0 0 20px #0066ff,
        3px 3px 0px rgba(0, 0, 0, 0.8);
    animation: titleMainGlow 3s ease-in-out infinite alternate;
}

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

@keyframes titleMainGlow {
    0% {
        text-shadow: 
            0 0 20px #0066ff,
            3px 3px 0px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            0 0 30px #0066ff,
            0 0 40px #0066ff,
            3px 3px 0px rgba(0, 0, 0, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #cccccc;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px #000000;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    border: 2px solid #ff0000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    background: #cc0000;
}

.btn-secondary {
    background: transparent;
    color: #0066ff;
    border: 2px solid #0066ff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-secondary:hover {
    background: #0066ff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.5rem;
    animation: scrollBounce 2s infinite;
    text-shadow: 0 0 10px #0066ff;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Music Section */
.music-section {
    padding: 100px 0;
    background: #111111;
    position: relative;
}

.music-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.track-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.05), rgba(0, 102, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-card:hover::before {
    opacity: 1;
}

.track-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.2),
        0 0 50px rgba(0, 102, 255, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.track-artwork {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff0000, #0066ff);
    border-radius: 10px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.track-flames {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.track-flame {
    position: absolute;
    width: 6px;
    height: 25px;
    background: linear-gradient(to top, #ff0000 0%, #ff6600 50%, #0066ff 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: trackFlameFlicker 0.8s ease-in-out infinite alternate;
    opacity: 0.7;
}

.track-flame-1 { top: 10px; left: 20px; animation-delay: 0s; }
.track-flame-2 { top: 15px; right: 25px; animation-delay: 0.3s; }
.track-flame-3 { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: 0.6s; }

@keyframes trackFlameFlicker {
    0% {
        transform: scaleY(1) scaleX(1) rotate(-1deg);
        opacity: 0.5;
    }
    100% {
        transform: scaleY(1.2) scaleX(0.8) rotate(1deg);
        opacity: 0.9;
    }
}

.play-btn {
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.track-artwork:hover .play-btn {
    transform: scale(1.2);
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 40px rgba(0, 102, 255, 0.8);
}

.track-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.track-info {
    color: #cccccc;
    font-size: 0.9rem;
}

.soundcloud-link {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-soundcloud {
    background: #ff5500;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: 2px solid #ff5500;
}

.btn-soundcloud:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.4);
    background: #cc4400;
}

.btn-soundcloud i {
    margin-right: 10px;
}

/* Merchandise Section */
.merch-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.merch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 40%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background: #111111;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 100px;
}

.stat-number {
    display: block;
    font-family: 'Metal Mania', cursive;
    font-size: 2rem;
    color: #ff0000;
    text-shadow: 
        0 0 10px #ff0000,
        2px 2px 0px #000000;
}

.stat-label {
    font-size: 0.9rem;
    color: #0066ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #0066ff;
}

.about-image {
    text-align: center;
}

.artist-photo {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff0000, #0066ff);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #ffffff;
    box-shadow: 
        0 0 50px rgba(255, 0, 0, 0.3),
        0 0 100px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.photo-flames {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.photo-flame {
    position: absolute;
    width: 8px;
    height: 30px;
    background: linear-gradient(to top, #ff0000 0%, #ff6600 50%, #0066ff 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: photoFlameFlicker 1s ease-in-out infinite alternate;
    opacity: 0.6;
}

.photo-flame-1 { top: 50px; left: 50px; animation-delay: 0s; }
.photo-flame-2 { top: 80px; right: 60px; animation-delay: 0.4s; }
.photo-flame-3 { bottom: 70px; left: 70px; animation-delay: 0.8s; }
.photo-flame-4 { bottom: 50px; right: 50px; animation-delay: 1.2s; }

@keyframes photoFlameFlicker {
    0% {
        transform: scaleY(1) scaleX(1) rotate(-2deg);
        opacity: 0.4;
    }
    100% {
        transform: scaleY(1.3) scaleX(0.7) rotate(2deg);
        opacity: 0.8;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #000000;
    text-align: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(0, 102, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.2),
        0 0 50px rgba(0, 102, 255, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px currentColor;
}

.contact-info {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #cccccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.email-link {
    color: #0066ff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 0 10px #0066ff;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
}

.footer-777 {
    color: #ff0000;
    font-family: 'Metal Mania', cursive;
    text-shadow: 0 0 5px #ff0000;
}

.footer-skull {
    color: #0066ff;
    text-shadow: 0 0 5px #0066ff;
}

.footer-logo h3 {
    color: #ffffff;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
}

.footer-links a:hover {
    color: #0066ff;
    text-shadow: 0 0 5px #0066ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title .title-777 {
        font-size: 2rem;
    }

    .hero-title .title-main {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
        gap: 1rem;
    }

    .artist-photo {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        gap: 1rem;
    }

    .hero-flames {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title .title-777 {
        font-size: 1.8rem;
    }

    .hero-title .title-main {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .track-card,
    .social-link {
        padding: 1rem;
    }

    .artist-photo {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        min-width: auto;
    }

    .nav-logo h1 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0000, #0066ff);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(255, 0, 0, 0.4),
        0 0 30px rgba(0, 102, 255, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    border-top-color: #0066ff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Product Cards for Shopify */
.product-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.05), rgba(0, 102, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 10px 30px rgba(255, 0, 0, 0.2),
        0 0 50px rgba(0, 102, 255, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.product-price {
    font-size: 1.1rem;
    color: #ff0000;
    font-weight: 600;
    text-shadow: 0 0 5px #ff0000;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(45deg, #ff0000, #0066ff);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    box-shadow:
        0 4px 15px rgba(255, 0, 0, 0.3),
        0 0 30px rgba(0, 102, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}