* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

body {
	margin: 0;
	font-family: "Orbitron", sans-serif;
	background: #000000;
	color: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
    }
	
.logo {
	width: 80px;
	height: auto;
	}

header {
	text-align: center;
    padding: 25px 10px;
    background: #222;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: 1px;
	background: radial-gradient(circle,rgba(214, 180, 180, 1) 0%, rgba(255, 195, 0, 1) 100%, rgba(255, 229, 0, 1) 50%);
    }
	
.title {
	font-size: clamp(1.7rem, 2vw, 3rem);
	margin-top: 10px;
	color: #000000;
	}
	
.title-p {
	font-size: clamp(1rem, 1vw, 1rem);
	margin-top: 1px;
	color: #000000;
	}

/* CATEGORY FILTER */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 20px;
    background: #1a1a1a;
	}
.category-filter button {
	font-family: "Orbitron", sans-serif;
    background: #333;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    }
.category-filter button:hover,
.category-filter button.active {
    background: #ffcc00;
    color: #111;
    }
/* CATEGORY FILTER ENDS*/

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    flex-grow: 1;
	}

.card {
	position: relative;
    background: #222;
	border: 1.5px solid #ffcc00;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    }
.card-category {
    position: absolute;
    bottom: 3px;
    left: 50%;
	transform: translateX(-50%);
    color: #FFA500;
    padding: 4px 8px;
    font-size: 10px;
    z-index: 1;
}
.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 2px solid #ffcc00;
    }
.card-content {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
.card h3 {
    margin: 10px 0 8px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #ffcc00;
    }
.card p {
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #ccc;
    flex-grow: 1;
    }
.card .views {
    font-size: 0.9rem;
    color: #FFA500;
    margin: 8px 0;
    }
.play-btn {
	font-family: "Orbitron", sans-serif;
    background: #ffcc00;
    color: #111;
    padding: 10px 20px;
    border: 1.5px solid #fff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
	margin-bottom: 10px;
	width: 100%;
	height: auto;
    }
a {
	text-decoration: none;
	}
/* GRID ENDS */
	
/* ABOUT ME */
.about-section {
	padding: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 80vh;
	}
.about-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1200px;
	overflow: hidden;
	}
.about-content {
	flex: 1;
	padding: 2rem;
	}
.about-content h1 {
	color: #ffcc00;
	margin-bottom: 1rem;
	}

.about-content p {
	margin-bottom: 1rem;
	}
.about-buttons {
	margin-top: 1.5rem;
	}
.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffcc00;
	color: #000;
	padding: 0.8rem 1.5rem;
	border: 1.5px solid #fff;
	border-radius: 5px;
	text-decoration: none;
	margin-right: 1rem;
	transition: background 0.3s;
	}
/* ABOUT ME ENDS */

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 8px;
    flex-wrap: wrap;
    }
.pagination button {
    background: #333;
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
	}
.pagination button:hover,
.pagination button.active {
    background: #ffcc00;
    color: #111;
    }
/* PAGINATION ENDS */

/* FOOTER */
footer {
    background: radial-gradient(circle,rgba(214, 180, 180, 1) 0%, rgba(255, 195, 0, 1) 100%, rgba(255, 229, 0, 1) 50%);
    text-align: center;
    padding: 20px;
    margin-top: auto;
    }
.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
	}
.social-heading {
	margin-bottom: 10px;
	}
.socials .facebook {
    text-decoration: none;
    color: #1877F2;
    font-size: 1.5rem;
    transition: transform 0.3s;
    }
.socials .twitter {
    text-decoration: none;
    color: #1DA1F2;
    font-size: 1.5rem;
    transition: transform 0.3s;
    }
.footer-heading {
	color: #000000;
	margin-bottom: 8px;
	}
footer p {
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #000000;
    }
footer a {
	color: #000000;
	}
/* FOOTER ENDS */