/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    color: #00FF00;
    background-color: #000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Header */
header {
    background-color: #111;
    padding: 20px 0;
    color: #00FF00;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    text-transform: uppercase;
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: #111;
    padding: 20px 0;
    color: #00FF00;
    text-align: center; /* Center the text within the navbar */
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar li {
    display: inline;
}

.navbar a {
    text-decoration: none;
    color: #00FF00;
    font-size: 1.2em;
    padding: 10px 20px;
    transition: background-color 0.3s ease-in-out;
}

.navbar a:hover {
    background-color: #333;
}

/* Hero Section */
#hero {
    background-color: #222;
    color: #00FF00;
    padding: 100px 0;
    text-align: center;
    border-radius: 10px;
}

#hero h2 {
    font-size: 3em;
    margin: 0;
}

#hero p {
    font-size: 1.5em;
}

/* Section */
.section {
    margin: 50px 0;
    padding: 20px 0;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.service-item {
    margin: 20px 0;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    color: #00FF00;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item h3 {
    font-size: 2em;
    margin: 0;
}

.service-item p {
    font-size: 1.2em;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    color: #00FF00;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #00FF00;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: #222;
    color: #00FF00;
}

form button {
    background-color: #4CAF50;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease-in-out;
}

form button:hover {
    background-color: #45a049;
}

/* Footer */
footer {
    background-color: #111;
    padding: 20px;
    color: #00FF00;
    text-align: center;
}

.social-media a {
    margin: 0 10px;
    color: #00FF00;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.social-media a:hover {
    color: #007BFF;
}

/* About Page Styles */
#about-us, #our-mission, #team, #values {
    margin: 50px 0;
    padding: 20px 0;
}

#about-us h2, #our-mission h2, #team h2, #values h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #00FF00;
}

.team-member img {
    border-radius: 50%;
    margin-right: 20px;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5em;
    margin: 0;
}

.team-member p {
    font-size: 1.2em;
}

.values ul {
    list-style-type: none;
    padding: 0;
}

.values ul li {
    margin: 10px 0;
    font-size: 1.2em;
}

.values ul li strong {
    font-weight: bold;
}

/* Contact Page Styles */
#contact-info, #contact-form {
    margin: 50px 0;
    padding: 20px 0;
}

#contact-info h2, #contact-form h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-item {
    flex: 1 1 45%;
    margin: 20px 0;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    color: #00FF00;
}

.contact-item:hover {
    transform: scale(1.05);
}

.contact-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-item p, .contact-item a {
    font-size: 1.2em;
    color: #00FF00;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Services Page Styles */
#services-intro, #services-list, #importance-of-self-custody {
    margin: 50px 0;
    padding: 20px 0;
}

#services-intro h2, #importance-of-self-custody h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.service-item {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
    color: #00FF00;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1.2em;
}

#importance-of-self-custody p {
    font-size: 1.2em;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .container {
        padding: 10px;
    }

    header nav ul {
        flex-direction: column;
    }

    .contact-details {
        flex-direction: column;
    }

    .contact-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    #hero h2 {
        font-size: 2.5em;
    }

    #hero p {
        font-size: 1.2em;
    }

    .section h2 {
        font-size: 2em;
    }

    .service-item h3 {
        font-size: 1.2em;
    }

    .service-item p {
        font-size: 1em;
    }

    .team-member {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-member img {
        margin: 0 0 20px 0;
    }

    .team-member h3 {
        font-size: 1.2em;
    }

    .team-member p {
        font-size: 1em;
    }

    .values ul li {
        font-size: 1em;
    }

    .contact-item h3 {
        font-size: 1.2em;
    }

    .contact-item p, .contact-item a {
        font-size: 1em;
    }

    #importance-of-self-custody p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    #hero h2 {
        font-size: 2em;
    }

    #hero p {
        font-size: 1em;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .service-item h3 {
        font-size: 1em;
    }

    .service-item p {
        font-size: 0.8em;
    }

    .team-member h3 {
        font-size: 1em;
    }

    .team-member p {
        font-size: 0.8em;
    }

    .values ul li {
        font-size: 0.8em;
    }

    .contact-item h3 {
        font-size: 1em;
    }

    .contact-item p, .contact-item a {
        font-size: 0.8em;
    }

    #importance-of-self-custody p {
        font-size: 0.8em;
    }
}


/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: '3270 Nerd Font', monospace;
    background-color: #000;
    color: #0f0;
    line-height: 1.6;
}

/* Container */
#container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #000;
    color: #0f0;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
}

#site-logo .site-title {
    font-size: 2em;
    margin: 0;
    letter-spacing: 2px;
}

#site-logo .site-description {
    font-size: 1em;
    color: #666;
    margin: 0;
}

/* Navigation */
nav#site-primary-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav#site-primary-nav li {
    margin: 0 15px;
}

nav#site-primary-nav a {
    text-decoration: none;
    color: #0f0;
    font-weight: bold;
}

nav#site-primary-nav a:hover {
    text-decoration: underline;
}

/* Main content */
main#site-main {
    background-color: #111;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: #000;
    color: #0f0;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Column content */
.site-column-content {
    padding: 20px;
    background-color: #111;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Page title */
.page-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0f0;
}

/* Entry content */
.entry-content {
    margin-top: 20px;
}

/* Responsive blog-post embeds */
.wp-block-embed__wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 20px;
}

.wp-embedded-content iframe {
    width: 100%;
    height: 338px;
    border: none;
}

/* Footer buttons */
.footer-button-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-button-container button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #f00;
    /* Add any other styling as needed */
}

/* Episode styles */
.episode {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.episode-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.episode-thumbnail {
    width: 100%;
    height: auto;
}

.episode-content {
    padding: 20px;
}

.episode-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.episode-description {
    font-size: 1rem;
    color: #FF00FF;
    margin-bottom: 20px;
}

.episode-meta {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

.episode-play-button {
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.episode-play-button:hover {
    background-color: #003d82;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .episode-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .episode-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* Cypherpunk aesthetic */
body {
    background-image: url('');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container {
    border-color: #00ff00;
}

h1 {
    color: #00ff00;
}

a {
    color: #00ff00;
}

a:hover {
    color: #ff00ff;
}

.episode-title {
    color: #00ff00;
}

.episode-description {
    color: #ff00ff;
}







.blog-post {
	display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
} 

.blog-intro h2 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #0f0;
}

.blog-intro p {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
}

.blog-intro-second {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem;
}

.donation-card {
    display: flex;
    flex-direction: column;
    background-color: 00ff00;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.donation-card p {
    margin: 1rem 0;
    color: #0f0;
    font-size: 1rem;
    line-height: 1.5;
}

.donation-card p strong {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #0f0;
}


.monero-address {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.monero-address strong {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #0f0;
}


	

/* Product styles */
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.product {
    background-color: #000;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 48%;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product h2 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #0f0;
}

.product p {
    font-size: 1em;
    color: #ff00ff;
    margin-bottom: 10px;
}

.product button {
    background-color: #f00;
    color: #0f0;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.product button a {
    color: #0f0;
    text-decoration: none;
}

.product button:hover {
    background-color: #900;
}



/* Video styles */
.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.video {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 48%;
    text-align: center;
}

.video iframe {
    width: 100%;
    height: 315px;
    border-radius: 5px;
}

.video h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

.video p {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
}


/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    color: #00FF00;
    background-color: #000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Header */
header {
    background-color: #111;
    padding: 20px 0;
    color: #00FF00;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    text-transform: uppercase;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    text-decoration: none;
    color: #00FF00;
    font-size: 1.2em;
    padding: 10px 20px;
    transition: background-color 0.3s ease-in-out;
}

header nav ul li a:hover {
    background-color: #333;
    border-radius: 5px;
}

/* Gallery Styles */
#gallery {
    margin: 50px 0;
    padding: 20px 0;
    text-align: center;
}

#gallery h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #00FF00;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    flex: 1 1 calc(25% - 20px);
    background-color: #111;
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    border-radius: 5px;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
    }
}







/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    color: #00FF00;
    background-color: #000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Bio Section */
#bio {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #444;
}

.bio-pic-container {
    flex: 0 0 150px;
    margin-right: 20px;
}

.bio-pic {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 3px solid #00FF00;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.bio-pic:hover {
    transform: scale(1.05);
}

.bio-text {
    flex: 1;
    color: #00FF00;
}

.bio-text h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
    text-transform: uppercase;
}

.bio-text p {
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    #bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bio-pic-container {
        margin: 0 0 20px;
    }
}






/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    color: #00FF00;
    background-color: #000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Bio Section */
#bio {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #444;
}

.bio-pic-container {
    flex: 0 0 300px;
    margin-right: 20px;
}

.bio-pic {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 3px solid #00FF00;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.bio-pic:hover {
    transform: scale(1.05);
}

.bio-text {
    flex: 1;
    color: #00FF00;
}

.bio-text h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
    text-transform: uppercase;
}

.bio-text p {
    margin: 0 0 10px;
    line-height: 1.6;
}

.bio-text h3 {
    margin: 20px 0 10px;
    font-size: 1.2em;
    color: #00FF00;
}

.buy-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1em;
    color: #000;
    background-color: #00FF00;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.buy-button:hover {
    background-color: #00FF00;
    transform: scale(1.05);
}








/* Responsive Design */
@media (max-width: 768px) {
    #bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bio-pic-container {
        margin: 0 0 20px;
    }
}

/* Sticky Navigation Bar */
.sticky-top {
    position: sticky;
    top: 0;
    background-color: #111;
    z-index: 1000;
}

/* Footer */
.footer-links a {
    margin: 0 10px;
    color: #00FF00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF5733;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    padding: 10px;
    border: none;
    background-color: #00FF00;
    color: #111;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #FF5733;
}



















.share-buttons {
    margin-top: 10px;
}

.share-link {
    color: #32CD32; /* Native green color */
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #32CD32;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.share-link:hover {
    background-color: #32CD32;
    color: white;
}

































.konami-instructions {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    border-radius: 8px;
}

.konami-steps {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.konami-steps .step {
    font-size: 24px;
    margin: 0 10px;
    animation: bounce 1s infinite;
}

.konami-steps .step:nth-child(2n) {
    animation-delay: 0.2s;
}

.konami-steps .step:nth-child(3n) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.konami-instructions h2 {
    color: purple;
}

.konami-instructions p {
    color: purple;
}


















