/* Enhanced Modern Crypto Style for Themis Coin */
/* Colors inspired by justice/theme: Deep navy (#0f172a slate-900 feel), richer gold accent (#f59e0b amber-500 for modern crypto vibe), 
   subtle gradients, better contrast for accessibility, softer shadows */

:root {
    --bg-primary: #0f172a;          /* Dark slate for modern crypto look */
    --bg-secondary: #1e293b;        /* Lighter slate for sections */
    --accent: #f59e0b;              /* Modern amber-gold for energy and crypto vibe */
    --accent-light: #fbbf24;        /* Hover/gradient variant */
    --text-primary: #f1f5f9;        /* High contrast white */
    --text-secondary: #cbd5e1;      /* Softer gray for secondary text */
    --border: #334155;             /* Subtle border */
    --card-bg: #1e293b80;          /* Semi-transparent cards for depth */
    --gradient-start: #0f172a;
    --gradient-end: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.04rem;
}
.cta-button {
    background: linear-gradient(45deg, var(--accent), var(--accent-light));
    color: #0f172a;
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(45deg, var(--accent-light), var(--accent));
}

/* Header */
header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 60px;
    width: auto;
    border-radius: 50%; /* Perfect for your circular Themis logo */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 5%;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.mobile-menu .cta-button {
    align-self: flex-start;
    margin-top: 1rem;
}
/* Footer */
footer {
    background-color: var(--bg-primary);
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid var(--border);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 10px;
}
.social-fa{
    display: flex;
    justify-content: center;
    gap: 1.5rem;

}

.icono{
    width: 60px;
    height: 60px; 
}

.social-links a {
    color: var(--text-secondary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-4px);
}

.disclaimer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}
@media (max-width: 767px) {
    body {
        font-size: 16px;
        line-height: 26px;
    }
    
    .nav-links {
        display: none;
    }
      .mobile-menu-btn {
        display: flex;
    }
        .icono{
        transform: translateY(-13px);
     }

}
@media (max-width: 480px) {
    nav {
        padding: 1rem 5%;
    }
}