/* style.css */
:root {
    --primary: #6a11cb;
    --secondary: #2575fc;
    --dark: #0f172a;
    --light: #f8fafc;
    --success: #00ff88;
    --danger: #ff4757;
    --warning: #ffa502;
    --youtube: #ff0000;
    --telegram: #26a5e4;
    --instagram: #e4405f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: var(--light);
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(37, 117, 252, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo i {
    color: var(--secondary);
    font-size: 2rem;
}

.logo strong {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: rgba(37, 117, 252, 0.2);
    transform: translateY(-2px);
}

.nav-links a i {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 5% 3rem;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9)), 
                url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1600');
    background-size: cover;
    margin-bottom: 3rem;
}

.gradient-text {
    background: linear-gradient(90deg, #6a11cb, #2575fc, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    font-weight: 800;
}

.tagline {
    font-size: 1.3rem;
    color: #94a3b8;
    margin: 1rem auto 2rem;
    max-width: 600px;
}

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

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat i {
    color: var(--success);
    margin-right: 10px;
}

/* Tools Grid */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.section-title i {
    color: var(--warning);
    margin-right: 10px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tool-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.tool-icon.youtube { background: rgba(255, 0, 0, 0.2); color: var(--youtube); }
.tool-icon.telegram { background: rgba(38, 165, 228, 0.2); color: var(--telegram); }
.tool-icon.phone { background: rgba(0, 255, 136, 0.2); color: var(--success); }
.tool-icon.location { background: rgba(255, 71, 87, 0.2); color: var(--danger); }
.tool-icon.music { background: rgba(255, 165, 2, 0.2); color: var(--warning); }
.tool-icon.add { background: rgba(106, 17, 203, 0.2); color: var(--primary); }

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tool-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.tool-tag {
    display: inline-block;
    background: rgba(37, 117, 252, 0.2);
    color: var(--secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: monospace;
    border: 1px solid var(--secondary);
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 2px solid rgba(37, 117, 252, 0.3);
    padding: 3rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section h3 i {
    margin-right: 10px;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--light);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
}

.credits {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat {
        width: 80%;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}
