
body {
    background: #16161a;
    color: #fff;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

a {
    color: #d4fc54;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #fcf6bd;
    text-decoration: underline;
}

/* NAVBAR */
nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-spin {
    width: 40px;
    height: 40px;
    animation: spin 1.5s linear 1;
}

@keyframes spin {
    from { transform: rotate(0deg);}
    to { transform: rotate(360deg);}
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    font-size: 20px;
    padding: 6px 22px;
    border-radius: 14px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a.active, .nav-links a:hover {
    background: #d4fc54;
    color: #18181b;
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    margin-bottom: 0;
    text-align: center;
}

.hero-title {
    font-size: 60px;
    font-weight: bold;
    color: #d4fc54;
    margin: 20px 0 12px 0;
}

.hero-desc {
    font-size: 24px;
    margin: 0 0 16px 0;
    color: #fff;
}

.hero-launch {
    color: #fff;
    font-size: 18px;
    margin-bottom: 36px;
}

.iphone-img {
    width: 220px;
    height: auto;
    margin: 0 auto 32px auto;
    display: block;
}

.section {
    margin: 38px auto 0 auto;
    max-width: 600px;
    width: 95%;
    background: transparent;
}

/* UPDATES */
.updates-container {
    background: #23232b;
    padding: 32px 30px;
    border-radius: 24px;
    margin: 40px auto 0 auto;
    max-width: 760px;
    width: 95%;
    box-shadow: 0 2px 24px #18181b33;
}

.updates-title {
    font-size: 34px;
    color: #d4fc54;
    font-weight: bold;
    text-align: center;
    margin-bottom: 28px;
}

.updates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.updates-list li {
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #fff;
}

.updates-source, .updates-time {
    font-size: 16px;
    color: #b7bac8;
    background: transparent;
    font-weight: 400;
    padding: 0 8px;
    border-radius: 8px;
}

/* NEWSLETTER */
.newsletter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 34px 0 0 0;
    gap: 10px;
}

.newsletter-bar input[type="email"] {
    padding: 12px;
    border-radius: 14px 0 0 14px;
    border: none;
    font-size: 16px;
    width: 230px;
    outline: none;
    background: #23232b;
    color: #fff;
}

.newsletter-bar button {
    background: #d4fc54;
    color: #18181b;
    border: none;
    padding: 12px 28px;
    border-radius: 0 14px 14px 0;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-bar button:hover {
    background: #c5e96f;
}

.social-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 32px 0 0 0;
}

.social-bar a {
    font-size: 28px;
    color: #d4fc54;
    transition: color 0.2s;
}

.social-bar a:hover {
    color: #fff;
}

.coffee-link {
    font-size: 20px;
    margin-left: 18px;
    text-decoration: underline;
    color: #d4fc54;
    font-weight: 600;
}

@media (max-width: 600px) {
    .hero-title { font-size: 38px;}
    .hero-desc { font-size: 16px;}
    .hero-launch { font-size: 15px;}
    .section, .updates-container { max-width: 99%; padding: 22px 8px;}
    nav { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 8px 0 8px;}
    .nav-links { gap: 8px; }
    .iphone-img { width: 110px; margin-bottom: 24px;}
    .updates-title { font-size: 22px; }
}

::-webkit-scrollbar { width: 0; }
