FurorInsula / news.html
TheRagingTechni's picture
A website for my Path Of Titans server, Furor Insula.
eaec17a verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>News & Updates - Furor Insula</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
.font-orbitron { font-family: 'Orbitron', sans-serif; }
.font-rajdhani { font-family: 'Rajdhani', sans-serif; }
.glow-text { text-shadow: 0 0 10px rgba(255, 255, 0, 0.7); }
.news-card { transition: all 0.3s ease; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 255, 0, 0.1); }
</style>
</head>
<body class="bg-black text-gray-200 font-rajdhani min-h-screen">
<nav class="bg-gray-900 border-b-2 border-yellow-500 sticky top-0 z-50">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center py-4">
<a href="index.html" class="text-2xl font-orbitron font-bold text-yellow-500 glow-text">FUROR INSULA</a>
<div class="hidden md:flex space-x-8">
<a href="index.html" class="hover:text-yellow-400 transition">Home</a>
<a href="rules.html" class="hover:text-yellow-400 transition">Rules</a>
<a href="carnivores.html" class="hover:text-yellow-400 transition">Carnivores</a>
<a href="omnivores.html" class="hover:text-yellow-400 transition">Omnivores</a>
<a href="herbivores.html" class="hover:text-yellow-400 transition">Herbivores</a>
<a href="season.html" class="hover:text-yellow-400 transition">Season</a>
<a href="events.html" class="hover:text-yellow-400 transition">Events</a>
<a href="news.html" class="text-yellow-500 hover-glow font-semibold">News</a>
<a href="credits.html" class="hover:text-yellow-400 transition">Credits</a>
</div>
<button class="md:hidden text-yellow-500">
<i data-feather="menu"></i>
</button>
</div>
</div>
</nav>
<main class="container mx-auto px-4 py-12">
<h1 class="text-5xl font-orbitron text-yellow-500 text-center mb-12 glow-text">NEWS & UPDATES</h1>
<div class="max-w-4xl mx-auto space-y-8">
<!-- Latest News -->
<div class="bg-gray-900 rounded-lg p-6 news-card">
<div class="flex items-center justify-between mb-4">
<span class="bg-yellow-500 text-black px-3 py-1 rounded text-sm font-semibold">Latest</span>
<span class="text-yellow-400">December 1, 2024</span>
</div>
<h2 class="text-2xl font-semibold mb-3">Season 2 Balance Patch Live</h2>
<p class="text-gray-300 mb-4">We've implemented significant balance changes based on community feedback from Season 1. Key updates include:</p>
<ul class="list-disc list-inside space-y-2 mb-4 text-gray-300">
<li>T-Rex health reduced from 900 to 850 HP</li>
<li>Spinosaurus aquatic speed increased by 15%</li>
<li>Herbivore defensive abilities now scale with group size</li>
<li>Fixed several collision detection issues</li>
</ul>
<div class="flex items-center text-sm text-gray-400">
<i data-feather="user" class="w-4 h-4 mr-2"></i>
<span>Posted by Server Admin</span>
</div>
</div>
<!-- Previous News -->
<div class="bg-gray-900 rounded-lg p-6 news-card opacity-80">
<div class="flex items-center justify-between mb-4">
<span class="bg-blue-500 text-white px-3 py-1 rounded text-sm font-semibold">Update</span>
<span class="text-blue-400">November 25, 2024</span>
</div>
<h2 class="text-2xl font-semibold mb-3">New Map Expansion Released</h2>
<p class="text-gray-300 mb-4">The Northern Tundra expansion is now live! Explore new biomes, resources, and challenges in this frozen landscape.</p>
<div class="flex items-center text-sm text-gray-400">
<i data-feather="user" class="w-4 h-4 mr-2"></i>
<span>Posted by Development Team</span>
</div>
</div>
<div class="bg-gray-900 rounded-lg p-6 news-card opacity-70">
<div class="flex items-center justify-between mb-4">
<span class="bg-green-500 text-white px-3 py-1 rounded text-sm font-semibold">Event</span>
<span class="text-green-400">November 15, 2024</span>
</div>
<h2 class="text-2xl font-semibold mb-3">Community Appreciation Week</h2>
<p class="text-gray-300 mb-4">Double growth points and exclusive rewards available all week to thank our amazing community!</p>
<div class="flex items-center text-sm text-gray-400">
<i data-feather="user" class="w-4 h-4 mr-2"></i>
<span>Posted by Event Coordinator</span>
</div>
</div>
</div>
</main>
<footer class="bg-gray-900 border-t-2 border-yellow-500 py-8 mt-12">
<div class="container mx-auto px-4 text-center">
<p class="text-yellow-500 font-orbitron mb-2">FUROR INSULA</p>
<p class="text-gray-400">© 2024 DinoFury Archipelago. All rights reserved.</p>
</div>
</footer>
<script>feather.replace();</script>
</body>
</html>