/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    padding-top: 80px; /* Add space for fixed navbar */
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1000;
    padding: 10px 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-brand img {
    width: 75px;
    height: auto;
    margin-right: 6px;
    object-fit: contain;
    padding: 0;
    vertical-align: middle;
    display: inline-block;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    font-weight: 700;
    color: #f8fafc;
    text-decoration: none;
    height: 60px;
}

.nav-brand i {
    margin-right: 8px;
    color: #8b5cf6;
    font-size: 1.3em;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 6px;
    font-size: 0.9em;
}

.nav-link:hover {
    color: #f8fafc;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #cbd5e1;
    transition: all 0.3s ease;
}

/* Main content */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
    min-height: calc(100vh - 140px);
}

/* Cards */
.card {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.card-header {
    margin-bottom: 35px;
    text-align: center;
}

.card-header h2 {
    font-size: 2em;
    color: #f8fafc;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-header h2 i,
.card-header h1 i {
    margin-right: 15px;
    color: #8b5cf6;
}

.card-header p {
    color: #94a3b8;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Forms */
.secret-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #f1f5f9;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

textarea {
    width: 100%;
    min-height: 140px;
    padding: 18px;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
    resize: vertical;
    transition: all 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: rgba(15, 15, 35, 0.9);
}

textarea::placeholder {
    color: #64748b;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 16px 18px;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: rgba(15, 15, 35, 0.9);
}

input[readonly] {
    background-color: rgba(15, 15, 35, 0.6);
    color: #94a3b8;
    border-color: rgba(139, 92, 246, 0.2);
}

.char-count {
    text-align: right;
    margin-top: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn i {
    margin-right: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(71, 85, 105, 0.3);
}

.btn-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 85, 105, 0.4);
}

.btn-secondary.success {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Input groups */
.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
}

.input-group .btn {
    min-width: auto;
    padding: 14px 20px;
}

/* Results */
.result {
    margin-top: 30px;
    padding: 30px;
    background: rgba(15, 15, 35, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.success-message {
    display: flex;
    align-items: center;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.success-message i {
    margin-right: 12px;
    font-size: 1.2em;
}

.link-container {
    margin-bottom: 25px;
}

.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 20px;
    color: #f59e0b;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    text-align: left;
    justify-content: flex-start;
    margin-top: 1.2rem;
}

.warning i {
    margin-right: 12px;
    margin-top: 0;
    color: #f59e0b;
    vertical-align: middle;
}

.warning strong {
    margin-right: 8px;
}

.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 20px;
    color: #ef4444;
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.error i {
    margin-right: 12px;
    margin-top: 2px;
    color: #ef4444;
}

.hidden {
    display: none !important;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.feature i {
    font-size: 2.5em;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.feature h3 {
    color: #f8fafc;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Reveal section */
.reveal-section {
    text-align: center;
}

.secret-container {
    margin: 30px 0;
}

.secret-display {
    position: relative;
}

.secret-display textarea {
    background: rgba(15, 15, 35, 0.9);
    border: 2px solid rgba(139, 92, 246, 0.4);
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
    min-height: 120px;
}

.copy-secret-btn {
    margin-top: 15px;
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

.destruction-notice {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 20px;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    font-weight: 600;
}

.destruction-notice i {
    margin-right: 12px;
    color: #ef4444;
}

/* Error card */
.error-card {
    text-align: center;
}

.error-header {
    margin-bottom: 25px;
}

.error-header i {
    font-size: 3em;
    color: #ef4444;
    margin-bottom: 20px;
}

.error-header h2 {
    color: #ef4444;
    font-size: 2em;
    font-weight: 700;
}

.error-content {
    margin-bottom: 30px;
}

.error-content p {
    color: #94a3b8;
    font-size: 1.1em;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Info boxes */
.info-box, .help-section {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.info-box h3, .help-section h3 {
    color: #f8fafc;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.info-box h3 i, .help-section h3 i {
    margin-right: 12px;
    color: #8b5cf6;
}

.info-box ul, .help-section ul {
    list-style: none;
    padding: 0;
}

.info-box li, .help-section li {
    color: #94a3b8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.info-box li:before, .help-section li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

.info-box li:last-child, .help-section li:last-child {
    margin-bottom: 0;
}

.help-content p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Footer */
footer {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 50px 40px 30px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #f8fafc;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-section h3 i {
    margin-right: 10px;
    color: #8b5cf6;
}

.footer-section h4 {
    color: #f8fafc;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    color: #94a3b8;
    display: flex;
    align-items: center;
}

.footer-links li i {
    margin-right: 8px;
    color: #8b5cf6;
    font-size: 0.9em;
    width: 14px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #f8fafc;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: #8b5cf6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    color: #a855f7;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    color: #64748b;
    font-size: 0.9em;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.badge i {
    margin-right: 6px;
    font-size: 0.8em;
}

/* New page styles */

/* API Documentation styles */
.api-section {
    margin-bottom: 40px;
}

.api-section h3 {
    color: #f8fafc;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.api-section h3 i {
    margin-right: 10px;
    color: #8b5cf6;
}

.api-endpoint {
    background: rgba(30, 30, 50, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.endpoint-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.method {
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85em;
    text-transform: uppercase;
}

.method.post {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.method.get {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.path {
    font-family: 'Monaco', 'Menlo', monospace;
    background: rgba(15, 15, 35, 0.6);
    padding: 6px 12px;
    border-radius: 6px;
    color: #e2e8f0;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

pre {
    background: rgba(15, 15, 35, 0.8);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    overflow-x: auto;
    margin: 15px 0;
}

code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #e2e8f0;
    font-size: 0.9em;
    line-height: 1.4;
}

.security-features {
    list-style: none;
    padding: 0;
}

.security-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #94a3b8;
}

.security-features li i {
    margin-right: 12px;
    color: #8b5cf6;
    width: 20px;
}

.error-codes {
    display: grid;
    gap: 15px;
}

.error-code {
    display: flex;
    align-items: center;
    background: rgba(30, 30, 50, 0.4);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.error-code .code {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    margin-right: 15px;
    min-width: 60px;
    text-align: center;
}

.error-code .description {
    color: #94a3b8;
}

/* Status page styles */
.status-overview {
    text-align: center;
    margin: 40px 0;
}

.status-indicator {
    display: inline-block;
    padding: 30px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
}

.status-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.status-dot.operational {
    background: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.status-services h3 {
    color: #f8fafc;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.status-services h3 i {
    margin-right: 10px;
    color: #8b5cf6;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 30, 50, 0.4);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 15px;
}

.service-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.service-status.operational {
    color: #22c55e;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.metric-card {
    background: rgba(30, 30, 50, 0.4);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
}

.metric-value {
    font-size: 2em;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 8px;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9em;
}

.security-checks {
    display: grid;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    color: #94a3b8;
}

.check-item i {
    margin-right: 12px;
    width: 20px;
}

.text-success {
    color: #22c55e !important;
}

/* Support page styles */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.support-card {
    background: rgba(30, 30, 50, 0.4);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(30, 30, 50, 0.6);
}

.support-card i {
    font-size: 2.5em;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.support-card h3 {
    color: #f8fafc;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: rgba(30, 30, 50, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question h4 {
    color: #f8fafc;
    margin: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    color: #94a3b8;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 16px 20px;
}

.faq-question i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.resource-list {
    display: grid;
    gap: 15px;
}

.resource-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(30, 30, 50, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.resource-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(30, 30, 50, 0.6);
}

.resource-item i {
    font-size: 1.5em;
    color: #8b5cf6;
    margin-right: 20px;
    width: 30px;
}

.resource-item h4 {
    color: #f8fafc;
    margin-bottom: 5px;
}

.resource-item p {
    color: #94a3b8;
    margin: 0;
}

/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background: rgba(30, 30, 50, 0.4);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
}

.contact-card i {
    font-size: 2.5em;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.contact-info {
    background: rgba(15, 15, 35, 0.6);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 0.9em;
    line-height: 1.6;
}

.contact-form {
    margin: 30px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

select {
    width: 100%;
    padding: 16px 18px;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

select option {
    background: rgba(15, 15, 35, 0.95);
    color: #e2e8f0;
    padding: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.info-item {
    background: rgba(30, 30, 50, 0.4);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.info-item h4 {
    color: #f8fafc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-item h4 i {
    margin-right: 8px;
    color: #8b5cf6;
}

.community-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.community-link {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    color: #8b5cf6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.community-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.community-link i {
    margin-right: 8px;
}

/* Policy pages styles */
.policy-date {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-top: 15px;
    display: inline-block;
}

.policy-content {
    margin-top: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    color: #f8fafc;
    font-size: 1.3em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.policy-section h3 i {
    margin-right: 10px;
    color: #8b5cf6;
}

.data-types {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.data-type {
    background: rgba(30, 30, 50, 0.4);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.data-type h4 {
    color: #f8fafc;
    margin-bottom: 10px;
}

.protection-list {
    list-style: none;
    padding: 0;
}

.protection-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #94a3b8;
    line-height: 1.6;
}

.protection-list li i {
    margin-right: 10px;
    color: #8b5cf6;
    margin-top: 3px;
    flex-shrink: 0;
}

.prohibited-list {
    list-style: none;
    padding: 0;
}

.prohibited-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #94a3b8;
}

.prohibited-list li i {
    margin-right: 10px;
    width: 16px;
}

.text-danger {
    color: #ef4444 !important;
}

.security-commitment h4 {
    color: #f8fafc;
    margin: 20px 0 15px;
    font-size: 1.1em;
}

.prohibited-content {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

/* Security page styles */
.security-overview {
    margin: 30px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.principle-card {
    background: rgba(30, 30, 50, 0.4);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(30, 30, 50, 0.6);
}

.principle-card i {
    font-size: 2em;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.principle-card h4 {
    color: #f8fafc;
    margin-bottom: 10px;
}

.security-details {
    margin: 40px 0;
}

.security-section {
    margin-bottom: 40px;
}

.security-section h3 {
    color: #f8fafc;
    font-size: 1.3em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.security-section h3 i {
    margin-right: 10px;
    color: #8b5cf6;
}

.encryption-details, .data-practices {
    display: grid;
    gap: 20px;
}

.encryption-item {
    background: rgba(30, 30, 50, 0.4);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.encryption-item h4 {
    color: #f8fafc;
    margin-bottom: 10px;
}

.practice-item {
    display: flex;
    align-items: flex-start;
    background: rgba(30, 30, 50, 0.4);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.practice-item i {
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.practice-item h4 {
    color: #f8fafc;
    margin-bottom: 5px;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.infra-item {
    background: rgba(30, 30, 50, 0.4);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.infra-item h4 {
    color: #f8fafc;
    margin-bottom: 10px;
}

.threat-protection h4 {
    color: #f8fafc;
    margin: 20px 0 10px;
}

.compliance-items {
    display: grid;
    gap: 15px;
}

.compliance-item {
    display: flex;
    align-items: center;
    background: rgba(30, 30, 50, 0.4);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #94a3b8;
}

.compliance-item i {
    margin-right: 12px;
}

/* Mobile responsive for new pages */
@media (max-width: 768px) {
    .support-grid, .contact-grid, .principles-grid, .infrastructure-grid, .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .endpoint-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .community-links {
        flex-wrap: wrap;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    /* Mobile navbar */
    .navbar {
        padding: 10px 15px;
    }
    
    .nav-brand img {
        width: 80px;
        margin-right: 8px;
        padding: 6px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding-top: 50px;
        transition: left 0.3s ease;
        border-right: 1px solid rgba(139, 92, 246, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 80%;
        text-align: center;
        padding: 15px 20px;
        margin-bottom: 10px;
        border-radius: 12px;
        font-size: 1em;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    main {
        padding: 30px 15px;
    }
    
    .card {
        padding: 30px 25px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .copy-secret-btn {
        width: 100%;
    }
    
    .secret-display textarea {
        min-height: 100px;
    }
    
    /* Mobile footer */
    footer {
        padding: 40px 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .card-header h2 {
        font-size: 1.6em;
    }
    
    .nav-brand img {
        width: 70px;
        margin-right: 6px;
        padding: 4px 0;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 120px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .result, .features {
    animation: fadeIn 0.6s ease-out;
}

/* Loading spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .api-section {
        margin-bottom: 28px;
    }
    .api-endpoint {
        padding: 14px;
        font-size: 0.97em;
        word-break: break-word;
    }
    .info-box {
        padding: 14px 12px;
        font-size: 0.97em;
        word-break: break-word;
    }
    pre {
        padding: 12px;
        font-size: 0.93em;
        border-radius: 6px;
        max-width: 100vw;
        overflow-x: auto;
        white-space: pre-wrap;
        word-break: break-all;
    }
    code {
        font-size: 0.93em;
        word-break: break-all;
    }
    .endpoint-header {
        font-size: 1em;
    }
    .api-section h3 {
        font-size: 1.08em;
    }
}

@media (max-width: 480px) {
    .api-endpoint, .info-box {
        padding: 8px 4px;
        font-size: 0.92em;
    }
    pre, code {
        font-size: 0.9em;
        padding: 8px;
    }
    .api-section h3 {
        font-size: 1em;
    }
}

/* Authentication Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 2rem;
}

.auth-card {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.auth-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
    font-size: 1.875rem;
    font-weight: 700;
}

.auth-header p {
    color: #94a3b8;
    font-size: 1rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
    font-weight: 600;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: rgba(15, 15, 35, 0.9);
}

.btn-block {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.auth-footer p {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.auth-footer a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    color: #a78bfa;
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-header {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dashboard-header:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.dashboard-header h2 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
    font-size: 1.875rem;
    font-weight: 700;
}

.dashboard-header p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.user-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.status-badge.premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.status-badge.free {
    background: rgba(139, 92, 246, 0.2);
    color: #cbd5e1;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.status-badge.trial {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #f8fafc;
    border: 1px solid #f59e0b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.expires-text {
    color: #94a3b8;
    font-size: 0.875rem;
}

.trial-countdown {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.trial-countdown.warning {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    animation: warning-pulse 1s infinite;
}

.trial-countdown.expired {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@keyframes warning-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.secrets-section h3 {
    color: #f8fafc;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.secrets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.secret-card {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.secret-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.secret-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.secret-header h4 {
    color: #f8fafc;
    font-weight: 600;
    margin: 0;
}

.secret-status .status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status.expired {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status.limit-reached {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.secret-description {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.secret-meta {
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.secret-actions {
    display: flex;
    gap: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.empty-state i {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.empty-state h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.empty-state p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Pricing Styles */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-header p {
    color: #94a3b8;
    font-size: 1.125rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.pricing-card.featured {
    border-color: #8b5cf6;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #f8fafc;
}

.price .period {
    color: #94a3b8;
    font-size: 1.125rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li.disabled {
    color: #64748b;
}

.plan-features li i.fa-check {
    color: #4ade80;
}

.plan-features li i.fa-times {
    color: #f87171;
}

.plan-action {
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
}

.pricing-features {
    margin-bottom: 4rem;
}

.pricing-features h3 {
    text-align: center;
    color: #f8fafc;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

.pricing-faq {
    margin-bottom: 2rem;
}

.pricing-faq h3 {
    text-align: center;
    color: #f8fafc;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(30, 30, 50, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.faq-item h4 {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-item p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(30, 30, 50, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close {
    color: #94a3b8;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: color 0.3s ease;
}

.close:hover {
    color: #f8fafc;
}

.modal-content h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-content p {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-content pre {
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #e2e8f0;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    max-width: 400px;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-info {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    margin-left: 1rem;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 0.7;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Additional responsive styles for new components */
@media (max-width: 768px) {
    .auth-container {
        padding: 1rem;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .dashboard-container {
        padding: 1rem;
    }
    
    .secrets-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .flash-messages {
        position: static;
        margin: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dashboard-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .user-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .secret-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .secret-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.section-spacing {
    margin-bottom: 2rem;
}

/* Brand link (navbar logo + text) */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.35rem;
}
.brand-link img {
  margin-right: 12px;
  width: 75px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.brand-link span {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1.5rem;
} 