/* 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: #333;
    background: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.5px;
}

.navigation {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #333;
    border-radius: 1px;
}

/* Main content */
.main-content {
    padding: 80px 0;
    text-align: center;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    font-weight: 400;
}

.stealth-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.stealth-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.info-section {
    max-width: 600px;
    margin: 0 auto;
}

.info-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-section {
    background: #f9f9f9;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
}

.contact-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.email-link {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    color: #4ade80;
}

/* Privacy Policy Styles */
.privacy-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.privacy-subtitle {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.privacy-content-wrapper {
    line-height: 1.7;
}

.privacy-section {
    margin-bottom: 32px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #333;
}

.privacy-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.privacy-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.privacy-section li {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.privacy-section strong {
    color: #333;
    font-weight: 600;
}

.privacy-section a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #f5f5f5;
    padding: 16px;
    border-radius: 6px;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info strong {
    color: #333;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 14px;
}

/* Background animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(5px);
        opacity: 0.4;
    }
}

/* Use smaller logo for mobile devices */
@media (max-width: 768px) {
    .logo-image {
        content: url('acktrackedlogo40x40.png');
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .navigation {
        justify-content: center;
    }
    
    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .contact-section {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .info-text {
        font-size: 16px;
    }
    
    .email-link {
        font-size: 16px;
    }
}
