/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: #333;
    color: white;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 50px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background-color: #0073e6;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero-button:hover {
    background-color: #ff5500;
}

/* Featured Apps */
.featured-apps {
    padding: 40px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.featured-apps h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.app-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.app-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

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

.app-thumbnail {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.download-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.download-button:hover {
    background-color: #ff5500;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 16px;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

.site-footer nav a {
    color: #ddd;
    text-decoration: none;
    margin: 0 5px;
}

.site-footer nav a:hover {
    text-decoration: underline;
}
/* Categories Section */
.categories-section {
    padding: 40px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.categories-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

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

.category-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.category-card h3 {
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}

/* Gallery Section */
.gallery-section {
    padding: 40px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.gallery-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.app-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.app-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

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

.app-thumbnail {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.download-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.download-button:hover {
    background-color: #ff5500;
}

html {
    scroll-behavior: smooth;
}


.social-buttons {
	display: flex;
	gap: 10px;
}

.social-button {
	text-decoration: none;
	padding: 8px 12px;
	color: white;
	border-radius: 5px;
	font-size: 14px;
}

.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.vk { background-color: #4c75a3; }
.instagram { background-color: #c13584; }

/* Contact Section */
.contact-info {
	text-align: center;
}

.contact-info a {
	color: #1a73e8;
	text-decoration: none;
	font-size: 16px;
	margin: 5px;
	display: block;
}

.contact-info a:hover {
	text-decoration: underline;
}

/* Social Media Follow Section */
.social-follow a {
	display: block;
	text-decoration: none;
	padding: 10px;
	color: white;
	border-radius: 5px;
	margin-bottom: 10px;
	text-align: center;
	width: 300px;
	margin: 10px auto;
}

.youtube { background-color: #ff0000; }
.twitch { background-color: #9147ff; }
.trovo { background-color: #4ccc4c; }
.facebook-follow { background-color: #3b5998; }
.discord { background-color: #7289da; }
.whatsapp { background-color: #25d366; }
.telegram { background-color: #0088cc; }

/* Footer Styles */
footer {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 15px;
}

/* YouTube Video Styling */
.video-container {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.youtube-video h2{
text-align: center;
margin-top: 20px;
}

.video-container iframe {
	width: 100%;
	max-width: 560px;
	height: 315px;
}