@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');
@import url('nav.css');
@import url('profile.css');

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #0f172a;
    color: #e5e7eb;
    padding-top: 80px;
}

header {
    height: 80px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #020617;
    border-bottom: 1px solid #1f2937;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    /* High z-index to stay on top */
    /* position: absolute; */
    /* Reverted */
    /* width: 100%; */
    /* top: 0; */
    /* z-index: 10; */
    transition: all 0.3s ease;
}

header.shrunk {
    height: 50px;
    padding: 0 20px;
    background: rgba(2, 6, 23, 0.95);
    /* Slight transparency */
    backdrop-filter: blur(5px);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

header.shrunk .logo img {
    height: 30px;
}

header.shrunk .btn {
    padding: 6px 14px;
    font-size: 14px;
}

.hero {
    text-align: center;
    padding: 36px 24px;
    width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.btn {
    background: #38bdf8;
    color: #020617;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s;
    display: inline-block;
}

.btn:hover {
    background: #0ea5e9;
}

.btn-outline {
    background: transparent;
    border: 1px solid #38bdf8;
    color: #38bdf8;
}

.btn-outline:hover {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
}

.breadcrumb-link:hover {
    color: #38bdf8 !important;
}

.card {
    background: #020617;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1f2937;
}

.card h3 {
    margin-top: 0;
    color: #38bdf8;
}

.status-active {
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-inactive {
    color: #ef4444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.channel-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

footer {
    text-align: center;
    padding: 40px;
    opacity: 0.6;
    font-size: 14px;
    border-top: 1px solid #1f2937;
    margin-top: 40px;
}

/* Login Page Specific Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.login-card {
    background: #1e293b;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #334155;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-card h2 {
    margin-bottom: 24px;
    color: #38bdf8;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px #38bdf8;
}

.login-btn {
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
}


.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #64748b;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #334155;
}

.divider span {
    padding: 0 10px;
    font-size: 14px;
}

.google-btn {
    background: #fff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}

.google-btn:hover {
    background: #f1f5f9;
}

.secondary-links {
    margin-top: 20px;
    font-size: 14px;
}

.secondary-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 10px;
}

.secondary-links a:hover {
    color: #38bdf8;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 36px;
    }
}