/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: 'Arial', sans-serif;
background-color: #1b1b1b;
color: #fff;
margin: 0;
overflow-x: hidden;
}
/* Navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
background-color: #252525; /* Dark background for navbar */
position: sticky;
top: 0;
z-index: 10;
}
.navbar ul {
list-style: none;
display: flex;
gap: 20px;
}
.navbar ul li {
display: inline-block;
}
.navbar ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
font-size: 16px;
transition: color 0.3s ease;
}
.navbar ul li a:hover {
color: #ff4747; /* Accent hover color */
}
.navbar .logo {
font-size: 20px;
font-weight: bold;
color: #fff;
}
/* Header Section */
.header {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('https://cdn.discordapp.com/attachments/896099522508365864/1307969153281298473/Display_Template.png?ex=673c3cb3&is=673aeb33&hm=24b3afc8f2694a484b3c1a1af3d9847abd6c8b809c35f9109e935fcfbcc40532&') no-repeat center center/cover;
position: relative;
}
.header h1 {
font-size: 48px;
font-weight: bold;
margin-bottom: 20px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
.header p {
font-size: 18px;
line-height: 1.6;
color: #ccc;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.header .btn {
padding: 12px 25px;
background-color: #ff4747;
color: #fff;
text-decoration: none;
font-weight: bold;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.header .btn:hover {
background-color: #e03d3d;
}
/* Offer Section */
.offer-section {
text-align: center;
padding: 50px 20px;
background-color: #202020; /* Dark section background */
}
.offer-section h2 {
font-size: 36px;
color: #fff;
margin-bottom: 20px;
}
.offer-section .offer-cards {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
.offer-card {
background-color: #2a2a2a;
padding: 20px;
border-radius: 10px;
width: 250px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-card:hover {
transform: translateY(-10px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}
.offer-card h3 {
font-size: 24px;
margin-bottom: 10px;
}
.offer-card p {
font-size: 14px;
color: #bbb;
margin-bottom: 15px;
}
.offer-card .btn {
background-color: #ff4747;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
color: #fff;
font-weight: bold;
display: inline-block;
transition: background-color 0.3s ease;
}
.offer-card .btn:hover {
background-color: #e03d3d;
}
/* Footer */
.footer {
background-color: #181818;
color: #aaa;
text-align: center;
padding: 20px;
font-size: 14px;
}
/* Dark Mode Toggle (if applicable) */
.dark-mode-toggle {
position: fixed;
top: 20px;
right: 20px;
background-color: #252525;
padding: 10px;
border-radius: 50%;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.dark-mode-toggle:hover {
background-color: #333;
}