/* Custom Styles */
:root {
    --red-primary: #dc2626;
    --red-secondary: #ef4444;
    --orange-primary: #f97316;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1f1f1f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--red-primary), var(--red-secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--red-secondary), var(--orange-primary));
}

/* Console card animations */
.console-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for cards */
.console-card:nth-child(1) { animation-delay: 0.1s; }
.console-card:nth-child(2) { animation-delay: 0.2s; }
.console-card:nth-child(3) { animation-delay: 0.3s; }
.console-card:nth-child(4) { animation-delay: 0.4s; }
.console-card:nth-child(5) { animation-delay: 0.5s; }
.console-card:nth-child(6) { animation-delay: 0.6s; }

/* Hover effects */
.console-card:hover {
    animation: none;
}

/* Step numbers */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-primary), var(--red-secondary));
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu.hidden {
    max-height: 0;
    overflow: hidden;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #2d2d2d 25%, #3d3d3d 50%, #2d2d2d 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Line clamp utility */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tool item styling */
.tool-item {
    padding: 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--red-primary);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: rgba(220, 38, 38, 0.2);
    transform: translateX(5px);
}

/* Tip item styling */
.tip-item {
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--red-secondary);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

.warning-item {
    padding: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-left: 3px solid var(--orange-primary);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

/* Step item styling */
.step-item {
    padding: 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--red-primary);
    background: rgba(220, 38, 38, 0.2);
    transform: translateX(5px);
}

/* Gallery image hover effect */
.gallery-item {
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-item {
        padding: 1rem;
    }
}

/* Print styles */
@media print {
    nav, footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

