:root {
	--primary: #00b3b3; 
	--secondary: #16212b; 
	--accent: #00d9d9;
	--light: #f4f7f6;
	--success: #2ecc71;
	--card-bg: rgba(255, 255, 255, 0.05);
	--border: rgba(255, 255, 255, 0.1);
	--text-muted: #94a3b8;
}

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

body { 
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
	line-height: 1.6; 
	color: white; 
	scroll-behavior: smooth;
	background-color: var(--secondary); 
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-image: linear-gradient(rgba(22, 33, 43, 0.4), rgba(22, 33, 43, 0.4)), url('/images/trashblock_head.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Navigation */
nav { 
	background: rgba(22, 33, 43, 0.7); 
	backdrop-filter: blur(5px); 
	color: white; 
	padding: 1.2rem; 
	position: fixed; 
	width: 100%; 
	top: 0; 
	z-index: 1000; 
	display: flex; 
	justify-content: space-around; 
	align-items: center; 
	border-bottom: 2px solid rgba(0, 179, 179, 0.5);
}
nav a { 
	color: white; 
	text-decoration: none; 
	margin: 0 15px; 
	font-size: 0.9rem; 
	font-weight: 500; 
	transition: 0.3s; 
}
nav a:hover { 
	color: var(--primary); 
}

/* Hero Section */
.hero { 
	height: 135vh; 
	display: flex; 
	flex-direction: column; 
	justify-content: center; 
	align-items: center; 
	text-align: center; 
	padding: 80px 20px 20px 20px; 
}
.hero h1 { 
	font-size: 3.8rem; 
	margin-bottom: 1.5rem; 
	line-height: 1.1; 
	font-weight: 800; 
}
.hero p { 
	font-size: 1.3rem; 
	max-width: 700px; 
	margin-bottom: 2.5rem; 
	color: #b4f5f5; 
}

/* Content Sections */
.content-section {
	background: rgba(22, 33, 43, 0.85);
	padding: 80px 20px;
	backdrop-filter: blur(3px);
}

.content-section-description {
	background: rgba(22, 33, 43, 0.85);
	padding: 50px 20px 100px 20px;
	backdrop-filter: blur(3px);
}

.manual-section {
	padding: 1px;
	backdrop-filter: blur(3px);
}

/* Features & Cards */
.features, .description { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	gap: 30px; 
	max-width: 1200px; 
	margin: auto; 
}
.feature-card, .description-card { 
	background: rgba(255, 255, 255, 0.05); 
	padding: 40px; 
	border-radius: 15px; 
	border: 1px solid rgba(255,255,255,0.1); 
	transition: 0.4s; 
}
.feature-card:hover, .description-card:hover { 
	border-color: var(--primary); 
	transform: translateY(-5px); 
	background: rgba(255, 255, 255, 0.1); 
}
.feature-card i { 
	font-size: 3rem; 
	color: var(--primary); 
	display: block; 
	margin-bottom: 20px; 
	font-style: normal; 
}

.description-card p {
	margin-bottom: 20px;
	text-align: justify;
}
.description-card h3 {
	color: var(--primary);
	margin: 25px 0 15px 0;
}

/* Gallery & Lightbox */
.image-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 40px auto;
}
.gallery-item {
	overflow: hidden;
	border-radius: 15px;
	border: 2px solid rgba(0, 179, 179, 0.3);
	cursor: pointer;
	transition: 0.3s;
}
.gallery-item:hover { 
	border-color: var(--primary); 
	transform: scale(1.02); 
}
.gallery-item img { 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
	display: block; 
}

.lightbox {
	display: none;
	position: fixed;
	z-index: 2000;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(10, 20, 30, 0.95);
	backdrop-filter: blur(10px);
	justify-content: center;
	align-items: center;
}
.lightbox:target { display: flex; }
.lightbox img { 
	max-width: 90%; 
	max-height: 85%; 
	border-radius: 10px; 
	box-shadow: 0 0 30px rgba(0, 179, 179, 0.4); 
}
.close-lightbox { 
	position: absolute; 
	top: 30px; 
	right: 40px; 
	color: white; 
	font-size: 40px; 
	text-decoration: none; 
	font-weight: bold; 
}

/* Products & Buttons */
.cta-box { padding: 100px 20px; text-align: center; }
.product-card { 
	background: white; 
	max-width: 500px; 
	margin: auto; 
	padding: 40px; 
	border-radius: 20px; 
	border: 2px solid var(--primary); 
	color: #333; 
}
.price { 
	font-size: 3.5rem; 
	font-weight: 900; 
	color: var(--secondary); 
	margin: 20px 0; 
}
.price-asterisk {
	font-size: 2rem;	
	color: var(--primary);
	vertical-align: super;
	margin-left: 3px;
	font-weight: bold;
}

.btn { 
	background: var(--primary); 
	color: white; 
	padding: 20px 45px; 
	text-decoration: none; 
	border-radius: 8px; 
	font-weight: bold; 
	font-size: 1.2rem; 
	transition: 0.3s; 
	display: inline-block; 
	box-shadow: 0 5px 20px rgba(0,179,179,0.4); 
	border: none; 
}
.btn:hover { 
	background: #008a8a; 
	transform: scale(1.02); 
}

.product-card .btn {
	display: block; 
	width: 100%;
	max-width: 100%;
	padding: 18px 15px;	 
	margin: 0 auto 20px auto; 
	text-align: center;
}

.product-card .btn-secondary {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 12px 15px;
	margin: 15px auto;
	text-align: center;
	background: transparent;
	color: #666;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s ease;
	cursor: pointer;
}
.product-card .btn-secondary:hover {
	background: #f5f5f5;
	color: var(--secondary);
	border-color: var(--secondary);
}

#paypal-button-container {
	width: 100%;
	max-width: 100%;
}

/* Checklists */
.check-list {
	list-style: none !important;
	padding-left: 0 !important;
	margin-left: 20px !important;
}

.check-list li {
	position: relative;
	padding-left: 35px !important;
	margin-bottom: 15px;
	color: white; 
}
	
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 22px;
	height: 22px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300b3b3'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

.check-list li.notice-delay {
	font-size: 0.8rem !important; 
	color: #d35400 !important;	 
	line-height: 1.4;
	margin-top: -2px;
	margin-bottom: 15px;
	padding-left: 25px !important; 
}
.check-list li.notice-delay::before {
	top: 2px;
	width: 15px;
	height: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d35400'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

.product-card .check-list li {
	color: #333;
}

/* Graphics */
.technical-graphic-container {
	max-width: 1190px; 
	margin: 40px auto; 
	padding: 0 20px; 
	display: flex;
	justify-content: center;
}
.technical-graphic {
	width: 100%; 
	max-width: 1190px; 
	height: auto; 
	display: block;
	border: none; 
	-webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 40%, transparent 100%);
	mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Scroll To Top Button */
.scroll-top-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	background: rgba(22, 33, 43, 0.85); 
	border: 2px solid var(--primary);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999; 
	transition: 0.3s ease;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(0, 179, 179, 0.3);
}
.scroll-top-btn::before {
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300b3b3'%3E%3Cpath d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}
.scroll-top-btn:hover {
	background: var(--primary);
	transform: translateY(-3px);
}
.scroll-top-btn:hover::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");
}

/* FAQ Accordion */
.trashblock-faq-section {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-family: inherit; 
}
.trashblock-faq-section h2 {
	text-align: center;
	margin-bottom: 24px;
	font-size: 1.8rem;
}
.trashblock-faq-section .faq-item {
	background: rgba(255, 255, 255, 0.05); 
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: background 0.2s ease;
}
.trashblock-faq-section .faq-item[open] {
	background: rgba(255, 255, 255, 0.08);
}
.trashblock-faq-section .faq-question {
	padding: 16px 20px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.trashblock-faq-section .faq-question::after {
	content: "+";
	font-size: 1.4rem;
	font-weight: 300;
	transition: transform 0.2s ease;
}
.trashblock-faq-section .faq-item[open] .faq-question::after {
	transform: rotate(45deg);
}
.trashblock-faq-section .faq-question::-webkit-details-marker {
	display: none;
}
.trashblock-faq-section .faq-answer {
	padding: 0 20px 20px 20px;
	font-size: 0.95rem;
	line-height: 1.6;
	opacity: 0.85;
}
.trashblock-faq-section .faq-answer a {
	color: #3498db; 
	text-decoration: underline;
}
.trashblock-faq-section .faq-answer a:hover {
	color: #2980b9; 
}

/* Social Buttons */
.social-buttons-wrapper {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 40px auto;
}
.social-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
}
.icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
}
.facebook-btn {
	background-color: #1877f2;
	border: 1px solid #1877f2;
}
.whatsapp-btn {
	background-color: #25d366;
	border: 1px solid #25d366;
}
.facebook-btn:hover { 
	background-color: #145dbf; 
	border-color: #145dbf;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}
.whatsapp-btn:hover { 
	background-color: #1ebe57; 
	border-color: #1ebe57;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Footer */
footer { 
	background: var(--secondary); 
	color: rgba(255,255,255,0.7); 
	padding: 60px 20px; 
	text-align: center; 
	border-top: 3px solid var(--primary); 
}
footer a { 
	color: var(--primary); 
	text-decoration: none; 
}
.footer-footnote {
	margin-bottom: 20px;
	font-size: 0.85rem;
	opacity: 0.8;
	color: rgba(255, 255, 255, 0.9);
}

/* Legal Pages (AGB, Datenschutz, Widerruf) */
#agb-content h1, 
#datenschutz-content h1, 
#widerruf-content h1 {
	color: var(--primary);
	margin-bottom: 30px;
	font-size: 2.2rem;
}

#agb-content h2, 
#datenschutz-content h2, 
#widerruf-content h2 {
	color: var(--primary);
	margin: 35px 0 15px;
	font-size: 1.5rem;
	border-bottom: 1px solid rgba(0, 179, 179, 0.2);
	padding-bottom: 5px;
}

#datenschutz-content h3 {
	color: var(--accent);
	margin: 25px 0 10px;
	font-size: 1.2rem;
}

#agb-content p, 
#datenschutz-content p, 
#widerruf-content p {
	margin-bottom: 15px;
	text-align: justify;
	color: rgba(255, 255, 255, 0.9);
}

#agb-content ul, #agb-content ol,
#datenschutz-content ul, #datenschutz-content ol,
#widerruf-content ul {
	margin-left: 30px;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.9);
}

#agb-content li, 
#datenschutz-content li {
	margin-bottom: 5px;
}

#agb-content a, 
#datenschutz-content a, 
#widerruf-content a {
	color: var(--primary);
	text-decoration: none;
}
#datenschutz-content a:hover {
	text-decoration: underline;
}

/* Widerrufsformular */
.form-group {
	margin-bottom: 20px;
	text-align: left;
}
.form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent);
}
.form-group input, 
.form-group textarea {
	width: 100%;
	padding: 12px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(22, 33, 43, 0.6);
	color: white;
	font-family: inherit;
	font-size: 1rem;
}
.form-group input:focus, 
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 8px rgba(0, 179, 179, 0.4);
}

.w-submit-btn {
	width: 100%;
	background: var(--primary);
	color: white;
	padding: 15px;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
	margin-top: 10px;
}
.w-submit-btn:hover {
	background: var(--accent);
	box-shadow: 0 4px 15px rgba(0, 179, 179, 0.4);
}

/* Danke-Seite (danke.php) */
.container {
	max-width: 700px;
	margin: 10px auto 60px;
	padding: 0 20px;
}

.thank-you-card { 
	background: rgba(22, 33, 43, 0.85); 
	backdrop-filter: blur(3px);
	padding: 50px 40px; 
	border-radius: 15px; 
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.success-icon {
	width: 80px;
	height: 80px;
	fill: var(--success);
	margin-bottom: 25px;
}

.subtitle {
	color: var(--accent);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 30px;
}

.info-text { 
	color: rgba(255, 255, 255, 0.85); 
	font-size: 1.05rem; 
	margin-bottom: 35px; 
	line-height: 1.8;
	text-align: left;
	background: rgba(0, 0, 0, 0.2);
	padding: 25px;
	border-radius: 8px;
	border-left: 4px solid var(--primary);
}

.btn-back {
	display: inline-block;
	background: var(--primary);
	color: white;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 8px;
	font-weight: bold;
	transition: 0.3s;
}
.btn-back:hover {
	background: var(--accent);
	box-shadow: 0 4px 15px rgba(0, 179, 179, 0.4);
	transform: translateY(-2px);
}

/* Blocklist-Seite (/blacklists/index.php) */
        body::before {
            background-image: linear-gradient(rgba(22, 33, 43, 0.4), rgba(22, 33, 43, 0.4)), url('/images/trashblock_head.webp');
        }
        .container {
            max-width: 900px;
        }
        header {
            padding-bottom: 1.5rem;
        }
        h1 {
            margin: 0 0 0.5rem 0;
            font-size: 2.2rem;
            color: var(--primary);
        }
        .grid {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .card {
            background-color: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            transition: border-color 0.2s ease, transform 0.2s ease;
        }
        .card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.75rem;
            flex-wrap: wrap;
            gap: 10px;
        }
        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin: 0;
			width: 70%;
        }
        .badge {
            font-size: 0.8rem;
            background: rgba(0, 179, 179, 0.15);
            color: var(--accent);
            border: 1px solid rgba(0, 179, 179, 0.3);
            padding: 0.25rem 0.6rem;
            border-radius: 6px;
            font-family: monospace;
			width: 180px;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            flex-wrap: wrap;
        }
        .meta strong {
            color: rgba(255, 255, 255, 0.9);
        }
        .links {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 0.85rem;
            font-size: 1.2rem;
            font-weight: bold;
            color: white;
            background-color: rgba(0, 179, 179, 0.9);
            border: 1px solid var(--border);
            text-decoration: none;
            border-radius: 6px;
            transition: background-color 0.2s, color 0.2s, border-color 0.2s;
        }
        .btn:hover {
            background-color: rgb(0, 138, 138);
            border-color: rgba(255, 255, 255, 0.3);
            color: #fff;
			transform: scale(1.02)
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #00b3b3;
        }
        .btn-primary:hover {
            background-color: var(--accent);
            border-color: var(--accent);
            color: #ffffff;
        }

/* ==========================================================================
   Media Queries (Responsive Layouts)
   ========================================================================== */

@media (max-width: 768px) {
	body { 
		background-attachment: fixed;
		background-image: linear-gradient(rgba(26, 37, 47, 0.6), rgba(26, 37, 47, 0.8)), url('images/trashblock_head_klein.webp');
		background-size: cover;
		background-position: center center;
	}

	.hero {
		height: auto;
		min-height: 80vh;
		padding-top: 120px; 
		padding-bottom: 50px;
	}

	.hero h1 { 
		font-size: 2.2rem; 
	}

	.hero p { 
		font-size: 1.1rem; 
	}

	.content-section, .content-section-description {
		padding: 50px 15px; 
	}

	.scroll-top-btn {
		bottom: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}

	nav {
		flex-direction: column;
		justify-content: center;
		padding: 0.8rem 1rem;
		gap: 10px;
	}

	nav .links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px 12px;
	}

	nav a {
		margin: 0;
		font-size: 0.85rem;
	}

	.container {
		margin-top: 120px;
	}

	.thank-you-card {
		padding: 35px 20px;
	}
}

@media (max-width: 480px) {
	.social-buttons-wrapper {
		flex-direction: column;
		align-items: center;
	}
}