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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #aeeaff 0%, #d6d6ff 100%);
    color: #182434;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-weight: 700;
    font-size: 28px;
    background: linear-gradient(135deg, #aeeaff, #aeaeea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #7a99b8;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #61bbef;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #aeeaff, #aeaeea);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.signup,
.login {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.signup {
    background: linear-gradient(135deg, #aeeaff, #aeaeea);
    color: #334155;
    box-shadow: 0 4px 15px rgba(174, 234, 255, 0.3);
}

.signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(174, 234, 255, 0.4);
}

.login {
    background: transparent;
    color: #61bbef;
    border: 2px solid #61bbef;
}

.login:hover {
    background: #aeeaff;
    color: #334155;
    transform: translateY(-2px);
}

.hero-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    aspect-ratio: 1280 / 697.5;
    background: #ccefff;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1280 / 697.5;
}

.hero {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(174, 234, 255, 0.10) 0%, rgba(214, 214, 255, 0.10) 100%);
    text-align: center;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #aeeaff, #aeaeea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    color: #7a99b8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tracking-input {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tracking-input input[type="text"] {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

.track-btn {
    background: linear-gradient(135deg, #aeeaff, #aeaeea);
    border: none;
    padding: 16px 32px;
    color: #334155;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.track-btn:hover {
    background: linear-gradient(135deg, #99dcf9, #b7b7e3);
}

section {
    padding: 5px 40px;
}

.section-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #334155;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #3b506d;
    margin-bottom: 20px;
}

.parcel-collection {
    text-align: center;
}

.qr-code {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(174, 234, 255, 0.1), rgba(214, 214, 255, 0.1));
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #61bbef;
    border-radius: 20px;
    border: 2px dashed #b7b7e3;
}

.collect-btn {
    background: linear-gradient(135deg, #aeeaff, #aeaeea);
    color: #334155;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(174, 234, 255, 0.3);
}

.collect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(174, 234, 255, 0.4);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-responsive table {
    min-width: 500px;
}

th {
    background: linear-gradient(135deg, rgba(174, 234, 255, 0.15), rgba(214, 214, 255, 0.15));
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: #7a99b8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

tbody tr:hover {
    background: rgba(174, 234, 255, 0.08);
}

tbody tr:last-child td {
    border-bottom: none;
}

.coming-soon {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(174, 234, 255, 0.08), rgba(214, 214, 255, 0.08));
    border-radius: 20px;
    border: 2px dashed rgba(174, 234, 255, 0.3);
}

.coming-soon div {
    font-size: 24px;
    font-weight: 600;
    color: #61bbef;
}

.about {
    display: flex;
    align-items: center;
    gap: 32px;
}

.about-img {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(174, 234, 255, 0.2), rgba(214, 214, 255, 0.2));
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #61bbef;
}

.about p {
    font-size: 16px;
    color: #7a99b8;
    line-height: 1.7;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-delivered {
    background: rgba(186, 255, 210, 0.2);
    color: #33ae52;
}

.status-ready {
    background: rgba(206, 199, 255, 0.18);
    color: #8679bb;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

form input,
form select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1.5px solid #ccc;
    font-size: 16px;
}

form button {
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #aeeaff, #aeaeea);
    color: #334155;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

form button:hover {
    transform: translateY(-2px);
}

.site-footer {
    padding: 30px 40px;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 768px) {
    header {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    section {
        padding: 1px 20px;
    }

    .section-card {
        padding: 24px;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .tracking-input {
        flex-direction: column;
    }

    .track-btn {
        border-radius: 0 0 16px 16px;
    }
}