:root {
  --primary-color: #e60012;
  --secondary-color: #000000;
  --accent-color: #ffffff;
  --background-color: #1a1a1a;
  --text-color: #ffffff;
  --border-color: #e60012;
  --button-hover: #ff4d4d;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-image: url("path-to-your-background-image.jpg");
  background-size: cover;
  background-attachment: fixed;
}

.game-interface {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

/* Header Styles */
.header {
  grid-column: 1 / -1;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(230, 0, 18, 0.3);
}

.header h1 {
  font-size: 2.5em;
  margin: 0;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  letter-spacing: 2px;
}

/* Navigation Styles */
.sidebar {
  grid-column: 1 / 2;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav li {
  margin-bottom: 20px;
}

.game-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--accent-color);
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.game-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--button-hover);
  transition: all 0.3s ease;
  z-index: -1;
}

.game-button:hover::before {
  left: 0;
}

.game-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 0, 18, 0.5);
}

.game-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(230, 0, 18, 0.5);
}

/* Main Content Styles */
.main-content {
  grid-column: 2 / -1;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: -5px 0 15px rgba(230, 0, 18, 0.2);
}

/* Portfolio Styles */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
  display: flex;
  flex-direction: column;
  border: 2px solid var(--primary-color);
}

.portfolio-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(230, 0, 18, 0.5);
}

.portfolio-item h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-item img,
.portfolio-item video {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
  object-fit: cover;
  height: 200px;
  border: 2px solid var(--primary-color);
}

.portfolio-item p {
  flex-grow: 1;
  font-size: 1em;
  line-height: 1.6;
}

/* Home Page Styles */
.home-hero {
  text-align: center;
  padding: 60px 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  margin-bottom: 40px;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
}

.home-hero h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  transition: all 0.3s ease;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: var(--button-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 0, 18, 0.5);
}

/* Footer Styles */
.footer {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--text-color);
  font-size: 0.9em;
  border-top: 3px solid var(--border-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--button-hover);
}

/* Persona-like text effect */
.persona-text {
  position: relative;
  display: inline-block;
}

.persona-text::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 2px;
  color: var(--primary-color);
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .game-interface {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-column: 1 / -1;
  }

  .main-content {
    grid-column: 1 / -1;
  }
}
.about {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
}

.about h2 {
  color: var(--primary-color);
  font-size: 2em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-text ul {
  list-style-type: none;
  padding-left: 0;
}

.about-text ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.about-text ul li:before {
  content: "➤ ";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 5px;
}
