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

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo a {
    color: #fff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff4444;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff4444;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Top Coupon Card */
.top-coupon-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #333;
    position: relative;
    border: 3px solid #ff4444;
}

.top-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255,68,68,0.3);
}

.top-coupon-card .coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.top-coupon-card .coupon-code {
    background: #ff4444;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.top-coupon-card .coupon-discount {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.top-coupon-card .coupon-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.top-coupon-card .coupon-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.top-coupon-card .coupon-validity {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.top-coupon-card .coupon-actions {
    display: flex;
    gap: 1rem;
}

.top-coupon-card .btn-copy {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.top-coupon-card .btn-copy:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,68,68,0.3);
}

.top-coupon-card .btn-use {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.top-coupon-card .btn-use:hover {
    background: #ff4444;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,68,68,0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #ff4444;
    color: #fff;
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,68,68,0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #ff4444;
}

.btn-outline {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
}

.btn-outline:hover {
    background: #ff4444;
    color: #fff;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Featured Coupons */
.featured-coupons {
    padding: 4rem 0;
    background: #f8f9fa;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.coupon-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.coupon-code-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coupon-code {
    background: #ff4444;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
}

.coupon-type {
    background: #e9ecef;
    color: #495057;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.coupon-discount-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.coupon-discount {
    background: #28a745;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}

.coupon-discount-label {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
}

.coupon-content {
    margin-bottom: 1.5rem;
}

.coupon-meta {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.meta-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.85rem;
}

.coupon-validity,
.coupon-minimum,
.coupon-category {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.category-tag {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.category-tag.visa { background: #007bff; color: #fff; }
.category-tag.general { background: #6c757d; color: #fff; }
.category-tag.affiliate { background: #fd7e14; color: #fff; }
.category-tag.member { background: #20c997; color: #fff; }
.category-tag.weekend { background: #6f42c1; color: #fff; }

.coupon-requirements {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.requirements-title {
    font-size: 1rem;
    font-weight: 600;
    color: #856404;
    margin-bottom: 0.8rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 0.3rem 0;
    color: #856404;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.requirements-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.btn-icon {
    font-size: 1rem;
}

.coupon-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.coupon-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.coupon-validity {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
}

.coupon-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-copy {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-copy:hover {
    background: #cc0000;
}

.btn-use {
    background: transparent;
    color: #ff4444;
    border: 1px solid #ff4444;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-use:hover {
    background: #ff4444;
    color: #fff;
}

/* Events Section */
.current-events {
    padding: 4rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding: 1.5rem;
}

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

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-badge-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-status {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.event-status.active {
    background: #d4edda;
    color: #155724;
}

.event-date-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-separator {
    color: #6c757d;
    font-weight: 500;
}

.event-content {
    margin-bottom: 1.5rem;
}

.event-meta {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.event-category,
.event-duration,
.event-priority {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.priority-high {
    color: #dc3545;
    font-weight: 600;
}

.priority-medium {
    color: #ffc107;
    font-weight: 600;
}

.event-details {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.details-title {
    font-size: 1rem;
    font-weight: 600;
    color: #856404;
    margin-bottom: 0.8rem;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    padding: 0.3rem 0;
    color: #856404;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.details-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.event-badge {
    background: #ff4444;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.event-date {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.event-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.event-details {
    margin-bottom: 1.5rem;
}

.event-detail-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.event-detail-item strong {
    color: #333;
    font-weight: 600;
}

.event-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,68,68,0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff4444;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Blog Template Styles */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb-nav a {
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.breadcrumb-nav a:hover {
    color: #0056b3;
    background-color: rgba(0,123,255,0.1);
    text-decoration: none;
}

.breadcrumb-separator {
    color: #adb5bd;
    font-weight: 500;
    font-size: 1.1rem;
}

.breadcrumb-current {
    color: #495057;
    font-weight: 500;
    background-color: rgba(108,117,125,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.article-content {
    padding: 3rem 0;
}

.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.article-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f8f9fa;
    color: #ff4444;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.tag:hover {
    background: #ff4444;
    color: #fff;
}

.article-image {
    margin-bottom: 2rem;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff4444;
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 1rem 0;
}

.article-body h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1rem 0 0.5rem 0;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: #333;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: #333;
}

.article-body strong {
    font-weight: 600;
    color: #1a1a1a;
}

.article-body em {
    font-style: italic;
    color: #666;
}

.highlight-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 4px solid #ff4444;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box h4 {
    margin-top: 0;
    color: #ff4444;
    font-size: 1.1rem;
}

.highlight-box p {
    margin-bottom: 0;
    color: #333;
}

.social-share {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.social-share h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn.facebook {
    background: #3b5998;
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
    color: #fff;
}

.share-btn.kakao {
    background: #fee500;
    color: #000;
}

.share-btn.link {
    background: #6c757d;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-articles h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-item h4 {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.related-item .date {
    display: block;
    padding: 0 1rem 1rem 1rem;
    font-size: 0.8rem;
    color: #999;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    padding: 2rem 0;
    background: #f8f9fa;
    border-radius: 15px;
}

.filter-btn {
    background: #fff;
    color: #666;
    border: 2px solid #e9ecef;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #ff4444;
    color: #ff4444;
}

.filter-btn.active {
    background: #ff4444;
    color: #fff;
    border-color: #ff4444;
}

/* FAQ Styles */
.faq-search {
    padding: 2rem 0;
    background: #f8f9fa;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #ff4444;
}

.search-box button {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #cc0000;
}

.faq-categories {
    padding: 2rem 0;
    background: #fff;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8f9fa;
    color: #666;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn:hover {
    background: #e9ecef;
    color: #333;
}

.tab-btn.active {
    background: #ff4444;
    color: #fff;
}

.faq-list {
    padding: 2rem 0;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4444;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

.faq-answer ul, .faq-answer ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Contact Form */
.faq-contact {
    padding: 3rem 0;
    background: #f8f9fa;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-content p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4444;
}

/* Step Guide */
.step-guide {
    padding: 4rem 0;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.step-number {
    background: #ff4444;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-image {
    margin-top: 1rem;
}

.step-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 4px solid #ff4444;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.step-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
}

/* Video Tutorial */
.video-tutorial {
    padding: 4rem 0;
    background: #f8f9fa;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-placeholder {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 4rem 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.play-button {
    font-size: 4rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 1.2rem;
    margin: 0;
}

/* Common Issues */
.common-issues {
    padding: 4rem 0;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.issue-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.issue-item:hover {
    transform: translateY(-5px);
}

.issue-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.issue-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.issue-item p {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.issue-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.issue-item li {
    padding: 0.5rem 0;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.issue-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
}

.issue-item li:last-child {
    border-bottom: none;
}

/* Tips and Tricks */
.tips-tricks {
    padding: 4rem 0;
    background: #f8f9fa;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
}

.tip-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.tip-content {
    padding: 2rem;
    text-align: center;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tip-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tip-details {
    text-align: left;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.tip-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-details li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.tip-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
}

/* Contact Support */
.contact-support {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    text-align: center;
}

.support-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Popular Posts */
.popular-posts {
    padding: 4rem 0;
    background: #f8f9fa;
}

.popular-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.popular-post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #ff4444;
}

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

.popular-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.popular-post-content {
    padding: 1.5rem;
}

.popular-post-rank {
    background: #ff4444;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.popular-post-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.popular-post-excerpt {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.popular-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
}

.popular-post-views {
    color: #ff4444;
    font-weight: 600;
}

.popular-tags {
    padding: 3rem 0;
    background: #fff;
}

.tags-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Hotel Reviews Section */
.hotel-reviews-section {
    padding: 4rem 0;
    background: #fff;
}

/* Reviews Styles */
.review-search {
    padding: 2rem 0;
    background: #f8f9fa;
    margin-bottom: 3rem;
}

.search-filters {
    max-width: 1000px;
    margin: 0 auto;
}

.filter-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 150px;
}

.filter-options select:focus {
    outline: none;
    border-color: #ff4444;
}

.top-rated-hotels {
    padding: 4rem 0;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hotel-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.hotel-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-info {
    padding: 1.5rem;
}

.hotel-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.hotel-rating {
    color: #ff4444;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hotel-info .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    font-size: 0.9rem;
}

.recent-reviews {
    padding: 4rem 0;
}

.reviews-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.review-rating {
    color: #ff4444;
    font-size: 1.1rem;
}

.review-content {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.review-categories {
    padding: 4rem 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.category-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-guidelines {
    padding: 4rem 0;
}

.guidelines-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guideline-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.guideline-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.guideline-item ul {
    list-style: none;
    padding: 0;
}

.guideline-item li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.guideline-item li:last-child {
    border-bottom: none;
}

/* Price Comparison Styles */
.price-comparison-tool {
    padding: 4rem 0;
    background: #f8f9fa;
}

.comparison-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff4444;
}

.comparison-results {
    padding: 4rem 0;
}

.results-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-results-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.comparison-results-header p {
    color: #666;
}

.results-list {
    display: grid;
    gap: 1rem;
}

.result-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    gap: 1rem;
}

.result-site {
    font-weight: 600;
    color: #1a1a1a;
}

.result-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff4444;
}

.result-discount {
    color: #28a745;
    font-weight: 600;
}

.price-trends {
    padding: 4rem 0;
    background: #f8f9fa;
}

.trends-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.trend-chart {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trend-chart h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.chart-placeholder {
    text-align: center;
    color: #666;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 200px;
    margin-top: 2rem;
    gap: 1rem;
}

.bar {
    background: #ff4444;
    border-radius: 5px 5px 0 0;
    min-width: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.bar:hover {
    background: #cc0000;
}

.bar::after {
    content: attr(data-month);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #666;
}

.trend-insights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.insight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.insight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.insight-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.money-saving-tips {
    padding: 4rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tip-item p {
    color: #666;
    line-height: 1.6;
}

.popular-destinations {
    padding: 4rem 0;
    background: #f8f9fa;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.destination-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.destination-info {
    padding: 1.5rem;
    text-align: center;
}

.destination-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.destination-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff4444;
}

.price-alert {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}

.alert-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.alert-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.alert-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.alert-form input {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.alert-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,68,68,0.3);
}

/* Event Calendar Styles */
.event-calendar {
    padding: 4rem 0;
    background: #f8f9fa;
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: #ff4444;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.calendar-nav:hover {
    background: #cc0000;
}

#current-month {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.calendar-day-header {
    background: #1a1a1a;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.calendar-day {
    background: #fff;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover {
    background: #f8f9fa;
}

.calendar-day.empty {
    background: #f8f9fa;
    cursor: default;
}

.calendar-day.has-event {
    background: #fff5f5;
    color: #ff4444;
    font-weight: 600;
}

.event-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
}

/* Event Alerts */
.event-alerts {
    padding: 4rem 0;
    background: #fff;
}

.alert-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.alert-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.alert-content p {
    color: #666;
    margin-bottom: 2rem;
}

.alert-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.alert-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

.alert-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ff4444;
}

/* Details List Styles */
.details-list {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff4444;
}

.detail-item h4 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.detail-item p {
    margin-bottom: 0.5rem;
    color: #333;
}

.detail-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.detail-item em {
    color: #666;
    font-style: italic;
}

/* Day Events List */
.day-events-list {
    margin-top: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.day-events-header {
    background: #ff4444;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}

.day-events-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.day-events-content {
    padding: 1.5rem;
}

.day-event-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.day-event-item:hover {
    background: #f8f9fa;
}

.day-event-item:last-child {
    border-bottom: none;
}

.event-time {
    background: #ff4444;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    height: fit-content;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.event-info p {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.event-code {
    background: #f8f9fa;
    color: #ff4444;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Reward Program Styles */
.reward-program {
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    color: #fff;
    padding: 4rem 0;
}

.reward-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.reward-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.reward-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.reward-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.reward-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.reward-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.reward-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.reward-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.reward-visual {
    text-align: center;
}

.stamp-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stamp-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stamp-item.filled {
    background: #fff;
    color: #ff4444;
    border-color: #fff;
}

.stamp-item.reward {
    background: #ffd700;
    color: #ff4444;
    border-color: #ffd700;
    font-size: 1.5rem;
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Card Partnerships Styles */
.card-partnerships {
    background: #f8f9fa;
    padding: 4rem 0;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partnership-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4444;
    margin-bottom: 1rem;
}

.discount-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.discount-rate {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff4444;
}

.discount-code {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid #ff4444;
}

.validity {
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
}

.conditions {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.partnership-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.partnership-actions .btn {
    flex: 1;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

/* Usage Tips Main Styles */
.usage-tips-main {
    background: #fff;
    padding: 4rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #ff4444;
}

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

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Coupon Requirements Styles */
.coupon-requirements {
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
    border-left: 3px solid #ff4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coupons-grid,
    .events-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .event-date {
        font-size: 0.75rem;
    }
    
    .event-actions {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* New sections responsive */
    .reward-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partnerships-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Mobile specific styles */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .alert-form {
        grid-template-columns: 1fr;
    }
    
    .trends-content {
        grid-template-columns: 1fr;
    }
    
    .calendar-day {
        min-height: 50px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .calendar-day-header {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .alert-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .issues-grid,
    .guidelines-content {
        grid-template-columns: 1fr;
    }
    
    .result-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .chart-bars {
        height: 150px;
        gap: 0.5rem;
    }
    
    .bar {
        min-width: 30px;
    }
    
    .insight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .insight-icon {
        align-self: center;
    }
    
    /* New sections mobile responsive */
    .reward-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partnerships-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}
