/* XHYNOUS SOFTWARE COMPANY LTD - Custom Styling */
:root {
    --bg-dark-tech: #0B0F17;
    --bg-tech-card: #131A26;
    --bg-tech-darker: #070A10;
    --accent-blue: #00F0FF;
    --primary-blue: #3B82F6;
    --text-muted-custom: #94A3B8;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark-tech);
    color: #E2E8F0;
    overflow-x: hidden;
}

.bg-dark-tech { background-color: var(--bg-dark-tech) !important; }
.bg-tech-card { background-color: var(--bg-tech-card) !important; }
.bg-tech-darker { background-color: var(--bg-tech-darker) !important; }
.text-accent { color: var(--accent-blue) !important; }
.tracking-wider { letter-spacing: 0.1em; }

/* Backdrop Blur & Glassmorphism */
.bg-tech-glass {
    background: rgba(11, 15, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Gradients & Buttons */
.bg-gradient-tech {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.btn-gradient-accent {
    background: linear-gradient(135deg, #00F0FF 0%, #3B82F6 100%);
    color: #070A10 !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.4);
}

.btn-outline-accent {
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue) !important;
}

.btn-outline-accent:hover {
    background: var(--accent-blue);
    color: #070A10 !important;
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* Pulse Animation */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

/* Hover Lift Cards */
.transition-all { transition: all 0.3s ease; }
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-blue) !important;
}

/* Hero Section */
.hero-title {
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bg-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,240,255,0.15) 0%, rgba(11,15,23,0) 70%);
    pointer-events: none;
}

/* Code Preview Window */
.code-preview {
    background-color: #070A10;
    padding: 1rem;
    border-radius: 8px;
}

/* Footer & Links */
.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--accent-blue);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-tech-card);
    color: #94A3B8;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: var(--accent-blue);
    color: #070A10;
}
