:root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #00ff00;
    --secondary-color: #ff00ff;
    --border-color: #4a4a4a;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Press Start 2P', cursive;
    line-height: 1.6;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

main {
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden; /* Ensures the image doesn't overflow */
    padding-top: 30px; /* Add more space at the top */
}

/* Full-width Hero Section */
.hero-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
    margin-bottom: 40px;
    overflow: hidden;
}

.logo {
    font-size: 2.5em;
    color: var(--accent-color);
    text-shadow: 4px 4px 0 var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: glitch 10s infinite;
}

.tagline {
    font-size: 1em;
    color: var(--text-color);
    /* margin-bottom: 20px; */
}

/* Content Sections */
.content {
    margin-bottom: 60px;
}

.intro {
    text-align: center;
    margin-bottom: 60px;
}

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

.highlight-box {
    background: #2a2a2a;
    padding: 20px;
    text-align: center;
    border: 4px solid var(--border-color);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.highlight-icon {
    font-size: 2em;
    margin-bottom: 15px;
}

.highlight-box h2 {
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.highlight-box p {
    font-size: 0.8em;
}

/* Our Journey Section */
.our-journey {
    margin-bottom: 60px;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.journey-milestone {
    padding: 15px;
    background: #2a2a2a;
    border-left: 4px solid var(--accent-color);
    font-size: 0.8em;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.journey-milestone:hover {
    transform: translateX(5px);
    border-color: var(--secondary-color);
}

/* Pixel Border Style */
.pixel-border {
    border: 4px solid var(--border-color);
    padding: 20px;
    position: relative;
    margin: 20px 0;
}

.pixel-border::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--accent-color);
    pointer-events: none;
}

/* Content Page Styles */
.privacy-content h2,
.documentation-content h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.privacy-content p,
.documentation-content p {
    margin-bottom: 15px;
    font-size: 0.8em;
}

/* Section Styles */
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--border-color);
}

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

.policy-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 0.9em;
}

.policy-section h4 {
    color: var(--accent-color);
    margin: 25px 0 15px;
    font-size: 0.85em;
    padding-left: 10px;
    border-left: 3px solid var(--accent-color);
}

ul ul {
	margin-top: 10px;
}

.policy-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    font-size: 0.8em;
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    padding-left: 15px;
}

.policy-section li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Card Styles */
.card-section {
    background: rgba(42, 42, 42, 0.7);
    border: 2px solid var(--border-color);
    padding: 20px;
    margin: 20px 0;
    transition: transform 0.2s ease;
}

.card-section:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

/* Example Styles */
.example-container {
    margin: 30px 0;
    padding: 15px;
    background: #2a2a2a;
    border-left: 4px solid var(--border-color);
}

.example-container strong {
    color: var(--secondary-color);
}

/* Quality Badge Styles */
.quality-badge {
    display: inline-block;
    padding: 5px 10px;
    margin: 10px 0;
    font-size: 0.7em;
    border: 2px solid;
}

.quality-badge-needs-work {
    border-color: #ff4d4d;
    color: #ff4d4d;
}

.quality-badge-getting-there {
    border-color: #ffcc00;
    color: #ffcc00;
}

.quality-badge-approved {
    border-color: #00cc66;
    color: #00cc66;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 15px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.video-container iframe:hover {
    border-color: var(--accent-color);
}

/* Image Styles */
.responsive-image {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--border-color);
    margin: 15px 0;
    transition: all 0.3s ease;
}

.responsive-image:hover {
    border-color: var(--accent-color);
    transform: scale(1.01);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border: none;
    display: block;
    transition: all 0.3s ease;
}

.hero-image:hover {
    border-color: var(--accent-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
}

.footer-links {
    margin-top: 20px;
    font-size: 0.7em;
}

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

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    margin-top: 20px;
    border: none;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Animation */
@keyframes glitch {
    0% {
        text-shadow: 4px 4px 0 var(--secondary-color);
    }
    25% {
        text-shadow: -4px -4px 0 var(--secondary-color);
    }
    50% {
        text-shadow: 4px -4px 0 var(--secondary-color);
    }
    75% {
        text-shadow: -4px 4px 0 var(--secondary-color);
    }
    100% {
        text-shadow: 4px 4px 0 var(--secondary-color);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 1.8em;
    }

    .tagline {
        font-size: 0.8em;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    main {
        padding: 10px;
    }
}
