/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}



body {
  background: linear-gradient(to bottom, #704040, #613838, #1a1a1a, black); 
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  position:relative;
  background-size: cover;
  
}

/* Blur Background Layer */

body::before {
  content: '';
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-image: url(https://img1.wsimg.com/isteam/ip/f043d1f1-e512-4dfa-8108-ee9f5e25a64b/Square.png/:/rs=w:1209,h:1209);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(60px);
  z-index: -1;
}

.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  text-align: center;
  
}

/* Header Section */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.logo {
  width: 320px;
  margin-bottom: 10px;
}

.play-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 10px;
  font-size: 18px;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Wrap it in a container and center it */
.play-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.play-btn::before,
.play-btn::after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  margin: 0 10px;
}

.play-btn:hover {
  background-color: #fff;
  color: #000;
}

.play-btn:hover::before,
.play-btn:hover::after {
  background-color: #000;
}

/* Poster Image */
.poster {
  width: 800px;
  border: 4px solid white;
  border-radius: 4px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .poster {
    width: 300px;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: rgb(255, 255, 255);
  font-size: 20px;
}

footer p {
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f4c430;
}

/* Responsive Enhancements */
@media only screen and (min-width: 320px) and  (max-width:640px) {
  .play-btn {
    font-size: 12px;
    padding: 10px 8px;
  }

  .logo {
    width: 240px;
  }

  .poster{
    height:440px;
    width:80%;
  }

  footer{
    font-size: 16px;
  
  }
}

/* Responsive Enhancements */
@media only screen and (min-width: 640px) and  (max-width:1024px) {
  .play-btn {
    font-size: 20px;
    padding: 20px 26px;
  }

  .play-btn::before,
.play-btn::after{
  width:30px;
  height: 2px;
}

  .logo {
    width: 450px;
  }

  .poster{
    height:800px;
    width:80%;
  }

  footer{
    font-size: 20px;
  
  }

  .social-icons a{
    font-size: 36px;
  }
}

@media only screen and (min-width: 1024px) and  (max-width:1366px) {
  .play-btn {
    font-size: 26px;
    padding: 26px 32px;
  }

  .play-btn::before,
.play-btn::after{
  width:34px;
  height: 2px;
}

  .logo {
    width: 550px;
  }

  .poster{
    height:900px;
    width:80%;
  }

  footer{
    font-size: 22px;

  }

  .social-icons a{
    font-size: 40px;
  }
}

a {
  color: white;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.main-section {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
