
        :root {
            --werewolf-color: #a8a8a8;
            --werecoyote-color: #d4a017;
            --background-dark: #121212;
            --background-light: #1e1e1e;
            --text-primary: #e0e0e0;
            --text-secondary: #b0b0b0;
            --accent: #d4a017;
        }
		
*, *::before, *::after {
  box-sizing: border-box;
}

h1 {
    text-align: center;
    font-family: montserrat;
}

h2 {
    font-family: inter;
    margin-bottom: -2px;
}

p {
  font-size: 1.5em;
}

em {
	color:red;
}

#fbvhdjr a {
	text-decoration: none;
	color: var(--text-secondary);
}


        body {
            background-color: var(--background-dark);
            color: var(--text-primary);
            margin: 0;
			padding: 0;
            line-height: 1.6;
			font-family: 'Space Mono", monospace', sans-serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: var(--background-light);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            color: var(--accent);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('bg_forest.jpg') no-repeat center center/cover;
            color: var(--text-primary);
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: var(--background-dark);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #f5c842;
        }

        section {
            padding: 55px 0;
        }

        .section-title {
            font-size: 2.7rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--accent);
        }

        .two-column {
            display: flex;
            gap: 40px;
        }

        .column {
            flex: 1;
        }

        .column img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: var(--background-light);
        }

        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #333;
        }

        .comparison-table th {
            background-color: var(--werewolf-color);
            color: var(--background-dark);
            font-weight: 600;
        }

        .comparison-table tr:nth-child(even) {
            background-color: rgba(212, 160, 23, 0.1);
        }

        /* Data Section */
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .data-card {
            background-color: var(--background-light);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .data-card h3 {
            color: var(--accent);
            margin-top: 0;
        }

        .data-card img {
            width: 100%;
            border-radius: 5px;
        }

        /* Future Section */
        .future-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .future-card {
            background-color: var(--background-light);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .future-card h3 {
            color: var(--accent);
            margin-top: 0;
        }

        .conclusions {
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1534570122622-38e0283b8a86?q=80&w=1974&auto=format&fit=crop') no-repeat center center/cover;
        }

        .conclusions h2 {
            font-size: 3rem;
            color: var(--accent);
        }

        .conclusions p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
		

		.expandable { cursor: pointer; transition: 0.3s; }
		.expandable:hover { opacity: 0.7; }


		.modal {
		  display: none;
		  position: fixed;
		  z-index: 1000;
		  left: 0; top: 0;
		  width: 100%; height: 100%;
		  background-color: rgba(0,0,0,0.9);
		  justify-content: center;
		  align-items: center;
		}

		.modal-content {
		  max-width: 90%;
		  max-height: 90%;
		  animation: zoom 0.3s;
		}

		.close-btn {
		  position: absolute;
		  top: 20px;
		  right: 35px;
		  color: #ff0000;
		  font-size: 60px;
		  font-weight: bold;
		  cursor: pointer;
		}

		@keyframes zoom {
		  from {transform: scale(0.7)} 
		  to {transform: scale(1)}
		}
		
		.high { color: #2ecc71;}
		.low { color: #e74c3c; }



        footer {
            background-color: var(--background-light);
            padding: 30px 0;
            text-align: center;
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .two-column {
                flex-direction: column;
            }

            .nav-links {
                display: none;
            }
        }