/* Import Fonturi */
@import url('https: //fonts.googleapis.com/css2?family=Montserrat: wght@300;700&display=swap');

@import url('https: //fonts.googleapis.com/css2?family=Raleway: wght@400;800&display=swap');
/* Resetare Globală */
*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
body {
	background-image: url("paper.gif");
  }

body {
	background: #131418;
	color: #999;
	text-align: center;
  }
  .mycooldiv {
	width: 400px;
	height: 300px;
	margin: 2% auto;
	border-radius: 100%;
  }
  .red {
	background: red
  }
  .blue {
	background: blue
  }
  .yellow {
	background: yellow
  }
  .green {
	background: green
  }
  #darken {
	box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .7);
	/*darkness level control - change the alpha value for the color for darken/ligheter effect */
  }
.games-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 25px;
	animation: fadeInUp 1s ease-out;
}


.game-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-bottom: 2px solid var(--primary-color);
}

.game-info {
	padding: 20px;
}

.game-info h2 {
	color: var(--text-color);
	font-size: 18px;
	margin-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
}

.game-info p {
	color: var(--accent-color);
	font-size: 14px;
	opacity: 0.8;
}

        /* Navigation */
        nav {
            display: flex;
            justify-content: center;
            width: 100%;
            padding: 20px 0;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--accent-primary);
        }
        
        .nav-link.active {
            color: var(--accent-primary);
        }