* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #475569;
    --accent-color: #3b82f6;
    --bg-color: #ffffff;
    --text-color: #1e293b;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    background: var(--bg-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    padding: 60px 40px 40px;
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    text-align: center;
}

.header {
    margin-bottom: 30px;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    margin: 0 auto;
    border-radius: 2px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.description {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.7;
}

.links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.link-button svg {
    width: 20px;
    height: 20px;
}

/* Projects Section */
.projects {
    margin: 40px 0;
}

.projects-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.project-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    border-color: var(--accent-color);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.project-logo {
    width: 160px;
    height: 160px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.store-badges {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.store-badge {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.store-badge img {
    height: 60px;
    width: auto;
    display: block;
}

.store-badge.google-play img {
    height: 88px;
}
.project-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.project-description {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.website-link {
    margin: 15px 0;
    font-size: 1rem;
}

.website-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.website-link a:hover {
    color: #1e3a8a;
    transform: translateX(3px);
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 40px 30px 30px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .link-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .projects-title {
        font-size: 1.5rem;
    }
    
    .project-card {
        padding: 25px;
    }
    
    .project-name {
        font-size: 1.3rem;
    }
    
    .project-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .name {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 30px 20px 20px;
    }
}
