* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #03060b;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 110, 253, 0.1);
    padding: 14px 32px;
    border-radius: 60px;
    border: 1px solid rgba(13, 110, 253, 0.3);
    backdrop-filter: blur(5px);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.logo:hover {
    border-color: #0d6efd;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
    transform: translateY(-2px);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(145deg, #fff, #6ea5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge {
    background: #0d6efd;
    color: #03060b;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.header-desc {
    color: #b0b0b0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 900px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

.tool-card {
    background: rgba(8, 18, 28, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 30px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #4a9eff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    border-color: #0d6efd;
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -10px rgba(13, 110, 253, 0.4);
}

.tool-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1);
    color: #fff;
}

.tool-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #b0d0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tool-description {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
    font-size: 0.95rem;
}

.tool-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #0d6efd;
    font-weight: 600;
    transition: all 0.2s ease;
}

.tool-card:hover .tool-footer {
    color: #fff;
    transform: translateX(5px);
}

.tool-stats {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(13, 110, 253, 0.2);
    font-size: 0.85rem;
    color: #888;
}

.tool-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tool-stats i {
    color: #0d6efd;
    font-size: 0.8rem;
}

/* Info Section */
.info-section {
    margin: 60px 0 40px;
}

.info-card {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    backdrop-filter: blur(5px);
}

.info-card i {
    font-size: 2rem;
    color: #0d6efd;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.info-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid #0d6efd;
    border-radius: 40px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-link:hover {
    background: #0d6efd;
    color: #03060b;
    box-shadow: 0 0 20px #0d6efd;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(13, 110, 253, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-link {
    color: #888;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-link:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

.copyright {
    color: #666;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-desc {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .tool-card {
        padding: 25px;
    }
    
    .tool-card h3 {
        font-size: 1.5rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 8px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .tool-stats {
        flex-direction: column;
        gap: 8px;
    }
}