/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: linear-gradient(rgba(26, 12, 41, 0.6), rgba(18, 11, 28, 0.8)), url("image.png") center/cover no-repeat;
  min-height: calc(100vh - 73px); /* Full viewport height minus header */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  overflow: hidden;
  color: #fff;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left-column {
    animation: fadeInUp 0.8s ease-out;
}

.new-tag {
    display: inline-block;
    background-color: rgba(142, 36, 170, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 450px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.hero-btn.primary {
    background: #6a3ab2;
    color: white;
}
.hero-btn.primary:hover {
    background: #7b47d1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 71, 209, 0.3);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}
.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Right Column - Servers Card */
.hero-right-column {
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.servers-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.servers-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.servers-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.live-tag {
    color: #ff4d4d;
    font-weight: 700;
    font-size: 1rem;
}

.server-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.server-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.server-item:hover {
    background: rgba(0, 0, 0, 0.5);
}

.server-item > span {
    font-weight: 600;
}

.server-status {
    display: flex;
    gap: 16px;
    color: #c0c0c0;
    font-size: 0.9rem;
}

.servers-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.servers-card-footer .hero-btn {
    padding: 12px 24px;
}

.servers-card-footer .powered-by {
    font-size: 0.8rem;
    color: #a0a0a0;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background-color: #1c1529;
    padding: 100px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@keyframes cardFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    background: #251e35;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    opacity: 0; /* Initially hidden */
    animation: cardFadeInUp 0.6s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Staggered animation delays */
.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-card .btn-primary {
    width: 80%;
}

/* ===== SUGGESTIONS SECTION ===== */
.suggestions-section {
    background-color: #1c1529;
    padding: 100px 5%;
    color: #fff;
    overflow: hidden;
}

.suggestions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.suggestions-text {
    opacity: 0;
    animation: cardFadeInUp 0.6s ease-out forwards;
}

.suggestions-text .new-tag {
    margin-bottom: 16px;
    background-color: rgba(142, 36, 170, 0.8);
    padding: 6px 14px;
}

.suggestions-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.suggestions-text p {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 30px;
    max-width: 500px;
}

.suggestions-image-wrapper {
    opacity: 0;
    animation: cardFadeInUp 0.6s ease-out 0.2s forwards;
}

.suggestions-image {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-left-column, .hero-right-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .suggestions-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .suggestions-text {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .server-item, .server-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .servers-card-footer {
        flex-direction: column;
        gap: 15px;
    }
}