Changed around line 1
+ :root {
+ --primary-color: #ff4d00;
+ --secondary-color: #1a1a1a;
+ --accent-color: #ffd700;
+ --text-color: #ffffff;
+ --background-color: #0a0a0a;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ background-color: var(--background-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ /* Header & Navigation */
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ background-color: rgba(0, 0, 0, 0.9);
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
+ url('data:image/svg+xml, ');
+ background-size: cover;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ color: var(--primary-color);
+ text-shadow: 0 0 10px rgba(255, 77, 0, 0.5);
+ }
+
+ /* Team Section */
+ .team-section {
+ padding: 5rem 5%;
+ }
+
+ .player-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .player-card {
+ background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
+ padding: 1.5rem;
+ border-radius: 10px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .player-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .player-image {
+ width: 150px;
+ height: 150px;
+ background-color: var(--primary-color);
+ border-radius: 50%;
+ margin: 0 auto 1rem;
+ }
+
+ /* Matches Section */
+ .matches-section {
+ padding: 5rem 5%;
+ background-color: var(--secondary-color);
+ }
+
+ .match-card {
+ background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
+ padding: 2rem;
+ border-radius: 10px;
+ margin-top: 2rem;
+ }
+
+ .match-teams {
+ display: flex;
+ justify-content: space-around;
+ align-items: center;
+ margin: 1rem 0;
+ }
+
+ .vs {
+ color: var(--accent-color);
+ font-weight: bold;
+ }
+
+ /* Achievements Section */
+ .achievements-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .achievement {
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
+ border-radius: 10px;
+ }
+
+ .trophy::before {
+ content: "🏆";
+ font-size: 3rem;
+ }
+
+ /* Footer */
+ footer {
+ background-color: var(--secondary-color);
+ padding: 2rem 5%;
+ text-align: center;
+ }
+
+ .social-links {
+ margin-bottom: 1rem;
+ }
+
+ .social-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ /* Mobile Responsiveness */
+ .mobile-menu-btn {
+ display: none;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .mobile-menu-btn span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background-color: var(--text-color);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu-btn {
+ display: block;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background-color: var(--secondary-color);
+ flex-direction: column;
+ text-align: center;
+ padding: 1rem 0;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }