/* Allgemeine Stile */
body {
    font-family: 'Verdana', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #999;
    background-color: #000;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Playbutton-Symbol */
.play-button {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
}
.play-button .play-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 3px)); 
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.play-button:hover .play-icon {
    border-left-color: #cc0000;
}

/* Musikplayer-Popup (bereits teilweise in styles.css definiert, hier ergänzt) */
.player-container {
    background-color: #000;
    color: #999;
    padding: 20px;
    text-align: center;
    height: 100%;
}

.player-container audio {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.player-container .track-title {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 10px;
}




/* Header */
header {
    background-color: #000;
    color: #999;
    padding: 33px;
    margin-top: 20px;
}

header p {
    margin: 15px 15px 1.5cm;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #999;
    text-decoration: none;
}

header a:link {
    margin: 0 0 10px;
	padding: 10px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #999;
    text-decoration: none;
}
header a:hover {
    margin: 0 0 10px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #cc0000;
    text-decoration: none;
}
header a:visited {
    margin: 0 0 10px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #999;
    text-decoration: none;
}
header a:active {
    margin: 0 0 10px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #fff;
    text-decoration: none;
}

header h1 {
  
	padding: 50px;
    font-size: 2rem;
}

.xlink {
		padding: 20px;
	}

/* Video-Galerie */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-gallery article {
    background-color: #222;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.video-gallery h2 {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 10px;
}

/* Video- und Tweet-Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Verhältnis */
    height: 0;
    overflow: hidden;
}

.video-container video,
.video-container .twitter-tweet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    background-color: #000; /* Einheitlicher Hintergrund */
}

.video-container video:not([controls]) {
    cursor: pointer;
}

/* Anpassung für Twitter-Tweet-Embeds */
.video-container .twitter-tweet {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.video-container .twitter-tweet iframe {
    width: 102% !important;
    height: 102% !important;
    border: 0 !important;
    border-radius: 8px !important;
    position: absolute !important;
    top: -2 !important;
    left: -2 !important;
}

/* Verstecke Tweet-Text und andere Elemente, falls gewünscht */
.video-container .twitter-tweet .twitter-tweet-rendered > *:not(.EmbeddedVideo) {
    display: none !important;
}

.token {
	color: #Cc0000;
}

/* Footer */
footer {
    background-color: #111;
    color: #ccc;
    padding: 15px 0;
    margin-top: 20px;
}

footer p {
    margin: 0 0 10px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #999;
    text-decoration: none;
}

footer a:link {
    margin: 0 0 10px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #999;
    text-decoration: none;
}
footer a:hover {
    margin: 0 0 10px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #cc0000;
    text-decoration: none;
}
footer a:visited {
    margin: 0 0 10px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #999;
    text-decoration: none;
}
footer a:active {
    margin: 0 0 10px;
    font-size: 1rem;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
    color: #fff;
    text-decoration: none;
}

/* Pop-up-Stile für buycoins.html */
#popup-content {
    background-color: #000;
    color: #999;
    padding: 20px;
    max-width: 560px;
    margin: 20px auto;
}

#popup-content h1 {
    font-size: 2rem;
    color: #ccc;
    margin: 0 0 20px;
}

#popup-content h2 {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 10px;
}

#popup-content h3 {
    font-size: 1.1rem;
    color: #ccc;
    margin: 10px 0 5px;
}

#popup-content p {
    font-size: 1rem;
    color: #999;
    margin: 0 0 10px;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
}

#popup-content ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 0 0 20px;
    color: #999;
}

#popup-content li {
    font-size: 1rem;
    color: #999;
    margin-bottom: 10px;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
}

#popup-content a:link {
    color: #cc0000;
    text-decoration: none;
    font-family: Verdana, Geneva, sans-serif;
    font-style: normal;
}

#popup-content a:hover {
    color: #cc0000;
    text-decoration: none;
}

#popup-content a:visited {
    color: #cc0000;
    text-decoration: none;
}

#popup-content a:active {
    color: #fff;
    text-decoration: none;
}

.close-btnpop {
    display: block;
    margin: 10px auto;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

p.subtitle {
    font-size: 1rem;
    color: #ccc;
    font-weight: bold;
    margin: 10px 0;
}

/* Responsives Design */
@media (max-width: 600px) {
    .video-gallery video,
    .video-gallery .twitter-tweet {
        height: 150px;
    }
    .video-gallery .video-container video,
    .video-gallery .video-container .twitter-tweet {
        height: 100%;
    }
    #popup-content {
        padding: 10px;
        margin: 30px;
    }
    #popup-content h1 {
        font-size: 1.5rem;
    }
    #popup-content h2 {
        font-size: 1rem;
    }
    #popup-content h3 {
        font-size: 0.9rem;
    }
}.tokenadress {
	color: #cc0000;
}
