/* Clawfery Landing Page Styles */

body {
    background-color: #0D0E12;
    color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0D0E12;
}
::-webkit-scrollbar-thumb {
    background: #2A2E3D;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF5722;
}

/* Glowing Effects */
.glow-orange {
    box-shadow: 0 0 35px -5px rgba(255, 87, 34, 0.35);
}
.glow-subtle {
    box-shadow: 0 0 20px -2px rgba(255, 87, 34, 0.15);
}
.bg-grid-pattern {
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 30%, #FF8A65 70%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #FF8A65 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card backdrop glass */
.glass-card {
    background: rgba(22, 24, 31, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
    border-color: rgba(255, 87, 34, 0.4);
}

/* Pulse Dot */
@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(0.95); opacity: 0.8; }
}
.pulse-dot {
    animation: pulse-ring 2s infinite ease-in-out;
}
