/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  color: #f0f0f0;
  text-align: center;
  padding: 0 10%;
  overflow-x: hidden;
}

/* Typography */
h2 {
  color: #ffae00;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

h6 {
  color: #ccc;
}

p {
  font-size: 15px;
  color: #ff4d4d;
}

/* Game Intro */
.game-intro {
  margin-top: 120px;
  padding-bottom: 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(40, 40, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  z-index: 1000;
  color: #f29e16;
}

/* Site Title */
.site-title {
  margin-top: 100px;
  font-size: 42px;
  font-weight: bold;
  background: linear-gradient(to right, #f29e16, #fdd835);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Menu Button */
.menu-btn {
  position: absolute;
  top: 45px;
  left: 20px;
  font-size: 32px;
  color: #e6ccff;
  cursor: pointer;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

.menu-btn:hover {
  transform: rotate(90deg) scale(1.1);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
  backdrop-filter: blur(10px);
  border-right: 2px solid rgba(255, 255, 255, 0.06);
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.5);
  padding-top: 100px;
  transition: left 0.4s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
}

/* Sidebar Open State */
.sidebar.open {
  left: 0;
}

/* Sidebar Links */
.sidebar a {
  display: block;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 500;
  color: #ffeb3b;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.sidebar a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid #ff9800;
  color: #fff;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #ff4d4d;
  transition: transform 0.3s;
}

.close-btn:hover {
  transform: scale(1.2);
}

/* Scrollbar Styling */
.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: #5a5a5a;
  border-radius: 3px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #777;
}

/* Social Icons */
.socil-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 60px 0 30px;
}

.socil-icons a {
  color: #ccc;
  font-size: 22px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.socil-icons a:hover {
  color: #00d8ff;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.2) rotate(10deg);
}
.chat-circle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #f29e16;
  color: white;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.chat-circle:hover {
  background: #ffcc00;
  transform: scale(1.1);
  color: #000;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader::after {
  content: '';
  width: 60px;
  height: 60px;
  border: 6px solid #fff;
  border-top: 6px solid #f29e16;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
.typewriter {
  font-family: monospace;
  overflow: hidden;
  border-right: 3px solid #f29e16;
  white-space: nowrap;
  animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
  width: fit-content;
  margin: 30px auto;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #f29e16; }
}
.notify-circle {
  width: 12px;
  height: 12px;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -4px;
  animation: blinkBubble 1s infinite;
}
@keyframes blinkBubble {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 22px;
  background: #333;
  color: #f2caff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 10px #000;
}
body.light-mode {
  background-color: #f5f5f5;
  color: #111;
}
/* Image Margin Fix */
.cod-image {
  margin-top: 130px;
}

/* Search Container */
.search-container {
    text-align: center;
    margin: 20px;
    margin-top: 114px;
}

#searchInput {
    width: 70%;
    padding: 12px;
    border: 2px solid #ff6600;
    border-radius: 6px;
    font-size: 18px;
    outline: none;
    background: #2a2a2a;
    color: #fff;
}

button {
    padding: 12px 20px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #e55e00;
}

/* Apps Container */
.apps-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    height: 80vh;
}

/* Iframe Styling */
#iframe {
    width: 100%; /* Responsive width */
    max-width: 1400px;
    height: 100%; /* Full height */
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.6);
}

/* Responsive Design for Mobile and Tablets */
@media (max-width: 768px) {
    .apps-container {
        height: 70vh;
    }

    #searchInput {
        width: 90%;
        font-size: 16px;
    }

    #iframe {
        height: 60vh;
    }
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  color: #f0f0f0;
  text-align: center;
  padding: 0 10%;
  overflow-x: hidden;
}

/* Typography */
h2 {
  color: #ffae00;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

h6 {
  color: #ccc;
}

p {
  font-size: 15px;
  color: #ff4d4d;
}

/* Game Intro */
.game-intro {
  margin-top: 120px;
  padding-bottom: 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(40, 40, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  z-index: 1000;
  color: #f29e16;
}

/* Site Title */
.site-title {
  margin-top: 100px;
  font-size: 42px;
  font-weight: bold;
  background: linear-gradient(to right, #f29e16, #fdd835);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Menu Button */
.menu-btn {
  position: absolute;
  top: 45px;
  left: 20px;
  font-size: 32px;
  color: #e6ccff;
  cursor: pointer;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

.menu-btn:hover {
  transform: rotate(90deg) scale(1.1);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
  backdrop-filter: blur(10px);
  border-right: 2px solid rgba(255, 255, 255, 0.06);
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.5);
  padding-top: 100px;
  transition: left 0.4s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
}

/* Sidebar Open State */
.sidebar.open {
  left: 0;
}

/* Sidebar Links */
.sidebar a {
  display: block;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 500;
  color: #ffeb3b;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.sidebar a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid #ff9800;
  color: #fff;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #ff4d4d;
  transition: transform 0.3s;
}

.close-btn:hover {
  transform: scale(1.2);
}

/* Scrollbar Styling */
.sidebar::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: #5a5a5a;
  border-radius: 3px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #777;
}

/* Social Icons */
.socil-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 60px 0 30px;
}

.socil-icons a {
  color: #ccc;
  font-size: 22px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.socil-icons a:hover {
  color: #00d8ff;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.2) rotate(10deg);
}
.chat-circle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #f29e16;
  color: white;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.chat-circle:hover {
  background: #ffcc00;
  transform: scale(1.1);
  color: #000;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader::after {
  content: '';
  width: 60px;
  height: 60px;
  border: 6px solid #fff;
  border-top: 6px solid #f29e16;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
.typewriter {
  font-family: monospace;
  overflow: hidden;
  border-right: 3px solid #f29e16;
  white-space: nowrap;
  animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
  width: fit-content;
  margin: 30px auto;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #f29e16; }
}
.notify-circle {
  width: 12px;
  height: 12px;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -4px;
  animation: blinkBubble 1s infinite;
}
@keyframes blinkBubble {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 22px;
  background: #333;
  color: #f2caff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 10px #000;
}
body.light-mode {
  background-color: #f5f5f5;
  color: #111;
}
/* Image Margin Fix */
.cod-image {
  margin-top: 130px;
}


.benefits h2 {
    font-size: 30px;
    color: #ff6600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.benefits li i {
    color: #ff6600;
    margin-right: 12px;
    font-size: 22px;
}

/* Join Community Section */
.join-community {
    text-align: center;
    padding: 40px;
    background-color: #3a3a3a;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.join-community h2 {
    font-size: 30px;
    color: #ff6600;
    text-transform: uppercase;
}

.join-community p {
    font-size: 18px;
    margin: 15px 0;
    color: #ddd;
}

.join-community ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.join-community li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-community li i {
    color: #ff6600;
    margin-right: 10px;
    font-size: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6600;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 15px;
}

.cta-btn:hover {
    background-color: #e55e00;
}

/* Game Statistics */
.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.stat {
    text-align: center;
    padding: 20px;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 10px;
}

.stat h3 {
    font-size: 24px;
    margin: 5px 0;
}

.stat p {
    font-size: 16px;
    color: #bbb;
}

/* Hover Effect for Icons */
.benefits li:hover i,
.join-community li:hover i,
.stat:hover i {
    color: #e55e00;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 15px;
    }

    .benefits, .join-community {
        padding: 20px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}
/* Development Team Section */
.dev-team {
    padding: 40px;
    background-color: #2c2c2c;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-align: center;
}

.dev-team h2 {
    font-size: 32px;
    color: #ff6600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.dev-team p {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    background-color: #3a3a3a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 20px;
    color: #ff6600;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: #bbb;
}

/* Footer */
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 15px;
    width: 100%;
    bottom: 0;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1da1f2; /* Hover effect ke liye color */
}

