/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #131218;
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}



.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a855f7;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 20px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
}

.mobile-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ggme{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
  z-index: 1;
}
.ggme .cta-button{
  max-width: 197px;
  margin-top: 100px;
}
/* Hero Section */
.hero {
    position: relative;

    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 60px;
    overflow: hidden;
    padding-bottom: 20px;
    background-color: transparent;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    padding: 0 40px;
    z-index: 2;
}
.st_wh{
  position: absolute;
  bottom: -10%;
  left: -30%;
  z-index: 2;
}
.st_col{
  position: absolute;
  bottom: 10%;
  right: -10%;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.1;
}

.highlight {
    color: #a855f7;
}

.hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Game Showcase */
.game-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.star-left {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: twinkle 2s infinite;
}

.game-cards {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    width: 100vw;
    height: 300px;
}

.game-card-1{
  position: absolute;
  top: 60%;
  left: 5%;
  transform: translateX(-50%);
}
.game-card-2{
  position: absolute;
  top: 20%;
  left: 20%;
  transform: translateX(-50%);
}
.game-card-3{
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.game-card-4{
  position: absolute;
  top: 20%;
  right: 20%;
  transform: translateX(-50%);
}
.game-card-5{
  position: absolute;
  top: 60%;
  right: 0%;
  transform: translateX(-50%);
}


.game-card:hover{
  opacity: 0.5;
}

.game-card:nth-child(2) {
    transform: rotate(-4deg) translateY(-5px);
}



.game-card:nth-child(4) {
    transform: rotate(4deg) translateY(-5px);
}

.game-card:nth-child(5) {
    transform: rotate(8deg);
}




.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #ffffff;
    border: none;
    padding: 15px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.outline-button {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 13px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.outline-button:hover {
    background: #ffffff;
    color: #1a1a2e;
}

/* Background Elements */


@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* What We Offer Section */
.what-we-offer {
    padding: 80px 0;
    position: relative;
    background: #131218;
    background: #131218 url(/wp-content/themes/myrozenia/assets/images/oval.png) no-repeat right top;
    background-size: contain;
}
.wrapper_top{
  background: #131218 url(/wp-content/themes/myrozenia/assets/images/oval.png) no-repeat center center;
  background-size: contain;
}

.what-we-offer h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: left;
    margin-bottom: 50px;
    font-weight: bold;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.offer-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.offer-card p {
    margin-bottom: 24px;
    line-height: 1.5;
    opacity: 0.9;
    font-size: 14px;
}

/* Trending Games Section */
.trending-games {
    padding: 60px 0;
    position: relative;
    background: #131218 url(/wp-content/themes/myrozenia/assets/images/oval.png) no-repeat left top;
    background-size: contain;
}

.trending-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.trending-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.trending-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
}

.trending-meta {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    opacity: 0.7;
    text-align: right;
    line-height: 1;
}
.community-section{
  display: flex;
  gap: 20px;
  align-items: center;
}
.community-section h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.community-section p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.games-news-header {
    display: flex;
  gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.create-play {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    opacity: 0.8;
    line-height: 1;
}

.games-news-header h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
}

.news-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: #131218 url(/wp-content/themes/myrozenia/assets/images/oval.png) no-repeat right top;
    background-size: contain;
}

.reviews h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
    font-weight: bold;
    text-align: left;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.review h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.review p {
    line-height: 1.5;
    opacity: 0.9;
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 40px 0 20px;

}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

.footer-center {
    text-align: center;
}

.footer-center p {
    margin-bottom: 4px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-right {
    display: flex;
  
  align-items: center;
    gap: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #a855f7;
}

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

.social-links a {

    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}



.social-links a:hover {
    transform: translateY(-2px);
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    opacity: 0.7;
    font-size: 12px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: bottom 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.9;
    font-size: 14px;
}

.cookie-content a {
    color: #a855f7;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav {
        padding: 0 20px;
    }
    
    .trending-content {
        gap: 40px;
    }
    
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .star-left {
        display: none;
    }
    
   
    
    .game-card-1{
      display: none;
    }
    .game-card-5{
      display: none;
    }
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .game-card-2{
      left: -20%;
    }
    .game-card-4{
      right: -20%;
    }
    
    .trending-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .trending-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .trending-meta {
        text-align: center;
    }
    
    .games-news-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .create-play {
        text-align: center;
    }
    
    .community-section {
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .what-we-offer h2,
    .reviews h2 {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-center {
        order: 2;
    }
    
    .footer-right {
        align-items: center;
        order: 3;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .cookie-popup {
        width: 95%;
        padding: 16px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .what-we-offer,
    .trending-games,
    .reviews {
        padding: 40px 0;
    }
    
    .offer-card {
        padding: 16px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    .footer-right{
      flex-direction: column;
      text-align: left;
    }
    .footer-center{
      text-align: left;
    }
    .footer-links{
      width: 100%;
      text-align: left;
    }
    .social-links{
      width: 100%;
    }
}
html,body{
  overflow-x: hidden;
}
