/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #2d1f14;
    --secondary-dark: #3d2817;
    --primary-green: #4caf50;
    --secondary-green: #66bb6a;
    --accent-brown: #8b6f47;
    --light-bg: #f5f5f5;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-light-gray: #999999;
    --gradient-green: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Notification Bar */
.top-notification {
    background: var(--gradient-green);
    color: var(--text-white);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-notification:hover {
    background: linear-gradient(135deg, #5cb860 0%, #7bc67e 100%);
}

/* Header */
.header {
    background-color: var(--secondary-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown .nav-link i {
    margin-left: 5px;
    font-size: 12px;
}

.login-btn {
    background: var(--gradient-green);
    border: none;
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: url('images/lobby.png') center/cover no-repeat, linear-gradient(135deg, rgba(26, 20, 16, 0.8) 0%, rgba(44, 24, 16, 0.8) 50%, rgba(61, 36, 21, 0.8) 100%);
    background-blend-mode: overlay;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 150px;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        100px 100px white,
        200px 150px white,
        300px 200px white,
        400px 50px white,
        500px 300px white,
        600px 200px white,
        700px 150px white,
        800px 250px white,
        900px 100px white,
        1000px 200px white,
        150px 50px white,
        250px 250px white,
        350px 100px white,
        450px 300px white,
        550px 150px white,
        650px 50px white,
        750px 200px white,
        850px 100px white,
        950px 250px white;
    animation: twinkle 3s infinite;
}

.stars::after {
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight2 {
    color: var(--primary-green);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background: var(--gradient-green);
    border: 2px dashed var(--secondary-green);
    color: var(--text-white);
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.btn-discord {
    background: #5865F2;
    border: none;
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    background: var(--gradient-green);
    padding: 5px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.image-frame:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: var(--shadow-hover);
}

.image-frame img,
.image-frame svg {
    display: block;
    width: 100%;
    border-radius: 15px;
    background: white;
    object-fit: contain;
    padding: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-copy {
    background: var(--gradient-green);
    border: 2px dashed var(--secondary-green);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.btn-copy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.btn-discord-round {
    background: #5865F2;
    border: none;
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
}

.btn-discord-round:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
}

/* News Section */
.news-section {
    padding: 80px 20px;
    background: white;
}

.section-header {
    margin-bottom: 50px;
}

.section-title-news {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-line {
    width: 60px;
    height: 6px;
    background: var(--gradient-green);
    border-radius: 3px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.news-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-green);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.news-badge small {
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.news-content {
    padding: 25px;
}

.news-date {
    display: block;
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-date i {
    margin-right: 5px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    background: var(--gradient-green);
    border: none;
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    background: white;
    border: 2px solid #ddd;
    color: var(--primary-dark);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
}

.page-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--gradient-green);
    border-color: var(--primary-green);
    color: white;
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    color: var(--text-gray);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo svg {
    width: 150px;
    height: auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    margin: 5px 0;
}

.powered {
    color: var(--text-light-gray);
}

.powered strong {
    color: var(--primary-green);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2d1f14 0%, #3d2817 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

/* Shop Section */
.shop-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.shop-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #ddd;
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-green);
    border-color: var(--primary-green);
    color: white;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-green);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.product-badge.featured {
    background: linear-gradient(135deg, #ffa500 0%, #ff6b35 100%);
}

.product-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.product-features li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-features li i {
    color: var(--primary-green);
    margin-right: 10px;
}

.product-price {
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
}

.period {
    font-size: 16px;
    color: #999;
}

.btn-buy {
    background: var(--gradient-green);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Support Section */
.support-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.support-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.support-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-green);
}

.support-header i {
    font-size: 32px;
    color: var(--primary-green);
}

.support-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Ticket Form */
.ticket-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-ticket {
    background: var(--gradient-green);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Tickets List */
.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.ticket-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.ticket-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ticket-info {
    flex: 1;
}

.ticket-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ticket-id {
    background: var(--primary-green);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.ticket-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.ticket-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.ticket-category,
.ticket-date {
    font-size: 12px;
    color: #666;
}

.ticket-category {
    background: #e8f5e9;
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.ticket-preview {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.ticket-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.status-badge.answered {
    background: #4caf50;
    color: white;
}

.status-badge.waiting {
    background: #ff9800;
    color: white;
}

.status-badge.closed {
    background: #9e9e9e;
    color: white;
}

.status-badge.reviewing {
    background: #2196f3;
    color: white;
}

.btn-view-ticket {
    background: white;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-ticket:hover {
    background: var(--primary-green);
    color: white;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-title i {
    color: var(--primary-green);
    font-size: 36px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.faq-question i {
    color: var(--primary-green);
    font-size: 24px;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.faq-answer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        gap: 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-dark);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-news {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-copy {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title-news {
        font-size: 24px;
    }

    .news-image {
        height: 200px;
    }

    .pagination {
        flex-wrap: wrap;
    }
}