/* Modern CSS Variables */
:root {
  --primary-color: #dc5500;
  --primary-dark: #b8460a;
  --primary-light: #ff6b1a;
  --secondary-color: #43414b;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #97a0af;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-accent: #fff7ed;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
  0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
  0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #dc5500 0%, #ff6b1a 100%);
  --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f0f0f5;
  color: #1a1a1a;
  line-height: 1.6;
  font-family: 'Rubik', sans-serif;
  color: var(--text-primary);
}

header{
  margin-bottom: 20px;
}
.header-contnet{
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.header-contnet img {
  height: 65px;
  width: 220px;
}
.header-contnet a {
  text-decoration: none;
  color: #000;
}
.header-contnet a h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  text-shadow: 4px 4px #ffd700;
}
.header-contnet p {
  font-size: 16px;
  margin-top: 10px;
}
nav{
  background-color: #ffd700;
  border: 3px solid #000;
  box-shadow: 7px 7px 0px #000;
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  padding: 0 !important;
}
.menu-item ul li a{
  margin-top: 8px;
}
nav ul li {
  list-style: none;
  display: inline-flex;
} 
nav ul li a {
  text-decoration: none;
  padding: 10px 20px;
  color: #000;
  font-weight: 600;
}
nav ul li a:hover {
  text-decoration: underline;
}
.menu-icons ul li a{
  padding: 10px 5px;
}

.menu-icons ul li a i {
  border: 2px solid #000;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  transition: .8s all;
}

.menu-icons ul li a i:hover{
  background-color: #000;
  color: #fff;
}

.container {
  max-width: 2500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-sm {
  max-width: 800px;
}

/* Header Section */
.header-section {
  background: var(--bg-primary);
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
}

/* Hero Image Section */
.hero-image-section {
  padding: 1rem 0 2rem;
}
.hero-title {
  background-color: #ffd700;
  padding: 0.25rem 1rem;
  border: 3px solid #000;
  border-radius: 20px 20px 0px 0px;
}
.hero-title a {
  color: #000000;
  text-decoration: none;
}
.hero-title a:hover {
  text-decoration: underline;
}
.hero-image-container {
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid #000;
  box-shadow: 7px 7px 0px #000;
  border-radius: 15px;
  padding: 20px;
}

.hero-image-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.hero-image-container:hover img {
  transform: scale(1.02);
} 

/* Footer */
.modern-footer {
  background-color: #000;
  color: white;
  padding: 1rem 0;
  margin-top: 4rem;
}
.modern-footer a {
    color: #FFFFFF;
	text-decoration: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  padding: 0;
  line-height: 1.2;
}

.footer-brand p {
  color: #fff;
  margin: 0;
  padding: 0;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
  font-size: 18px;
}

.social-icon.facebook {
  background-color: #3b82f6;
}

.social-icon.facebook:hover {
  background-color: #2563eb;
}

.social-icon.twitter {
  background-color: #0ea5e9;
}

.social-icon.twitter:hover {
  background-color: #0284c7;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.social-icon.instagram:hover {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

.social-icon.youtube {
  background-color: #dc2626;
}

.social-icon.youtube:hover {
  background-color: #b91c1c;
}

.social-icon.telegram {
  background-color: #3b82f6;
}

.social-icon.telegram:hover {
  background-color: #2563eb;
}

.footer-copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #374151;
}

.footer-copyright p {
  color: #bbb;
  font-size: 17px;
  margin: 0;
  padding: 0;
}
.d-version{
    display: block;
}
.m-version{
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .d-version{
    display: none;
  }
  .m-version{
    display: block;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .content-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-section {
    padding: 1.5rem 0;
  }
}
