/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6f8;
    color: #2c2c2c;
    line-height: 1.6;
}

header {
    background: #1f2937;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
    .logo {
        display: none;
    }
}
.logo {
    height: 48px;
}

nav a {
    color: #f9fafb;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #60a5fa;
}

main {
    max-width: 960px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    padding-bottom: 0.1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

footer {
    background: #f1f5f9;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    margin-top: 3rem;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
}

.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #2563eb;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

section {
    margin-bottom: 3rem;
}

.hero {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 0;
}


.why-name {
    padding: 1rem;
    border-left: 4px solid #3b82f6;
    background-color: #f9fafb;
    border-radius: 8px;
}

.about-dev {
    background-color: #fef9f5;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.social-links {
    background-color: #f9fafb;
    border-left: 4px solid #00bcd4;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    padding-left: 0;
    list-style: none;
    margin-top: 1rem;
}

.social-icons li {
    display: inline-block;
}

.social-icons a img {
    width: 32px;
    height: 32px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.social-icons a:hover img {
    filter: none;
}

.need-help {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 25vh;
    text-align: center;
    padding-bottom: 1.5rem;
}

.store-icons {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding-left: 0;
    margin-top: 1rem;
    align-items: center;
}

.store-icons li {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.store-icons a img,
.store-icons li img {
    width: 48px;
    height: 48px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.store-icons a:hover img {
    filter: none;
}

/* Coming Soon styles */
.store-icons li.coming-soon img {
    filter: grayscale(80%) brightness(70%);
    cursor: default;
}

.soon-label {
    position: absolute;
    bottom: -1.4rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}


.carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
}

.carousel img {
    height: 200px;
    border-radius: 8px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.grid-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.grid-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); }


/* Basic styles */
header {
    background: #1e293b;
    color: white;
    padding: 0.5rem 1rem;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}


