:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #4cc9f0;
    --error-color: #f72585;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --primary: #4361ee;
    --primary-light: #4895ef;
    --secondary: #3f37c9;
    --dark: #1b263b;
    --light: #f8f9fa;
    --danger: #f72585;
    --warning: #f77f00;
    --success: #4cc9f0;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7ff;
    color: var(--dark);
    line-height: 1.6;
    /* padding: 20px; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Header */
.site-header {
    width: 100%;
    background-color: #4361ee;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    object-fit: cover;
    position: relative;
    top: 2px;
    filter: drop-shadow(0 0 3px rgb(255, 255, 255));
}

.logo a span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: bolder;
    background: linear-gradient(to right, #aa00ff, #0015ff, #1b9400, #ffae00, #ff0000, #ffae00, #1b9400, #0015ff, #aa00ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.logo a {
    text-decoration: none;
    color: white;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
    color: aqua;
}





.container {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    margin: 20px 0;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.subtitle {
    color: #64748b;
    font-size: 16px;
    font-weight: 400;
}

.password-input-container {
    position: relative;
    margin-bottom: 25px;
}

.password-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    outline: none;
}

.password-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.toggle-visibility {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    font-size: 18px;
}

.strength-meter {
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 25px;
    overflow: hidden;
}

.strength-meter-fill {
    height: 100%;
    width: 0%;
    background-color: var(--danger);
    border-radius: 4px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.strength-label {
    font-weight: 600;
    font-size: 14px;
}

.strength-value {
    font-weight: 700;
    font-size: 14px;
}

.requirements {
    margin-top: 30px;
}

.requirements h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.requirement-list {
    list-style: none;
}

.requirement-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.requirement-icon {
    margin-right: 10px;
    font-size: 18px;
}

.requirement-met {
    color: var(--success);
}

.requirement-not-met {
    color: #94a3b8;
}

.time-to-crack {
    background-color: #f1f5f9;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.time-to-crack h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark);
}

.time-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.suggestions {
    margin-top: 30px;
}

.suggestions h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.suggestion-list {
    list-style: none;
}

.suggestion-item {
    padding: 12px 15px;
    background-color: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.suggestion-item::before {
    content: "💡";
    margin-right: 10px;
    font-size: 16px;
}

/* SEO Content Styling */
.seo-section {
    max-width: 960px;
    margin: 40px auto;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    font-size: 1rem;
    color: var(--dark-color);
}

.seo-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.seo-section h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.seo-section p {
    margin-bottom: 15px;
}

.seo-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.seo-section ul li {
    margin-bottom: 10px;
}

.seo-section ol {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 20px;
}

.seo-section ol li {
    margin-bottom: 10px;
}

.seo-section strong {
    color: var(--primary-color);
}

.seo-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.seo-section a:hover {
    text-decoration: none;
}


footer {
    text-align: center;
    /* margin-top: 30px; */
    color: #64748b;
    font-size: 14px;
    margin-bottom: 30px;
}

footer a {
    text-decoration: none;
    font-weight: bold;
    color: rgb(255, 166, 0);
}

footer a:hover {
    color: #aa00ff;
}

@media (max-width: 640px) {
    .container {
        padding: 30px 20px;
    }
}

@media (min-width: 300px) and (max-width:350px) {
    .nav-links a {
        font-size: small;
        margin: 0 0 0 10px;
    }

    .site-header {
        padding: 5px 10px;
    }
}