:root {
    --bg-color: #050505;
    --bg-darker: #020202;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-primary: #ff0000;
    --accent-dark: #800000;
    --accent-glow: rgba(255, 0, 0, 0.5);
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --section-padding: 80px 20px;
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

canvas#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section {
    padding: var(--section-padding);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-darker {
    background-color: var(--bg-darker);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
}

.nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}
.nav-logo {
    font-family: 'Cinzel Decorative', 'UnifrakturCook', serif;
    font-size: 2.05rem;
    font-weight: 700;
    background: linear-gradient(to bottom, #ff6a6a, #8b0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 70, 70, 0.18),
        0 0 16px rgba(255, 0, 0, 0.12);
    transition: 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 8px rgba(255, 70, 70, 0.25));
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-cta {
    background: var(--accent-primary);
    color: white !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: 120px;
}

.profile-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    border: 3px solid var(--accent-dark);
}

.profile-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

.hero-title {
    font-family: 'Cinzel Decorative', 'UnifrakturCook', serif;
    font-size: 7.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #ff6a6a, #8b0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 8px rgba(255, 70, 70, 0.18),
        0 0 16px rgba(255, 0, 0, 0.12);
    animation: logoGlow 4s infinite alternate;
    position: relative;
    transition: 0.3s ease;
}

@keyframes logoGlow {
    from { 
        filter: url(#spikyNoise) drop-shadow(0 0 15px rgba(255, 0, 0, 0.3)) brightness(1);
    }
    to { 
        filter: url(#spikyNoise) drop-shadow(0 0 30px rgba(255, 0, 0, 0.6)) brightness(1.2);
    }
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-fast);
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.social-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

.social-btn i {
    width: 24px;
    height: 24px;
    display: block;
}

.social-btn[href*="t.me"] { color: #0088cc; }
.social-btn[href*="wa.me"] { color: #25d366; }
.social-btn[href*="instagram.com"] { 
    color: #e1306c; 
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 12px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-glow);
    background: rgba(40, 0, 0, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.service-btn {
    display: inline-block;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.product-img-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-img-box {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.product-card:hover .product-img-box img {
    transform: scale(1.08);
}

.product-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

.product-card h3 {
    margin-bottom: 10px;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--accent-primary);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    text-align: left;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.branding-box {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transform: rotate(-5deg);
    position: relative;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.05);
}

.branding-box span {
    font-family: 'Pirata One', cursive !important;
    font-size: 7.5rem;
    display: block;
    background: linear-gradient(to bottom, #ff4d4d, #800000) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: url(#spikyNoise) drop-shadow(0 0 15px rgba(255, 0, 0, 0.4)) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.branding-box::before {
    content: 'SAVAGE';
    position: absolute;
    font-family: 'Pirata One', cursive !important;
    font-size: 10rem;
    color: rgba(255, 0, 0, 0.03) !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(10deg);
    z-index: 1;
    pointer-events: none;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.testimonial-author strong {
    display: block;
    color: white;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--accent-primary);
}

/* Contact Section */
.contact-container {
    text-align: center;
    max-width: 800px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.contact-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.telegram {
    background: #0088cc;
    color: white;
}

.contact-btn:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.contact-footer {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #111;
    border: 1px solid var(--accent-primary);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .music-toggle-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Floating Music Toggle Button */
.music-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a0000, #4d0000);
    border: 1px solid var(--accent-primary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.music-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    background: linear-gradient(135deg, #330000, #800000);
}

.music-toggle-btn.playing {
    border-color: #ff3333;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: musicPulse 2s infinite alternate;
}

@keyframes musicPulse {
    from { box-shadow: 0 0 10px rgba(255, 0, 0, 0.3); }
    to { box-shadow: 0 0 25px rgba(255, 0, 0, 0.7); }
}

.music-toggle-btn i {
    width: 22px;
    height: 22px;
    transition: var(--transition-fast);
}

.music-toggle-btn .icon-playing {
    display: none;
}

.music-toggle-btn .icon-muted {
    display: block;
}

.music-toggle-btn.playing .icon-playing {
    display: block;
}

.music-toggle-btn.playing .icon-muted {
    display: none;
}
