/*
Theme Name: OpstarEvent
*/
.pt-0 {
  padding-top: 0 !important;
}

:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-secondary: #64748b;
  --color-accent: #3b82f6;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Background Colors */
  --color-bg-primary: #f5f5f5;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: rgba(255, 255, 255, 0.9);
  --color-bg-overlay: rgba(15, 23, 42, 0.5);

  /* Text Colors */
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-text-inverse: #ffffff;

  /* Border Colors */
  --color-border: #e2e8f0;
  --color-border-light: #cbd5e1;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #0ea5e9 100%);
  --gradient-secondary: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #eff6ff 100%);

  /* Spacing */
  --spacing-xs: 0.25rem;
  /* 4px */
  --spacing-sm: 0.5rem;
  /* 8px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  --spacing-2xl: 3rem;
  /* 48px */
  --spacing-3xl: 4rem;
  /* 64px */
  --spacing-4xl: 6rem;
  /* 96px */

  /* Typography */
  --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-family-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;

  --font-size-xs: 0.75rem;
  /* 12px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-lg: 1.125rem;
  /* 18px */
  --font-size-xl: 1.25rem;
  /* 20px */
  --font-size-2xl: 1.5rem;
  /* 24px */
  --font-size-3xl: 1.875rem;
  /* 30px */
  --font-size-4xl: 2.25rem;
  /* 36px */
  --font-size-5xl: 3rem;
  /* 48px */
  --font-size-6xl: 3.75rem;
  /* 60px */

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Borders & Radius */
  --border-radius-sm: 0.375rem;
  /* 6px */
  --border-radius-md: 0.5rem;
  /* 8px */
  --border-radius-lg: 0.75rem;
  /* 12px */
  --border-radius-xl: 1rem;
  /* 16px */
  --border-radius-2xl: 1.5rem;
  /* 24px */
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
}

/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: radial-gradient(circle, #0c0c0c 65%, #1f1e1e 100%);
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 40px 20px;
}
.main{
    padding-top: 165px;
}
.hero-wrapper{
    display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hero-image{
    max-width: 500px;
    height: auto;
    width: 100%;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.header {
    margin-bottom: 40px;
}
.subtitle {
    color: #00ff00;
    font-size: 12px;
    margin-bottom: 10px;
}
.title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}
.description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.description li {
    margin-bottom: 8px;
    list-style: none;
}
.button-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}
.btn-primary {
    background-color: #0066ff;
    color: white;
}
.btn-secondary {
    background-color: #666666;
    color: white;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.stat-item {
    border-right: 1px solid #444444;
    padding-right: 20px;
}
.stat-item:last-child {
    border-right: none;
}
.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 14px;
    color: #cccccc;
}
.regions-section {
    padding: 40px 0;
}
.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}
.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.region-card {
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}
.region-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.region-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.region-card p {
    color: #cccccc;
    font-size: 13px;
    margin-bottom: 8px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffffff;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.rating-card {
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviewer-info {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviewer-name {
    font-weight: 600;
    margin: 0;
    margin-bottom: 5px;
    color: #333;
}

.reviewer-role {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.stars {
    color: #ffc107;
    font-size: 16px;
}

h2 {
    color: #667eea;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
    font-size: 1.8em;
}

h3 {
    color: #ebebeb;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3em;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.8;
    color: #555 !important;
}

ol, ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    line-height: 1.7;
}

.guide-step {
    margin: 15px 0;
    border-radius: 2px;
}

.guide-step h4 {
    color: #ebebeb;
    margin-bottom: 10px;
}

.faq-item {
    margin: 10px 0;
    border-radius: 4px;
}

.faq-item strong {
    color: #ebebeb;
    display: block;
    margin-bottom: 8px;
}
.featured-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-left {
    flex: 1;
    color: white;
}

.featured-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.featured-right {
    flex: 1;
}

.featured-stats {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    color: white;
}

.stat-block {
    margin-bottom: 20px;
}

.stat-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.stat-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .featured-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .featured-title {
        font-size: 28px;
    }
}