/* ArcadeVault - Privacy Policy Page Styles */
:root {
    --primary: #ff00ff;
    --secondary: #00ffff;
    --accent: #ffff00;
    --dark: #0f0f30;
    --darker: #050520;
    --light: #f0f0ff;
    --card-bg: rgba(15, 15, 48, 0.8);
    --header-bg: rgba(5, 5, 32, 0.95);
    --shadow-neon: 0 0 10px rgba(255, 0, 255, 0.7);
    --gradient-neon: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    --font-heading: 'Tahoma', 'Arial', sans-serif;
    --font-body: 'Verdana', 'Geneva', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
    text-shadow: 0 0 5px var(--accent);
}

ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.neon-header {
    background: var(--header-bg);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--primary);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--light);
    text-shadow: 0 0 5px var(--primary), 0 0 15px var(--primary);
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
    transform: scale(1.05);
}

.search-wrapper {
    width: 300px;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-form input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 2px solid var(--primary);
    border-radius: 25px 0 0 25px;
    background: rgba(15, 15, 48, 0.5);
    color: var(--light);
    outline: none;
    transition: all 0.3s ease;
}

.search-form input:focus {
    background: rgba(15, 15, 48, 0.8);
    box-shadow: 0 0 8px var(--primary);
}

.search-form button {
    padding: 0.6rem 1.2rem;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 0 25px 25px 0;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

/* Policy Header */
.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.8rem;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.7);
    margin-bottom: 0.5rem;
}

.policy-date {
    color: rgba(240, 240, 255, 0.7);
    font-style: italic;
}

/* Policy Content */
.policy-content {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 0 0 5px var(--primary);
    border: 1px solid rgba(255, 0, 255, 0.3);
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    margin-bottom: 1.2rem;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.policy-section strong {
    color: var(--accent);
}

.policy-section ul {
    list-style-type: disc;
}

.contact-info {
    background: rgba(15, 15, 48, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    margin-top: 1.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* Footer */
.site-footer {
    background: var(--header-bg);
    padding: 2rem 0;
    border-top: 1px solid var(--primary);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 5px var(--accent);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-wrapper {
        width: 100%;
    }
    
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-content {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
} 