@charset "UTF-8";
:root {
  --color-primary: #3182f6;
  --color-primary-dark: #1c6dd0;
  --color-secondary: #f2f4f6;
  --color-dark: #191f28;
  --color-light: #8b95a1;
  --color-text: #191f28;
  --color-text-muted: #8b95a1;
  --color-white: #ffffff;
  --color-background: #f8f9fa;
  --color-border: #e5e8eb;
  --color-card: #ffffff;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #dc3545; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #191f28;
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s; }
  a:hover {
    color: #3182f6; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.3s; }
  button:focus {
    outline: 2px solid #3182f6;
    outline-offset: 2px; }

input, textarea, select {
  font-family: inherit;
  border: 2px solid #e5e8eb;
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color 0.3s; }
  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #3182f6; }

ul, ol {
  list-style: none; }

img {
  max-width: 100%;
  height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px; }

h1 {
  font-size: 2.5em;
  color: #3182f6; }

h2 {
  font-size: 1.8em; }

h3 {
  font-size: 1.3em;
  color: #4e5968; }

p {
  margin-bottom: 24px;
  line-height: 1.8; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 48px; }
  @media (max-width: 767px) {
    .container {
      padding: 32px;
      margin: 0 16px; } }

.flex-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  padding: 0; }
  @media (max-width: 767px) {
    .flex-container {
      flex-direction: column;
      gap: 32px; } }

.sidebar {
  width: 300px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 32px; }
  @media (max-width: 767px) {
    .sidebar {
      width: 100%;
      position: static;
      order: 2; } }

.main-content {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 24px; }
  @media (max-width: 767px) {
    .main-content {
      order: 1;
      padding: 32px; } }

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin: 32px 0; }
  @media (max-width: 767px) {
    .grid-container {
      grid-template-columns: 1fr; } }

.toss-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e8eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 56px; }
  .toss-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .toss-nav__logo {
    font-size: 18px;
    font-weight: 700;
    color: #3182f6;
    text-decoration: none;
    letter-spacing: -0.3px; }
  .toss-nav__menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .toss-nav__menu-line {
    width: 18px;
    height: 2px;
    background: #191f28;
    transition: all 0.3s ease;
    margin: 2px 0; }
  .toss-nav__menu.active .toss-nav__menu-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px); }
  .toss-nav__menu.active .toss-nav__menu-line:nth-child(2) {
    opacity: 0; }
  .toss-nav__menu.active .toss-nav__menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px); }
  .toss-nav__links {
    display: flex;
    gap: 16px;
    align-items: center; }
  .toss-nav__link {
    color: #191f28;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s; }
    .toss-nav__link:hover {
      background: #f2f4f6; }
    .toss-nav__link--active {
      background: #f2f4f6; }
    .toss-nav__link--primary {
      background: #3182f6;
      color: #ffffff;
      font-weight: 600; }
      .toss-nav__link--primary:hover {
        background: #1c6dd0; }
    .toss-nav__link--danger {
      background: #dc3545;
      color: #ffffff;
      font-weight: 600; }
      .toss-nav__link--danger:hover {
        background: #bd2130; }
  .toss-nav__mobile {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e8eb;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 1001; }
    .toss-nav__mobile.active {
      display: flex;
      flex-direction: column; }
  .toss-nav__mobile-link {
    display: block;
    color: #191f28;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid #f2f4f6;
    font-size: 16px;
    font-weight: 500; }
    .toss-nav__mobile-link:last-child {
      border-bottom: none; }
    .toss-nav__mobile-link--primary {
      color: #3182f6;
      font-weight: 600; }
    .toss-nav__mobile-link--admin {
      color: #ffffff;
      background: #191f28;
      border-radius: 8px;
      margin: 8px 0;
      padding: 16px 16px;
      font-weight: 600; }
    .toss-nav__mobile-link--sub {
      padding: 12px 0 12px 24px;
      font-size: 15px;
      color: #4e5968; }
    .toss-nav__mobile-link--danger {
      color: #dc3545; }
  .toss-nav__mobile-section {
    border-bottom: 1px solid #f2f4f6; }
    .toss-nav__mobile-section:last-child {
      border-bottom: none; }
  .toss-nav__mobile-section-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #191f28;
    cursor: pointer;
    text-align: left; }
  .toss-nav__mobile-section-content {
    display: none;
    border-top: 1px solid #f2f4f6; }
    .toss-nav__mobile-section-content.active {
      display: block; }
    .toss-nav__mobile-section-content .toss-nav__mobile-link {
      border-bottom: 1px solid rgba(242, 244, 246, 0.5); }
      .toss-nav__mobile-section-content .toss-nav__mobile-link:last-child {
        border-bottom: none; }
  .toss-nav__mobile-arrow {
    font-size: 12px;
    transition: transform 0.2s; }
  .toss-nav__dropdown {
    position: relative;
    display: inline-block; }
  .toss-nav__dropdown-btn {
    color: #191f28;
    text-decoration: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    background: none;
    border: none; }
    .toss-nav__dropdown-btn:hover {
      background: #f2f4f6; }
    .toss-nav__dropdown-btn--user {
      background-color: rgba(49, 130, 246, 0.1);
      border-radius: 20px;
      padding: 6px 12px; }
  .toss-nav__dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s; }
    .toss-nav__dropdown.active .toss-nav__dropdown-arrow {
      transform: rotate(180deg); }
  .toss-nav__user-avatar {
    width: 28px;
    height: 28px;
    background-color: #3182f6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600; }
  .toss-nav__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 1000;
    margin-top: 4px;
    border: 1px solid #e5e8eb; }
    .toss-nav__dropdown-menu--right {
      right: 0; }
    .toss-nav__dropdown-menu--left {
      left: 0; }
    .toss-nav__dropdown-menu.active {
      display: block; }
  .toss-nav__dropdown-item {
    display: block;
    color: #191f28;
    text-decoration: none;
    padding: 12px 16px;
    border-bottom: 1px solid #f2f4f6;
    transition: background-color 0.2s;
    font-size: 14px; }
    .toss-nav__dropdown-item:last-child {
      border-bottom: none; }
    .toss-nav__dropdown-item:hover {
      background-color: #f2f4f6; }
    .toss-nav__dropdown-item--danger {
      color: #dc3545; }
  .toss-nav__user-info {
    padding: 12px 16px;
    border-bottom: 1px solid #f2f4f6;
    background-color: #f2f4f6; }
  .toss-nav__user-status {
    font-size: 12px;
    color: #8b95a1;
    margin-bottom: 4px; }
  .toss-nav__user-email {
    font-size: 14px;
    font-weight: 600;
    color: #191f28; }
  @media (max-width: 767px) {
    .toss-nav__links {
      display: none; }
    .toss-nav__menu {
      display: flex; }
    .toss-nav__dropdown-menu {
      position: fixed;
      top: 56px;
      left: 0;
      right: 0;
      min-width: auto;
      margin-top: 0;
      border-radius: 0; } }

.toss-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; }
  @media (max-width: 767px) {
    .toss-container {
      padding: 0 12px; } }

.toss-header {
  padding: 40px 0 32px;
  text-align: center; }
  .toss-header__title {
    font-size: 32px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
    letter-spacing: -0.5px; }
    @media (max-width: 767px) {
      .toss-header__title {
        font-size: 24px; } }
  .toss-header__subtitle {
    font-size: 18px;
    color: #8b95a1;
    font-weight: 400;
    margin-bottom: 32px; }
    @media (max-width: 767px) {
      .toss-header__subtitle {
        font-size: 16px; } }
  .toss-header__content {
    flex: 1; }
  .toss-header__actions {
    display: flex;
    gap: 12px; }
  .toss-header--admin {
    padding: 32px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .toss-header--admin .toss-header__title {
      margin-bottom: 8px; }
    @media (max-width: 767px) {
      .toss-header--admin {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 0 16px; }
        .toss-header--admin .toss-header__actions {
          width: 100%;
          justify-content: flex-start; }
        .toss-header--admin .toss-header__title {
          font-size: 24px; } }

.toss-section {
  margin-bottom: 32px; }
  .toss-section:last-child {
    margin-bottom: 0; }
  .toss-section__title {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px; }
  .toss-section__content {
    color: #4e5968;
    line-height: 1.6;
    font-size: 15px; }
    .toss-section__content p {
      margin-bottom: 16px; }
    .toss-section__content ul {
      list-style: none;
      padding-left: 0; }
    .toss-section__content li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 8px; }
      .toss-section__content li::before {
        content: "•";
        color: #3182f6;
        position: absolute;
        left: 0;
        font-weight: bold; }

.toss-empty {
  text-align: center;
  padding: 40px 20px;
  color: #8b95a1; }
  .toss-empty__icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.6; }
  .toss-empty__text {
    font-size: 16px;
    margin-bottom: 8px; }
  .toss-empty__desc {
    font-size: 14px;
    opacity: 0.8; }

.toss-loading {
  text-align: center;
  padding: 20px;
  color: #8b95a1; }
  .toss-loading__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e8eb;
    border-top: 3px solid #3182f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.toss-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e8eb;
  overflow: hidden;
  transition: all 0.2s;
  margin-bottom: 16px; }
  .toss-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
  .toss-card--gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff; }
  .toss-card--admin {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f2f4f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
    .toss-card--admin:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); }
  .toss-card--profile {
    background: white;
    border-radius: 16px;
    border: 1px solid #e1e5e9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
    .toss-card--profile:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
  .toss-card--pricing {
    background: white;
    border-radius: 16px;
    border: 1px solid #e1e5e9; }
    .toss-card--pricing--highlight {
      border: 2px solid #3182f6;
      transform: scale(1.05); }
      .toss-card--pricing--highlight:hover {
        transform: scale(1.07); }
  .toss-card--faq {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e8eb; }
  .toss-card--error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #ef4444; }
  .toss-card--no-padding {
    padding: 0; }
  .toss-card--compact {
    padding: 16px;
    margin-bottom: 12px; }

.toss-content {
  padding: 24px; }
  @media (max-width: 767px) {
    .toss-content {
      padding: 20px; } }
  .toss-card--no-padding .toss-content {
    padding: 24px; }
    @media (max-width: 767px) {
      .toss-card--no-padding .toss-content {
        padding: 20px; } }
  .toss-card--compact .toss-content {
    padding: 16px; }
    @media (max-width: 767px) {
      .toss-card--compact .toss-content {
        padding: 16px; } }

.toss-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px; }
  @media (max-width: 767px) {
    .toss-stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px; } }

.toss-stat-card {
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-radius: 16px; }

.toss-stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px; }
  @media (max-width: 767px) {
    .toss-stat-number {
      font-size: 24px; } }

.toss-stat-label {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500; }

.toss-guide {
  padding: 24px; }
  @media (max-width: 767px) {
    .toss-guide {
      padding: 20px; } }
  .toss-guide__title {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px; }
  .toss-guide__steps {
    list-style: none;
    margin: 0;
    padding: 0; }
  .toss-guide__step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    color: #4e5968;
    line-height: 1.5; }
  .toss-guide__step-number {
    background: #3182f6;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0; }

.toss-example {
  background: #f8f9fa;
  border-left: 4px solid #3182f6;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0; }
  .toss-example__title {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px; }
  .toss-example__content {
    color: #4e5968;
    line-height: 1.5; }

.toss-code {
  background: #f8f9fa;
  border: 1px solid #e5e8eb;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px; }
  .toss-code__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e5e8eb; }
  .toss-code__title {
    font-size: 14px;
    font-weight: 600;
    color: #191f28; }
  .toss-code__copy {
    background: #28a745;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s; }
    .toss-code__copy:hover {
      background: #1e7e34; }
  .toss-code__block {
    background: #2d3748;
    color: #e2e8f0;
    padding: 20px;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    border: none;
    resize: none;
    width: 100%;
    min-height: 200px; }

.toss-output {
  padding: 24px; }
  @media (max-width: 767px) {
    .toss-output {
      padding: 20px; } }
  .toss-output__title {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 20px; }

.toss-input, .toss-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e8eb;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s;
  background: #ffffff; }
  .toss-input:focus, .toss-select:focus {
    outline: none;
    border-color: #3182f6;
    box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.1); }
  .toss-input:disabled, .toss-select:disabled {
    background: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.7; }
  .toss-input--error {
    border-color: #dc3545; }
    .toss-input--error:focus {
      box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1); }
  .toss-input--success {
    border-color: #28a745; }
    .toss-input--success:focus {
      box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1); }

.toss-select {
  cursor: pointer; }
  .toss-select:focus {
    cursor: pointer; }

.toss-form {
  padding: 24px; }
  @media (max-width: 767px) {
    .toss-form {
      padding: 20px; } }
  .toss-form__section {
    margin-bottom: 32px; }
    .toss-form__section:last-child {
      margin-bottom: 0; }
  .toss-form__title {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 20px; }
  .toss-form__group {
    margin-bottom: 20px; }
  .toss-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #191f28;
    margin-bottom: 8px; }
  .toss-form__input, .toss-form__select, .toss-form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e8eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
    background: #ffffff; }
    .toss-form__input:focus, .toss-form__select:focus, .toss-form__textarea:focus {
      outline: none;
      border-color: #3182f6;
      box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.1); }
  .toss-form__textarea {
    min-height: 80px;
    resize: vertical; }
  .toss-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: end; }
    @media (max-width: 767px) {
      .toss-form-row {
        flex-direction: column;
        gap: 12px; } }

.toss-item {
  background: #f8f9fa;
  border: 2px dashed #e5e8eb;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.2s; }
  .toss-item:hover {
    border-color: #3182f6;
    background: #f0f7ff; }
  .toss-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px; }
  .toss-item__title {
    font-size: 16px;
    font-weight: 600;
    color: #191f28; }
  .toss-item__remove {
    background: #ff6b6b;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s; }
    .toss-item__remove:hover {
      background: #ff5252; }
  .toss-item__fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px; }
    @media (max-width: 767px) {
      .toss-item__fields {
        grid-template-columns: 1fr; } }

.toss-save {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e5e8eb; }
  .toss-save__buttons {
    display: flex;
    gap: 12px; }
    @media (max-width: 767px) {
      .toss-save__buttons {
        flex-direction: column; } }
  .toss-save__input {
    padding: 12px 16px;
    border: 2px solid #e5e8eb;
    border-radius: 8px;
    font-size: 15px; }
    .toss-save__input:focus {
      outline: none;
      border-color: #3182f6;
      box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.1); }

.toss-search {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: center; }
  @media (max-width: 767px) {
    .toss-search {
      flex-direction: column;
      align-items: stretch; } }
  .toss-search__input {
    width: 300px;
    padding: 12px 16px;
    border: 2px solid #e5e8eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s; }
    .toss-search__input:focus {
      outline: none;
      border-color: #3182f6;
      box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.1); }
    @media (max-width: 767px) {
      .toss-search__input {
        width: 100%; } }

.toss-btn {
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  gap: 8px; }
  .toss-btn--primary {
    background: #3182f6;
    color: #ffffff; }
    .toss-btn--primary:hover {
      background: #1c6dd0;
      transform: translateY(-1px); }
  .toss-btn--secondary {
    background: #f2f4f6;
    color: #4e5968;
    border: 1px solid #e5e8eb; }
    .toss-btn--secondary:hover {
      background: #e5e8eb; }
  .toss-btn--success {
    background: #28a745;
    color: #ffffff; }
    .toss-btn--success:hover {
      background: #1e7e34;
      transform: translateY(-1px); }
  .toss-btn--danger {
    background: #dc3545;
    color: #ffffff; }
    .toss-btn--danger:hover {
      background: #bd2130;
      transform: translateY(-1px); }
  .toss-btn--large {
    padding: 18px 32px;
    font-size: 18px;
    border-radius: 16px; }
  .toss-btn--medium {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 12px;
    gap: 6px; }
  .toss-btn--small {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;
    gap: 4px; }
  .toss-btn--compact {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
    gap: 6px; }
  .toss-btn--full {
    width: 100%; }
  .toss-btn--square {
    padding: 16px;
    border-radius: 12px; }
  .toss-btn--flex {
    display: flex; }
  .toss-btn--full-page {
    width: 100%; }
  .toss-btn--admin-hover:hover {
    border-color: #3182f6; }

.toss-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px; }
  @media (max-width: 767px) {
    .toss-nav-buttons {
      flex-direction: column; } }

.toss-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden; }
  .toss-table th {
    background: #f8f9fa;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #4e5968;
    font-size: 13px;
    border-bottom: 1px solid #e5e8eb; }
  .toss-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f2f4f6;
    color: #191f28;
    font-size: 14px; }
  .toss-table tr:last-child td {
    border-bottom: none; }
  .toss-table tr:hover {
    background-color: #f8f9fa; }
  @media (max-width: 767px) {
    .toss-table {
      font-size: 13px; }
      .toss-table th,
      .toss-table td {
        padding: 8px 12px; } }

.toss-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px; }
  .toss-pagination__item {
    padding: 8px 12px;
    border: 1px solid #e5e8eb;
    background: #ffffff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s; }
    .toss-pagination__item--active {
      background: #3182f6;
      color: #ffffff;
      border-color: #3182f6; }
    .toss-pagination__item:hover:not(.toss-pagination__item--active) {
      background: #f2f4f6; }

.toss-alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  display: none; }
  .toss-alert--success {
    background: #e8f3ff;
    color: #1c6dd0;
    border: 1px solid #b3d9ff; }
  .toss-alert--error {
    background: #fff2f2;
    color: #dc3545;
    border: 1px solid #ffb3b3; }
  .toss-alert--warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7; }

.toss-badge {
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px; }
  .toss-badge--free {
    background: #f2f4f6;
    color: #8b95a1; }
  .toss-badge--basic {
    background: #e8f3ff;
    color: #1c6dd0; }
  .toss-badge--pro {
    background: #d4edda;
    color: #155724; }
  .toss-badge--admin {
    background: #fff2f2;
    color: #dc3545; }
  .toss-badge--success {
    background: #e8f3ff;
    color: #1c6dd0; }
  .toss-badge--warning {
    background: #fff3cd;
    color: #856404; }
  .toss-badge--danger {
    background: #fff2f2;
    color: #dc3545; }

.toss-tabs {
  display: flex;
  border-bottom: 1px solid #e5e8eb;
  margin-bottom: 24px;
  overflow-x: auto; }
  @media (max-width: 767px) {
    .toss-tabs {
      padding: 0 4px; } }
  .toss-tabs--vertical {
    flex-direction: column;
    border-bottom: none;
    margin: 0;
    overflow: visible; }

.toss-tab {
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #8b95a1;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap; }
  .toss-tab:hover {
    color: #3182f6; }
  .toss-tab--active {
    color: #3182f6;
    border-bottom-color: #3182f6; }
  @media (max-width: 767px) {
    .toss-tab {
      padding: 12px 16px;
      font-size: 14px; } }
  .toss-tabs--vertical .toss-tab {
    width: 100%;
    text-align: left;
    background: transparent;
    border-bottom: none;
    margin-bottom: 4px;
    border-radius: 12px;
    color: #6b7280;
    font-weight: 500;
    position: relative;
    outline: none;
    box-shadow: none; }
    .toss-tabs--vertical .toss-tab:hover {
      background: #f8fafc;
      color: #374151;
      transform: translateX(4px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
    .toss-tabs--vertical .toss-tab--active {
      background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
      color: white;
      font-weight: 600;
      box-shadow: 0 4px 16px rgba(49, 130, 246, 0.2);
      transform: translateX(4px);
      border-bottom-color: transparent; }
      .toss-tabs--vertical .toss-tab--active:hover {
        background: linear-gradient(135deg, #1c6dd0 0%, #1e40af 100%);
        transform: translateX(6px); }
    .toss-tabs--vertical .toss-tab:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.1); }

.toss-tab-content {
  display: none; }
  .toss-tab-content--active {
    display: block; }

/* 토스 스타일 모달 컴포넌트 */
.toss-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000; }
  .toss-modal.show {
    display: flex; }

.toss-modal__content {
  background: white;
  border-radius: 16px;
  padding: 24px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalSlideUp 0.3s ease-out; }

.toss-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e8eb; }

.toss-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: #191f28;
  margin: 0; }

.toss-modal__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #8b95a1;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s; }
  .toss-modal__close:hover {
    color: #191f28;
    background: #f2f4f6; }

.toss-modal__body {
  margin-bottom: 24px; }

.toss-modal__footer,
.toss-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid #e5e8eb; }

/* 모바일 반응형 */
@media (max-width: 768px) {
  .toss-modal__content {
    margin: 20px;
    max-height: calc(100vh - 40px);
    max-width: none;
    width: calc(100% - 40px); }

  .toss-modal__footer,
  .toss-modal__actions {
    flex-direction: column;
    gap: 8px; } }
/* 애니메이션 */
@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* 모달 변형 클래스들 */
.toss-modal--large .toss-modal__content {
  max-width: 800px; }

.toss-modal--small .toss-modal__content {
  max-width: 400px; }

.toss-modal--fullscreen .toss-modal__content {
  max-width: 95%;
  max-height: 95%;
  width: 95%;
  height: 95%; }

/* 토스 스타일 로딩 컴포넌트 */
:root {
  --color-primary: #3182f6;
  --color-primary-dark: #1c6dd0;
  --color-secondary: #f2f4f6;
  --color-dark: #191f28;
  --color-light: #8b95a1;
  --color-text: #191f28;
  --color-text-muted: #8b95a1;
  --color-white: #ffffff;
  --color-background: #f8f9fa;
  --color-border: #e5e8eb;
  --color-card: #ffffff;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #dc3545; }

.toss-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #e5e8eb;
  border-top: 2px solid #3182f6;
  border-radius: 50%;
  animation: toss-spin 1s linear infinite;
  vertical-align: middle; }
  .toss-loading--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px; }
    .toss-loading--center .toss-loading {
      margin-bottom: 24px; }
  .toss-loading--large {
    width: 40px;
    height: 40px;
    border-width: 3px; }
  .toss-loading--medium {
    width: 28px;
    height: 28px;
    border-width: 3px; }
  .toss-loading--small {
    width: 16px;
    height: 16px;
    border-width: 2px; }
  .toss-loading--white {
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff; }
  .toss-loading--success {
    border-color: #86e29b;
    border-top-color: #28a745; }
  .toss-loading--warning {
    border-color: #ffe7a0;
    border-top-color: #ffc107; }

.toss-loading__text {
  color: #4e5968;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px; }
  .toss-loading__text--white {
    color: rgba(255, 255, 255, 0.9); }

.toss-loading--inline {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle; }

.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 64px;
  text-align: center; }
  .loading-container .toss-loading {
    margin-bottom: 32px; }
  .loading-container h3 {
    color: #191f28;
    margin-bottom: 16px;
    font-size: 1.2em; }
  .loading-container p {
    color: #4e5968;
    margin: 0;
    line-height: 1.5; }

@keyframes toss-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.progress {
  background-color: #f0f0f0;
  height: 4px;
  border-radius: 2px;
  margin: 32px 0;
  overflow: hidden; }
  .progress__fill {
    background-color: #3182f6;
    height: 100%;
    width: 0%;
    transition: width 0.3s;
    border-radius: 2px; }
  .progress--thick {
    height: 8px; }
    .progress--thick .progress__fill {
      border-radius: 4px; }

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
  color: #ffffff;
  font-weight: bold; }
  .avatar--small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
    color: #ffffff;
    font-weight: bold;
    font-size: 14px; }
  .avatar--large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
    color: #ffffff;
    font-weight: bold;
    font-size: 24px; }
  .avatar--square {
    border-radius: 6px; }

.tabs {
  display: flex;
  border-bottom: 1px solid #e5e8eb;
  margin-bottom: 48px; }
  .tabs__item {
    padding: 24px 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #8b95a1;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-size: 16px; }
    .tabs__item:hover {
      color: #3182f6; }
    .tabs__item--active {
      color: #3182f6;
      border-bottom-color: #3182f6;
      font-weight: bold; }
  @media (max-width: 767px) {
    .tabs {
      flex-wrap: wrap; }
      .tabs .tabs__item {
        padding: 16px 24px;
        font-size: 14px; } }

.accordion {
  border: 1px solid #e5e8eb;
  border-radius: 6px;
  overflow: hidden; }
  .accordion__item {
    border-bottom: 1px solid #e5e8eb; }
    .accordion__item:last-child {
      border-bottom: none; }
  .accordion__header {
    padding: 32px;
    background-color: #f2f4f6;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s; }
    .accordion__header:hover {
      background-color: #e3e7ec; }
    .accordion__header--active {
      background-color: white;
      color: #3182f6; }
  .accordion__title {
    font-weight: bold;
    font-size: 1.1em; }
  .accordion__icon {
    font-size: 18px;
    transition: transform 0.3s; }
    .accordion__header--active .accordion__icon {
      transform: rotate(180deg); }
  .accordion__content {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #ffffff; }
    .accordion__content--active {
      padding: 32px;
      max-height: 500px; }

.tooltip {
  position: relative;
  cursor: help; }
  .tooltip__content {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #191f28;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1020;
    margin-bottom: 8px; }
    .tooltip__content::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 4px solid transparent;
      border-top-color: #191f28; }
  .tooltip:hover .tooltip__content {
    opacity: 1;
    visibility: visible; }

.steps {
  display: flex;
  align-items: center;
  margin: 48px 0; }
  .steps__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    position: relative; }
    .steps__item:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 20px;
      left: 60%;
      right: -40%;
      height: 2px;
      background-color: #e5e8eb;
      z-index: 1; }
    .steps__item--active::after {
      background-color: #3182f6; }
  .steps__number {
    background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(3, 199, 90, 0.3);
    font-size: 1em;
    margin-bottom: 16px;
    background-color: #e5e8eb;
    color: #4e5968;
    position: relative;
    z-index: 2; }
    .steps__item--active .steps__number, .steps__item--completed .steps__number {
      background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
      color: #ffffff; }
  .steps__title {
    font-weight: bold;
    color: #4e5968;
    font-size: 0.9em;
    text-align: center; }
    .steps__item--active .steps__title, .steps__item--completed .steps__title {
      color: #3182f6; }

html {
  scroll-behavior: smooth; }

body {
  overflow-x: hidden; }

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none; }
  .hero-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite; }

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }
  @media (max-width: 768px) {
    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1.5rem; } }

.hero-subtitle {
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 3.5rem;
  opacity: 0.95;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
  @media (max-width: 768px) {
    .hero-subtitle {
      margin-bottom: 2.5rem; } }

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap; }
  @media (max-width: 768px) {
    .hero-cta {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 3rem; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: none; }
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s; }
  .btn:hover::before {
    left: 100%; }
  @media (max-width: 768px) {
    .btn {
      width: 100%;
      max-width: 320px;
      padding: 1.1rem 2rem; } }

.btn-primary {
  background: white;
  color: #667eea;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  font-weight: 800; }
  .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    color: #764ba2;
    background: #fafafa; }
  .btn-primary:active {
    transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 700; }
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }

.demo-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  max-width: 650px;
  margin: 0 auto;
  color: #333;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2); }
  @media (max-width: 768px) {
    .demo-card {
      padding: 2rem;
      margin: 0 16px; } }

.demo-input-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem; }
  @media (max-width: 768px) {
    .demo-input-group {
      flex-direction: column;
      gap: 1rem; } }

.demo-input {
  flex: 1;
  padding: 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: white; }
  .demo-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px); }
  .demo-input::placeholder {
    color: #a0aec0;
    font-weight: 400; }

.demo-btn {
  background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  font-size: 1rem; }
  .demo-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); }
  .demo-btn:active {
    transform: scale(1.02); }
  @media (max-width: 768px) {
    .demo-btn {
      width: 100%;
      padding: 1.1rem 2rem; } }

.demo-info {
  color: #718096;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500; }

.features-section {
  padding: 100px 0;
  background: white;
  position: relative;
  z-index: 2; }

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 4rem;
  font-weight: 800;
  color: #2d3748;
  letter-spacing: -0.02em; }
  @media (max-width: 768px) {
    .section-title {
      margin-bottom: 3rem; } }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px; }
  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 24px; } }

.feature-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden; }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease; }
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white; }
    .feature-card:hover::before {
      transform: scaleX(1); }
    .feature-card:hover .feature-icon {
      transform: scale(1.1); }

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)); }

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: #2d3748;
  font-weight: 700;
  letter-spacing: -0.01em; }

.feature-description {
  color: #4a5568;
  line-height: 1.7;
  font-weight: 500; }

.pricing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  position: relative;
  z-index: 2; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px; }
  @media (max-width: 768px) {
    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0 24px; } }

.pricing-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent; }
  .pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    border-color: #667eea; }
  .pricing-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2); }
    .pricing-card.featured::before {
      content: "인기";
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
      color: white;
      padding: 0.75rem 2rem;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 700;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); }
    @media (max-width: 768px) {
      .pricing-card.featured {
        transform: none; } }

.plan-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em; }

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: #667eea;
  margin-bottom: 1rem;
  line-height: 1; }
  .plan-price span {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500; }

.plan-features {
  list-style: none;
  margin: 2.5rem 0;
  text-align: left; }
  .plan-features li {
    padding: 0.75rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
    line-height: 1.5; }
    .plan-features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #48bb78;
      font-weight: 800;
      font-size: 1.1rem; }

.plan-button {
  width: 100%;
  padding: 1.25rem;
  border: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block; }
  .plan-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
    color: white; }
    .plan-button.primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); }
  .plan-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    font-weight: 700; }
    .plan-button.secondary:hover {
      background: #667eea;
      color: white;
      transform: translateY(-3px); }

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  color: white;
  text-align: center;
  position: relative;
  z-index: 2; }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none; }

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2; }

.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em; }

.cta-description {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9); }

.usage-stats {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center; }
  @media (max-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem; } }

.stat-item {
  padding: 1rem 0.5rem; }

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  display: block;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
  @media (max-width: 768px) {
    .stat-number {
      font-size: 1.6rem; } }

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem; }
  @media (max-width: 768px) {
    .stat-label {
      font-size: 0.85rem; } }

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg); }
  50% {
    transform: translateY(-20px) rotate(180deg); } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.hero-content {
  animation: fadeInUp 0.8s ease-out; }

.demo-card {
  animation: fadeInUp 0.8s ease-out 0.2s both; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out; }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0); }

.page-header {
  margin-bottom: 48px; }
  .page-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 32px 0; }
    @media (max-width: 767px) {
      .page-header__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px; } }
  .page-header__text {
    flex: 1; }
  .page-header__title {
    font-size: 2.2em;
    font-weight: 700;
    color: #3182f6;
    margin-bottom: 8px;
    line-height: 1.2; }
    @media (max-width: 767px) {
      .page-header__title {
        font-size: 1.8em; } }
  .page-header__subtitle {
    font-size: 1.1em;
    color: #4e5968;
    margin-bottom: 0;
    line-height: 1.4; }
    @media (max-width: 767px) {
      .page-header__subtitle {
        font-size: 1em; } }
  .page-header__actions {
    display: flex;
    align-items: center; }
    @media (max-width: 767px) {
      .page-header__actions {
        width: 100%;
        justify-content: center; } }

.hero {
  background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
  color: #ffffff;
  padding: 128px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 48px; }
  .hero__title {
    font-size: 3em;
    margin-bottom: 32px;
    color: #ffffff; }
    @media (max-width: 767px) {
      .hero__title {
        font-size: 2.2em; } }
  .hero__subtitle {
    font-size: 1.3em;
    margin-bottom: 48px;
    opacity: 0.9; }
    @media (max-width: 767px) {
      .hero__subtitle {
        font-size: 1.1em; } }
  .hero__actions {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap; }
    @media (max-width: 767px) {
      .hero__actions {
        flex-direction: column;
        align-items: center; } }
  .hero__button {
    background-color: #ffffff;
    color: #3182f6;
    padding: 24px 48px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s; }
    .hero__button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3); }
    .hero__button--secondary {
      background-color: transparent;
      color: #ffffff;
      border: 2px solid #ffffff; }
      .hero__button--secondary:hover {
        background-color: #ffffff;
        color: #3182f6; }

.features {
  margin: 128px 0; }
  .features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px; }
  .features__item {
    text-align: center;
    padding: 48px; }
    .features__item-icon {
      font-size: 4em;
      color: #3182f6;
      margin-bottom: 32px; }
    .features__item-title {
      font-size: 1.3em;
      font-weight: bold;
      margin-bottom: 24px;
      color: #191f28; }
    .features__item-description {
      color: #4e5968;
      line-height: 1.6; }

.toss-storage-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 6px;
  font-size: 0.9em;
  border: 1px solid #e5e8eb;
  background-color: white; }
  .toss-storage-info__icon {
    font-size: 1.2em; }
  .toss-storage-info__text {
    flex: 1;
    color: #191f28;
    font-weight: 500; }
  .toss-storage-info__upgrade {
    color: #3182f6;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #3182f6;
    transition: all 0.3s; }
    .toss-storage-info__upgrade:hover {
      background-color: #3182f6;
      color: #ffffff; }
  .toss-storage-info--unlimited {
    background-color: #9be7ac;
    border-color: #28a745; }
    .toss-storage-info--unlimited .toss-storage-info__text {
      color: #19692c; }
  .toss-storage-info--limit {
    background-color: #ffeeba;
    border-color: #ffc107; }
    .toss-storage-info--limit .toss-storage-info__text {
      color: #ba8b00; }

.toss-guest-notice {
  margin-top: 32px; }

.toss-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 24px; }
  .toss-notice__icon {
    font-size: 1.5em;
    flex-shrink: 0; }
  .toss-notice__content {
    flex: 1; }
  .toss-notice__title {
    font-size: 1.1em;
    font-weight: 600;
    color: #856404;
    margin-bottom: 8px; }
  .toss-notice__desc {
    color: #856404;
    line-height: 1.5;
    margin-bottom: 24px; }
  .toss-notice__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap; }

.carousel-generator__form {
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.carousel-generator__section {
  margin-bottom: 48px; }
  .carousel-generator__section:last-child {
    margin-bottom: 0; }
.carousel-generator__section-title {
  color: #3182f6;
  font-size: 1.3em;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #3182f6; }
.carousel-generator__type-selector {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap; }
  @media (max-width: 767px) {
    .carousel-generator__type-selector {
      flex-direction: column; } }
.carousel-generator__type-option {
  flex: 1;
  min-width: 120px;
  padding: 24px;
  border: 2px solid #e5e8eb;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s; }
  .carousel-generator__type-option:hover {
    border-color: #3182f6; }
  .carousel-generator__type-option--selected {
    border-color: #3182f6;
    background-color: white; }
  .carousel-generator__type-option-icon {
    font-size: 2em;
    margin-bottom: 8px;
    color: #3182f6; }
  .carousel-generator__type-option-label {
    font-weight: bold;
    color: #191f28; }
.carousel-generator__items {
  border: 1px solid #e5e8eb;
  border-radius: 6px;
  overflow: hidden; }
.carousel-generator__item {
  padding: 32px;
  border-bottom: 1px solid #e5e8eb; }
  .carousel-generator__item:last-child {
    border-bottom: none; }
  .carousel-generator__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px; }
  .carousel-generator__item-title {
    font-weight: bold;
    color: #191f28; }
  .carousel-generator__item-remove {
    background-color: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
    .carousel-generator__item-remove:hover {
      background-color: #bd2130; }
  .carousel-generator__item-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px; }
    @media (max-width: 767px) {
      .carousel-generator__item-fields {
        grid-template-columns: 1fr; } }
.carousel-generator__add-button {
  width: 100%;
  padding: 24px;
  border: 2px dashed #e5e8eb;
  background-color: transparent;
  color: #8b95a1;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1em; }
  .carousel-generator__add-button:hover {
    border-color: #3182f6;
    color: #3182f6;
    background-color: white; }
.carousel-generator__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 48px; }
  @media (max-width: 767px) {
    .carousel-generator__actions {
      flex-direction: column; } }
.carousel-generator__output {
  margin-top: 48px; }
  .carousel-generator__output-title {
    color: #3182f6;
    font-size: 1.2em;
    margin-bottom: 24px; }
  .carousel-generator__output-tabs {
    display: flex;
    border-bottom: 1px solid #e5e8eb;
    margin-bottom: 32px; }
  .carousel-generator__output-tab {
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #8b95a1;
    border-bottom: 2px solid transparent;
    transition: all 0.3s; }
    .carousel-generator__output-tab:hover {
      color: #3182f6; }
    .carousel-generator__output-tab--active {
      color: #3182f6;
      border-bottom-color: #3182f6;
      font-weight: bold; }
  .carousel-generator__output-content {
    position: relative; }
  .carousel-generator__output-code {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 32px;
    border-radius: 6px;
    overflow-x: auto;
    font-family: "Courier New", monospace;
    font-size: 14px;
    line-height: 1.5;
    max-height: 400px;
    overflow-y: auto; }
  .carousel-generator__output-copy {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em; }
    .carousel-generator__output-copy:hover {
      background-color: rgba(255, 255, 255, 0.2); }

.profile__header {
  background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
  color: #ffffff;
  padding: 64px;
  text-align: center;
  margin: 0 0 48px 0;
  border-radius: 8px 8px 0 0; }
  @media (max-width: 767px) {
    .profile__header {
      padding: 48px 32px; } }
.profile__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
  color: #ffffff;
  font-weight: bold;
  font-size: 32px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  margin: 0 auto 32px auto;
  background-color: #ffffff;
  color: #3182f6; }
.profile__name {
  font-size: 1.8em;
  margin-bottom: 8px;
  font-weight: bold; }
.profile__email {
  opacity: 0.9;
  font-size: 1.1em; }
.profile__section {
  margin-bottom: 64px; }
  .profile__section:last-child {
    margin-bottom: 0; }
.profile__section-title {
  color: #3182f6;
  font-size: 1.3em;
  margin-bottom: 32px;
  padding-bottom: 8px;
  border-bottom: 2px solid #3182f6; }
.profile__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 48px; }
  @media (max-width: 767px) {
    .profile__info-grid {
      grid-template-columns: 1fr; } }
.profile__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; }
  @media (max-width: 767px) {
    .profile__stats-grid {
      grid-template-columns: repeat(2, 1fr); } }
.profile__activity {
  background-color: #f2f4f6;
  border-radius: 6px;
  overflow: hidden; }
  .profile__activity-header {
    background-color: #3182f6;
    color: #ffffff;
    padding: 24px 32px;
    font-weight: bold; }
  .profile__activity-list {
    padding: 32px;
    max-height: 400px;
    overflow-y: auto; }
  .profile__activity-item {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #e5e8eb; }
    .profile__activity-item:last-child {
      border-bottom: none; }
  .profile__activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    margin-right: 24px;
    flex-shrink: 0; }
  .profile__activity-content {
    flex: 1; }
  .profile__activity-title {
    font-weight: bold;
    color: #191f28;
    margin-bottom: 3px; }
  .profile__activity-time {
    color: #8b95a1;
    font-size: 0.9em; }
  .profile__activity-empty {
    text-align: center;
    padding: 64px;
    color: #8b95a1; }
    .profile__activity-empty-icon {
      font-size: 48px;
      margin-bottom: 24px; }
    .profile__activity-empty p {
      margin-bottom: 16px; }
      .profile__activity-empty p:last-child {
        margin-bottom: 0; }
      .profile__activity-empty p a {
        color: #3182f6;
        text-decoration: none; }
        .profile__activity-empty p a:hover {
          text-decoration: underline; }
.profile__actions {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap; }
  @media (max-width: 767px) {
    .profile__actions {
      flex-direction: column; }
      .profile__actions .btn {
        justify-content: center; } }

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #4ba299 100%);
  padding: 32px; }
  @media (max-width: 767px) {
    .auth {
      min-height: calc(100vh - 56px);
      margin-top: 56px;
      padding: 24px; } }
  .auth__container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 64px;
    width: 100%;
    max-width: 400px; }
  .auth__logo {
    text-align: center;
    margin-bottom: 48px; }
    .auth__logo-icon {
      font-size: 3em;
      color: #3182f6;
      margin-bottom: 16px; }
    .auth__logo-text {
      font-size: 1.5em;
      font-weight: bold;
      color: #191f28; }
  .auth__title {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 48px;
    color: #191f28; }
  .auth__form {
    margin-bottom: 32px; }
  .auth__toggle {
    text-align: center;
    color: #8b95a1; }
    .auth__toggle a {
      color: #3182f6;
      text-decoration: none;
      font-weight: bold; }
      .auth__toggle a:hover {
        text-decoration: underline; }
  .auth__divider {
    text-align: center;
    margin: 32px 0;
    position: relative;
    color: #8b95a1; }
    .auth__divider::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background-color: #e5e8eb; }
    .auth__divider span {
      background-color: #ffffff;
      padding: 0 24px; }
  .auth__social {
    display: flex;
    flex-direction: column;
    gap: 16px; }
    .auth__social-button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 16px 24px;
      border: 2px solid #e5e8eb;
      border-radius: 6px;
      background-color: #ffffff;
      color: #191f28;
      text-decoration: none;
      transition: all 0.3s; }
      .auth__social-button:hover {
        border-color: #3182f6;
        color: #3182f6; }
      .auth__social-button--google:hover {
        border-color: #db4437;
        color: #db4437; }
      .auth__social-button--github:hover {
        border-color: #333;
        color: #333; }
  .auth__forgot {
    text-align: center;
    margin-top: 24px; }
    .auth__forgot a {
      color: #3182f6;
      text-decoration: none;
      font-size: 0.9em; }
      .auth__forgot a:hover {
        text-decoration: underline; }
  .auth__error {
    background-color: #fff2f2;
    color: #dc3545;
    padding: 16px 24px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 0.9em;
    border-left: 4px solid #dc3545; }
  .auth__success {
    background-color: #e8f3ff;
    color: #3182f6;
    padding: 16px 24px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 0.9em;
    border-left: 4px solid #3182f6; }
  .auth__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px; }
    .auth__loading-spinner {
      width: 24px;
      height: 24px;
      border: 2px solid #e5e8eb;
      border-top: 2px solid #3182f6;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-right: 16px; }

.password-reset__container {
  max-width: 500px; }
.password-reset__description {
  color: #4e5968;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6; }
.password-reset__back {
  text-align: center;
  margin-top: 32px; }
  .password-reset__back a {
    color: #3182f6;
    text-decoration: none; }
    .password-reset__back a:hover {
      text-decoration: underline; }

.email-verify__container {
  max-width: 500px;
  text-align: center; }
.email-verify__icon {
  font-size: 4em;
  color: #3182f6;
  margin-bottom: 32px; }
.email-verify__title {
  font-size: 1.5em;
  margin-bottom: 24px;
  color: #191f28; }
.email-verify__description {
  color: #4e5968;
  margin-bottom: 48px;
  line-height: 1.6; }
.email-verify__resend {
  color: #8b95a1;
  font-size: 0.9em; }
  .email-verify__resend button {
    background: none;
    border: none;
    color: #3182f6;
    cursor: pointer;
    text-decoration: underline; }
    .email-verify__resend button:hover {
      color: #0a66ea; }
    .email-verify__resend button:disabled {
      color: #8b95a1;
      cursor: not-allowed;
      text-decoration: none; }

/* auth.html 페이지 전용 스타일 */
body.auth-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: white;
  color: #191f28;
  font-size: 15px;
  line-height: 1.4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0; }
  @media (max-width: 768px) {
    body.auth-page {
      padding: 60px 20px 20px;
      align-items: flex-start;
      padding-top: 80px; } }
  @media (max-width: 480px) {
    body.auth-page {
      padding: 70px 16px 16px;
      padding-top: 70px; } }
  @media (max-height: 600px) and (max-width: 768px) {
    body.auth-page {
      padding-top: 60px; }
      body.auth-page .toss-auth {
        margin-top: 10px; } }

/* 토스 스타일 카드 */
.toss-auth {
  background: white;
  border-radius: 20px;
  padding: 16px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative; }
  @media (max-width: 768px) {
    .toss-auth {
      margin-top: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); } }
  @media (max-width: 480px) {
    .toss-auth {
      border-radius: 16px;
      padding: 20px;
      margin-top: 16px; } }

.toss-auth__header {
  text-align: center;
  margin-bottom: 32px; }

.toss-auth__logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: white;
  font-weight: 700; }

.toss-auth__title {
  font-size: 24px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 8px; }

.toss-auth__subtitle {
  font-size: 15px;
  color: #8b95a1; }

/* 인증 페이지용 폼 오버라이드 */
.auth-page .toss-form {
  margin-bottom: 24px; }

.auth-page .toss-form__input {
  padding: 16px;
  border-radius: 12px;
  font-size: 16px; }

/* 인증 페이지용 버튼 스타일 - toss-btn--full-page 모디파이어 사용 */
/* 인증 페이지용 알림 스타일 (기본 알림 사용) */
/* 폼 전환 */
.toss-switch {
  text-align: center;
  color: #8b95a1;
  font-size: 14px; }

.toss-switch__link {
  color: #3182f6;
  text-decoration: none;
  font-weight: 600; }

.toss-switch__link:hover {
  text-decoration: underline; }

/* 뒤로가기 링크 */
.toss-back {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #f2f4f6;
  color: #191f28;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  z-index: 1000;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease; }
  .toss-back:hover {
    background: #e5e8eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); }
  @media (max-width: 768px) {
    .toss-back {
      top: 16px;
      left: 16px;
      padding: 10px 14px;
      font-size: 13px;
      z-index: 1100; } }
  @media (max-width: 480px) {
    .toss-back {
      padding: 8px 12px;
      font-size: 12px;
      top: 12px;
      left: 12px; } }

/* 로딩 상태는 중앙 컴포넌트에서 관리 - components/_toss-loading.scss 참조 */
/* 폼 표시/숨김 */
.form-hidden {
  display: none; }

/* 소셜 로그인 구분선 */
.toss-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: #8b95a1;
  font-size: 14px; }

.toss-divider::before,
.toss-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e8eb; }

.toss-divider span {
  padding: 0 16px; }

/* 패스워드 강도 표시 */
.toss-password-strength {
  margin-top: 8px;
  font-size: 12px; }

.toss-password-strength__bar {
  height: 3px;
  background: #e5e8eb;
  border-radius: 2px;
  margin-bottom: 4px;
  overflow: hidden; }

.toss-password-strength__fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s;
  border-radius: 2px; }

.toss-password-strength--weak .toss-password-strength__fill {
  width: 33%;
  background: #dc3545; }

.toss-password-strength--medium .toss-password-strength__fill {
  width: 66%;
  background: #ffc107; }

.toss-password-strength--strong .toss-password-strength__fill {
  width: 100%;
  background: #10b981; }

/* 모바일 반응형 */
@media (max-width: 480px) {
  body.auth-page {
    padding: 12px; }

  .toss-auth {
    padding: 32px 24px;
    border-radius: 16px;
    max-width: none; }

  .toss-auth__title {
    font-size: 20px; }

  .toss-back {
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    font-size: 13px; } }
/* 애니메이션 */
.toss-auth {
  animation: slideUp 0.4s ease-out; }

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* contact.html 페이지 전용 스타일 */
/* CSS 리셋과 기본 스타일은 base/_reset.scss에서 관리 */
/* 다크모드 방지 - contact 페이지 전용 */
html, body {
  background-color: #f8f9fa !important;
  color: #191f28 !important; }

/* 컨테이너 */
.toss-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; }

/* 헤더 섹션 */
.toss-header {
  padding: 32px 0 24px;
  text-align: center; }

.toss-header__title {
  font-size: 28px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 8px;
  letter-spacing: -0.5px; }

.toss-header__subtitle {
  font-size: 16px;
  color: #8b95a1;
  font-weight: 400; }

/* Contact 페이지 - 기본 toss-card 컴포넌트 사용, 중복 제거 */
/* 기본 toss-card 스타일은 components/_toss-cards.scss에서 관리됨 */
/* 연락 방법 그리드 */
.toss-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 24px; }

.toss-contact-method {
  padding: 24px;
  text-align: center;
  cursor: pointer; }

.toss-contact-method__icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block; }

.toss-contact-method__title {
  font-size: 18px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 8px; }

.toss-contact-method__desc {
  font-size: 14px;
  color: #8b95a1;
  margin-bottom: 12px; }

.toss-contact-method__link {
  color: #3182f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px; }

.toss-contact-method__link:hover {
  text-decoration: underline; }

/* 폼 스타일 */
.toss-form {
  padding: 24px; }

.toss-form__title {
  font-size: 20px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 20px; }

.toss-form__group {
  margin-bottom: 20px; }

.toss-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #191f28;
  margin-bottom: 8px; }

.toss-form__label--required::after {
  content: ' *';
  color: #dc3545; }

/* 폼 스타일은 중앙 컴포넌트에서 관리 - components/_toss-forms.scss 참조 */
/* 토스 스타일 버튼 - 중복 스타일 제거됨 (중앙 컴포넌트에서 제공) */
/* 필요한 경우 페이지별 고유 오버라이드만 추가 */
/* FAQ 섹션 */
.toss-faq {
  padding: 24px; }

.toss-faq__title {
  font-size: 20px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 20px; }

.toss-faq__item {
  border-bottom: 1px solid #f2f4f6;
  padding: 16px 0; }

.toss-faq__item:last-child {
  border-bottom: none; }

.toss-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #191f28;
  padding: 8px 0; }

.toss-faq__question:hover {
  color: #3182f6; }

.toss-faq__toggle {
  font-size: 20px;
  color: #8b95a1;
  transition: transform 0.2s; }

.toss-faq__toggle--active {
  transform: rotate(45deg); }

.toss-faq__answer {
  display: none;
  padding: 12px 0 8px;
  color: #4e5968;
  line-height: 1.6; }

.toss-faq__answer--active {
  display: block; }

/* 내 문의 내역 */
.toss-inquiries {
  padding: 24px; }

.toss-inquiries__title {
  font-size: 20px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 20px; }

.toss-inquiry {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #e5e8eb; }

.toss-inquiry__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px; }

.toss-inquiry__type {
  background: #3182f6;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600; }

.toss-inquiry__status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600; }

.toss-inquiry__status--pending {
  background: #fff3cd;
  color: #856404; }

.toss-inquiry__status--progress {
  background: #cce7ff;
  color: #1c6dd0; }

.toss-inquiry__status--resolved {
  background: #d4edda;
  color: #155724; }

.toss-inquiry__title {
  font-size: 16px;
  font-weight: 600;
  color: #191f28;
  margin-bottom: 8px; }

.toss-inquiry__message {
  color: #4e5968;
  line-height: 1.5;
  margin-bottom: 12px; }

.toss-inquiry__date {
  font-size: 12px;
  color: #8b95a1; }

.toss-inquiry__reply {
  background: #e8f3ff;
  border-left: 4px solid #3182f6;
  padding: 16px;
  margin-top: 16px;
  border-radius: 0 8px 8px 0; }

.toss-inquiry__reply-title {
  font-size: 14px;
  font-weight: 600;
  color: #1c6dd0;
  margin-bottom: 8px; }

.toss-inquiry__reply-message {
  color: #4e5968;
  line-height: 1.5; }

/* 알림 스타일은 중앙 컴포넌트에서 관리 - components/_toss-alerts.scss 참조 */
/* 모바일 반응형 */
@media (max-width: 768px) {
  .toss-container {
    padding: 0 12px; }

  .toss-header {
    padding: 24px 0 16px; }

  .toss-header__title {
    font-size: 24px; }

  .toss-contact-grid {
    grid-template-columns: 1fr;
    gap: 12px; }

  .toss-form, .toss-faq, .toss-inquiries {
    padding: 20px; }

  .toss-inquiry__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; } }
/* 빈 상태 */
.toss-empty {
  text-align: center;
  padding: 40px 20px;
  color: #8b95a1; }

.toss-empty__icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6; }

.toss-empty__text {
  font-size: 16px;
  margin-bottom: 8px; }

.toss-empty__desc {
  font-size: 14px;
  opacity: 0.8; }

:root {
  --color-primary: #3182f6;
  --color-primary-dark: #1c6dd0;
  --color-secondary: #f2f4f6;
  --color-dark: #191f28;
  --color-light: #8b95a1;
  --color-text: #191f28;
  --color-text-muted: #8b95a1;
  --color-white: #ffffff;
  --color-background: #f8f9fa;
  --color-border: #e5e8eb;
  --color-card: #ffffff;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #dc3545; }

/* CSS 리셋과 기본 스타일은 base/_reset.scss에서 관리 */
.toss-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; }
  @media (max-width: 768px) {
    .toss-container {
      padding: 0 12px; } }

.toss-header {
  padding: 40px 0 32px;
  text-align: center; }
  .toss-header__title {
    font-size: 32px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
    letter-spacing: -0.5px; }
    @media (max-width: 768px) {
      .toss-header__title {
        font-size: 24px; } }
  .toss-header__subtitle {
    font-size: 18px;
    color: #8b95a1;
    font-weight: 400;
    margin-bottom: 32px; }
    @media (max-width: 768px) {
      .toss-header__subtitle {
        font-size: 16px; } }

.toss-section {
  margin-bottom: 32px; }
  .toss-section:last-child {
    margin-bottom: 0; }
  .toss-section__title {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px; }

.toss-search {
  position: relative;
  max-width: 500px;
  margin: 0 auto 32px auto; }
  .toss-search__input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e5e8eb;
    border-radius: 25px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: #ffffff; }
    .toss-search__input:focus {
      outline: none;
      border-color: #3182f6;
      box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.1); }
  .toss-search__icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b95a1;
    font-size: 18px;
    pointer-events: none; }

.faq-category {
  display: block; }
  .faq-category.hidden {
    display: none; }

.toss-faq__item {
  background: #ffffff;
  border: 1px solid #e5e8eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.2s; }
  .toss-faq__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.toss-faq__question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s; }
  .toss-faq__question:hover {
    background: #f2f4f6; }
  .toss-faq__question h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #191f28;
    flex: 1; }
.toss-faq__toggle {
  font-size: 18px;
  color: #8b95a1;
  transition: transform 0.2s;
  margin-left: 16px; }
  .toss-faq__toggle--active {
    transform: rotate(180deg);
    color: #3182f6; }
.toss-faq__answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #ffffff; }
  .toss-faq__answer--active {
    padding: 20px;
    max-height: 500px; }
  .toss-faq__answer p {
    margin: 0;
    color: #4e5968;
    line-height: 1.6;
    font-size: 15px; }

@media (max-width: 768px) {
  .toss-search {
    margin: 0 auto 24px auto; }
    .toss-search__input {
      padding: 14px 40px 14px 16px;
      font-size: 15px; }
    .toss-search__icon {
      right: 16px;
      font-size: 16px; }

  .toss-faq__question {
    padding: 16px; }
    .toss-faq__question h3 {
      font-size: 15px; }
  .toss-faq__answer--active {
    padding: 16px; }
  .toss-faq__toggle {
    font-size: 16px;
    margin-left: 12px; } }
.toss-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px; }
  @media (max-width: 768px) {
    .toss-stats-grid {
      grid-template-columns: 1fr;
      gap: 16px; } }

.toss-card {
  background: #ffffff;
  border: 1px solid #e5e8eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s; }
  .toss-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }

.toss-guide {
  padding: 24px;
  text-align: center; }
  .toss-guide__icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block; }
  .toss-guide__title {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
    justify-content: center; }
  .toss-guide__desc {
    font-size: 15px;
    color: #4e5968;
    line-height: 1.5;
    margin-bottom: 20px; }

:root {
  --color-primary: #3182f6;
  --color-primary-dark: #1c6dd0;
  --color-secondary: #f2f4f6;
  --color-dark: #191f28;
  --color-light: #8b95a1;
  --color-text: #191f28;
  --color-text-muted: #8b95a1;
  --color-white: #ffffff;
  --color-background: #f8f9fa;
  --color-border: #e5e8eb;
  --color-card: #ffffff;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #dc3545; }

html, body {
  background-color: #f8f9fa !important;
  color: #191f28 !important; }

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

.toss-header {
  padding: 32px 0 24px;
  text-align: center; }
  .toss-header__title {
    font-size: 28px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
    letter-spacing: -0.5px; }
  .toss-header__subtitle {
    font-size: 16px;
    color: #8b95a1;
    font-weight: 400; }

.toss-card--pricing {
  background: white !important;
  border-radius: 16px; }
.toss-card--highlight {
  border-color: #3182f6;
  position: relative; }
  .toss-card--highlight::before {
    content: '추천';
    position: absolute;
    top: -1px;
    right: 20px;
    background: #3182f6;
    color: white;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-size: 12px;
    font-weight: 600; }

.toss-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0; }

.toss-plan {
  padding: 24px; }
  .toss-plan__name {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 4px; }
  .toss-plan__price {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px; }
  .toss-plan__amount {
    font-size: 32px;
    font-weight: 700;
    color: #191f28; }
  .toss-plan__currency {
    font-size: 18px;
    color: #191f28;
    margin-right: 4px; }
  .toss-plan__period {
    font-size: 16px;
    color: #8b95a1;
    margin-left: 4px; }
  .toss-plan__features {
    list-style: none;
    margin-bottom: 24px; }
  .toss-plan__feature {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    color: #4e5968; }
    .toss-plan__feature--highlight {
      color: #191f28;
      font-weight: 600; }
    .toss-plan__feature-icon {
      width: 20px;
      height: 20px;
      margin-right: 12px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 12px;
      font-weight: 600; }
      .toss-plan__feature-icon--check {
        background: #e8f3ff;
        color: #3182f6; }
      .toss-plan__feature-icon--x {
        background: #f2f4f6;
        color: #8b95a1; }

.toss-payment {
  margin: 40px 0;
  padding: 24px;
  text-align: center; }
  .toss-payment__title {
    font-size: 18px;
    font-weight: 600;
    color: #191f28;
    margin-bottom: 8px; }
  .toss-payment__subtitle {
    font-size: 14px;
    color: #8b95a1;
    margin-bottom: 20px; }
  .toss-payment__methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px; }
    @media (max-width: 768px) {
      .toss-payment__methods {
        grid-template-columns: 1fr;
        gap: 12px; } }
  .toss-payment__method {
    background: #ffffff;
    color: #191f28;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #f2f4f6;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease; }
    .toss-payment__method:hover {
      border-color: #3182f6;
      background: white; }
    .toss-payment__method-icon {
      font-size: 16px;
      flex-shrink: 0; }
  .toss-payment__security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #8b95a1;
    background: #c4f1ce;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px; }
    .toss-payment__security-icon {
      color: #28a745;
      font-size: 14px; }

.toss-faq {
  margin: 40px 0;
  padding: 24px; }
  .toss-faq__title {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 24px;
    text-align: center; }
  .toss-faq__item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f4f6; }
  .toss-faq__question {
    font-size: 16px;
    font-weight: 600;
    color: #191f28; }
  .toss-faq__answer {
    font-size: 15px;
    color: #4e5968;
    line-height: 1.5; }

.loading {
  opacity: 0.6;
  pointer-events: none; }

.toss-coupon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 24px;
  border-radius: 16px;
  margin: 24px 0;
  text-align: center; }
  .toss-coupon__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px; }
  .toss-coupon__subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px; }
  .toss-coupon__input {
    display: flex;
    gap: 8px;
    max-width: 320px;
    margin: 0 auto; }
    @media (max-width: 480px) {
      .toss-coupon__input {
        flex-direction: column;
        max-width: none; } }
  .toss-coupon__field {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: #ffffff !important;
    color: #191f28 !important; }
  .toss-coupon__btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s; }
    .toss-coupon__btn:hover {
      background: rgba(255, 255, 255, 0.3); }

@media (max-width: 768px) {
  .toss-container {
    padding: 0 12px; }

  .toss-header {
    padding: 24px 0 16px; }
    .toss-header__title {
      font-size: 24px; }

  .toss-pricing {
    grid-template-columns: 1fr;
    gap: 12px; }

  .toss-plan {
    padding: 20px; }
    .toss-plan__amount {
      font-size: 28px; }

  .toss-payment,
  .toss-faq {
    margin: 32px 0;
    padding: 20px; }

  .toss-payment__methods {
    gap: 8px; }
  .toss-payment__method {
    padding: 6px 12px;
    font-size: 13px; } }
/* 관리자 페이지 전용 스타일 */
:root {
  --color-primary: #3182f6;
  --color-primary-dark: #1c6dd0;
  --color-secondary: #f2f4f6;
  --color-dark: #191f28;
  --color-light: #8b95a1;
  --color-text: #191f28;
  --color-text-muted: #8b95a1;
  --color-white: #ffffff;
  --color-background: #f8f9fa;
  --color-border: #e5e8eb;
  --color-card: #ffffff;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #dc3545; }

/* 다크모드 강제 비활성화 */
html, body {
  background-color: #f8f9fa !important;
  color: #191f28 !important; }

/* CSS 리셋과 기본 스타일은 base/_reset.scss에서 관리 */
.toss-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; }

/* 헤더 섹션 */
.toss-header {
  padding: 32px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.toss-header__content {
  flex: 1; }

.toss-header__title {
  font-size: 28px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 8px;
  letter-spacing: -0.5px; }

.toss-header__subtitle {
  font-size: 16px;
  color: #8b95a1;
  font-weight: 400; }

.toss-header__actions {
  display: flex;
  gap: 12px; }

/* 탭 스타일은 중앙 컴포넌트에서 관리 - components/_toss-tabs.scss 참조 */
/* 관리자 페이지 특화 스타일 */
/* 통계 섹션 */
.toss-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 24px; }

.toss-stat {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e8eb;
  text-align: center; }

.toss-stat__value {
  font-size: 32px;
  font-weight: 700;
  color: #3182f6;
  margin-bottom: 8px; }

.toss-stat__label {
  font-size: 14px;
  color: #8b95a1;
  font-weight: 500; }

/* 테이블 스타일 - 기본 toss-table 컴포넌트 사용, 중복 제거 */
/* 기본 테이블 스타일은 components/_toss-tables.scss에서 관리됨 */
.toss-table--admin {
  margin-bottom: 16px;
  border-radius: 12px; }

/* 관리자 페이지 버튼 스타일 - toss-btn--admin-hover 모디파이어 사용 */
/* 폼 스타일 */
.toss-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e8eb; }

.toss-form__group {
  margin-bottom: 20px; }

.toss-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #191f28;
  margin-bottom: 8px; }

/* 폼 스타일은 중앙 컴포넌트에서 관리 - components/_toss-forms.scss 참조 */
/* 알림 스타일은 중앙 컴포넌트에서 관리 - components/_toss-alerts.scss 참조 */
/* 배지 */
.toss-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600; }

.toss-badge--success {
  background: #d4edda;
  color: #155724; }

.toss-badge--warning {
  background: #fff3cd;
  color: #856404; }

.toss-badge--danger {
  background: #f8d7da;
  color: #721c24; }

.toss-badge--primary {
  background: #e8f3ff;
  color: #1c6dd0; }

/* 페이지네이션 */
.toss-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px; }

.toss-pagination__btn {
  padding: 8px 12px;
  border: 1px solid #e5e8eb;
  background: white;
  color: #4e5968;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s; }

.toss-pagination__btn:hover {
  border-color: #3182f6;
  color: #3182f6; }

.toss-pagination__btn--active {
  background: #3182f6;
  color: white;
  border-color: #3182f6; }

.toss-pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed; }

/* 로딩 상태는 중앙 컴포넌트에서 관리 - components/_toss-loading.scss 참조 */
/* 빈 상태 */
.toss-empty {
  text-align: center;
  padding: 60px 20px;
  color: #8b95a1; }

.toss-empty__icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6; }

.toss-empty__text {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600; }

.toss-empty__desc {
  font-size: 14px;
  opacity: 0.8; }

/* 관리자 페이지 전용 모달 스타일 (필요시 오버라이드) */
/* 모바일 반응형 */
@media (max-width: 768px) {
  .toss-container {
    padding: 0 12px; }

  .toss-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0 16px; }

  .toss-header__title {
    font-size: 24px; }

  .toss-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px; }

  .toss-table {
    font-size: 12px; }

  .toss-table th,
  .toss-table td {
    padding: 12px 8px; }

  .toss-form {
    padding: 20px; }

  .toss-modal__content {
    margin: 20px;
    max-height: calc(100vh - 40px); }

  .toss-modal__footer {
    flex-direction: column; }

  .toss-pagination {
    flex-wrap: wrap;
    gap: 4px; } }
/* 탭 콘텐츠 */
.tab-content {
  display: none; }

.tab-content.active {
  display: block; }

/* 코드 블록 */
.toss-code {
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e5e8eb;
  margin: 16px 0; }

.toss-code__header {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e8eb;
  font-size: 14px;
  font-weight: 600;
  color: #4e5968; }

.toss-code__block {
  padding: 16px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: #4e5968;
  overflow-x: auto; }

/* about-carousel 페이지 전용 스타일 */
:root {
  --color-primary: #3182f6;
  --color-primary-dark: #1c6dd0;
  --color-secondary: #f2f4f6;
  --color-dark: #191f28;
  --color-light: #8b95a1;
  --color-text: #191f28;
  --color-text-muted: #8b95a1;
  --color-white: #ffffff;
  --color-background: #f8f9fa;
  --color-border: #e5e8eb;
  --color-card: #ffffff;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #dc3545; }

/* CSS 리셋과 기본 스타일은 base/_reset.scss에서 관리 */
/* 다크모드 방지 - about-carousel 페이지 전용 */
html, body {
  background-color: #f8f9fa !important;
  color: #191f28 !important; }

/* 컨테이너 */
.toss-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; }

/* 헤더 섹션 */
.toss-header {
  padding: 32px 0 24px;
  text-align: center; }

.toss-header__title {
  font-size: 28px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 8px;
  letter-spacing: -0.5px; }

.toss-header__subtitle {
  font-size: 16px;
  color: #8b95a1;
  font-weight: 400; }

/* 토스 스타일 카드 */
.toss-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e8eb;
  overflow: hidden;
  transition: all 0.2s;
  margin-bottom: 16px; }

.toss-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }

/* 콘텐츠 */
.toss-content {
  padding: 24px; }

.toss-section {
  margin-bottom: 32px; }

.toss-section:last-child {
  margin-bottom: 0; }

.toss-section__title {
  font-size: 20px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px; }

.toss-section__content {
  color: #4e5968;
  line-height: 1.6;
  font-size: 15px; }

.toss-section__content p {
  margin-bottom: 16px; }

.toss-section__content ul {
  list-style: none;
  padding-left: 0; }

.toss-section__content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px; }

.toss-section__content li::before {
  content: "•";
  color: #3182f6;
  position: absolute;
  left: 0;
  font-weight: bold; }

/* 예시 박스 */
.toss-example {
  background: #f8f9fa;
  border-left: 4px solid #3182f6;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0; }

.toss-example__title {
  font-size: 16px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 12px; }

.toss-example__content {
  color: #4e5968;
  line-height: 1.5; }

/* 코드 블록 */
.toss-code {
  background: #2d3748;
  color: #e2e8f0;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
  margin: 16px 0; }

/* 네비게이션 버튼 */
.toss-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px; }

/* 토스 스타일 버튼 - 중복 스타일 제거됨 (중앙 컴포넌트에서 제공) */
/* .toss-btn--medium, --compact, --small, --square, --flex 등 모든 기본 스타일은 중앙에서 관리 */
/* 모바일 반응형 */
@media (max-width: 768px) {
  .toss-container {
    padding: 0 12px; }

  .toss-header {
    padding: 24px 0 16px; }

  .toss-header__title {
    font-size: 24px; }

  .toss-content {
    padding: 20px; }

  .toss-nav-buttons {
    flex-direction: column; } }
/* CSS 리셋과 기본 스타일은 base/_reset.scss에서 관리 */
/* 컨테이너 */
.toss-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; }

/* 헤더 섹션 */
.toss-header {
  padding: 32px 0 24px;
  text-align: center; }

.toss-header__title {
  font-size: 28px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 8px;
  letter-spacing: -0.5px; }

.toss-header__subtitle {
  font-size: 16px;
  color: #8b95a1;
  font-weight: 400; }

/* My Carousels 페이지 - 기본 toss-card 컴포넌트 사용, 중복 제거 */
/* 기본 toss-card 스타일은 components/_toss-cards.scss에서 관리됨 */
/* 사용량 정보 */
.toss-usage {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #ffc107;
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 24px; }

.toss-usage__title {
  font-size: 16px;
  font-weight: 700;
  color: #856404;
  margin-bottom: 8px; }

.toss-usage__content {
  color: #856404;
  font-size: 14px;
  line-height: 1.5; }

/* 액션 바 */
.toss-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 4px; }

/* 캐러셀 페이지 전용 버튼 오버라이드 (중복 제거됨 - 중앙 컴포넌트 사용) */
/* 캐러셀 그리드 */
.toss-carousel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px; }

.toss-carousel-card {
  padding: 20px;
  cursor: pointer; }

.toss-carousel-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px; }

.toss-carousel-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 4px;
  line-height: 1.3; }

.toss-carousel-card__type {
  background: #3182f6;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.toss-carousel-card__meta {
  color: #8b95a1;
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.4; }

.toss-carousel-card__items {
  color: #4e5968;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 500; }

.toss-carousel-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap; }

.toss-carousel-card__share {
  background: #e8f3ff;
  border-left: 4px solid #3182f6;
  padding: 12px;
  margin-top: 12px;
  border-radius: 0 8px 8px 0;
  font-size: 12px;
  color: #1c6dd0; }

.toss-share-url {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px; }

.toss-share-url input {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid #e5e8eb;
  border-radius: 6px;
  font-size: 12px;
  background: #f8f9fa; }

.toss-share-url button {
  background: #17a2b8;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600; }

.toss-share-url button:hover {
  background: #138496; }

/* 빈 상태 */
.toss-empty {
  text-align: center;
  padding: 60px 20px;
  color: #8b95a1; }

.toss-empty__icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.6; }

.toss-empty__title {
  font-size: 20px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 8px; }

.toss-empty__desc {
  font-size: 15px;
  margin-bottom: 24px; }

/* 로딩 상태는 중앙 컴포넌트에서 관리 - components/_toss-loading.scss 참조 */
/* 알림 스타일은 중앙 컴포넌트에서 관리 - components/_toss-alerts.scss 참조 */
/* 캐러셀 페이지 전용 모달 확장 */
.toss-modal__content {
  max-width: 600px;
  /* 더 넓은 모달 */ }

.toss-form__group {
  margin-bottom: 20px; }

.toss-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #191f28;
  margin-bottom: 8px; }

.toss-form__input,
.toss-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e8eb;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s;
  background: white; }

.toss-form__input:focus,
.toss-form__textarea:focus {
  outline: none;
  border-color: #3182f6;
  box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.1); }

.toss-form__textarea {
  min-height: 200px;
  resize: vertical;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px; }

.toss-modal__help {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: #4e5968; }

.toss-modal__help-title {
  font-weight: 600;
  color: #191f28;
  margin-bottom: 8px; }

.toss-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 20px 24px 24px;
  border-top: 1px solid #e5e8eb; }

/* 모바일 반응형 */
@media (max-width: 768px) {
  .toss-container {
    padding: 0 12px; }

  .toss-header {
    padding: 24px 0 16px; }

  .toss-header__title {
    font-size: 24px; }

  .toss-carousel-grid {
    grid-template-columns: 1fr;
    gap: 12px; }

  .toss-carousel-card {
    padding: 16px; }

  .toss-actions {
    flex-direction: column;
    gap: 16px;
    align-items: stretch; }

  .toss-carousel-card__actions {
    justify-content: flex-start; }

  .toss-modal__content {
    margin: 10% auto;
    width: 95%; }

  .toss-modal__header,
  .toss-modal__body,
  .toss-modal__actions {
    padding: 16px; }

  .toss-modal__actions {
    flex-direction: column; } }
/* CSS 리셋과 기본 스타일은 base/_reset.scss에서 관리 */
/* 컨테이너 */
.toss-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; }

/* 프로필 페이지 특화 스타일 */
/* 사이드바 액션 카드 내 버튼 간격 */
.toss-sidebar .toss-card .toss-btn {
  margin-bottom: 12px; }
  .toss-sidebar .toss-card .toss-btn:last-child {
    margin-bottom: 0; }

/* 프로필 헤더 */
.toss-profile-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 32px 24px;
  text-align: center; }

.toss-profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 700;
  font-size: 32px;
  margin: 0 auto 16px;
  border: 3px solid rgba(255, 255, 255, 0.3); }

.toss-profile-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px; }

.toss-profile-email {
  font-size: 16px;
  opacity: 0.9; }

/* 마이 프로필 페이지 버튼 스타일 - toss-btn--full-page 모디파이어 사용 */
/* 정보 카드 */
.toss-info-card {
  padding: 20px;
  background: #f8f9fa;
  border-left: 4px solid #3182f6;
  border-radius: 0 8px 8px 0; }

.toss-info-label {
  font-size: 13px;
  color: #8b95a1;
  margin-bottom: 4px;
  font-weight: 500; }

.toss-info-value {
  font-size: 16px;
  font-weight: 700;
  color: #191f28; }

/* 통계 카드 */
.toss-stat-card {
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 16px; }

.toss-stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px; }

.toss-stat-label {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500; }

/* 섹션 제목 */
.toss-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px; }

/* 그리드 레이아웃 */
.toss-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px; }

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

.toss-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.toss-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

/* 구독 관리 */
.toss-subscription {
  padding: 24px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #ffc107;
  border-radius: 0 12px 12px 0; }

.toss-subscription-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px; }

.toss-subscription-plan {
  font-size: 18px;
  font-weight: 700;
  color: #856404; }

.toss-subscription-price {
  font-size: 24px;
  font-weight: 700;
  color: #856404; }

.toss-subscription-status {
  font-size: 12px;
  color: #856404;
  opacity: 0.8; }

.toss-subscription-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  margin: 16px 0; }

.toss-subscription-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #856404;
  font-size: 14px; }

/* 최근 활동 */
.toss-activity {
  padding: 24px; }

.toss-activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f2f4f6; }

.toss-activity-item:last-child {
  border-bottom: none; }

.toss-activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0; }

.toss-activity-title {
  font-size: 16px;
  font-weight: 600;
  color: #191f28;
  margin-bottom: 4px; }

.toss-activity-time {
  font-size: 13px;
  color: #8b95a1; }

/* 빈 상태 */
.toss-empty {
  text-align: center;
  padding: 40px 20px;
  color: #8b95a1; }

.toss-empty__icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6; }

.toss-empty__text {
  font-size: 16px;
  margin-bottom: 8px; }

.toss-empty__desc {
  font-size: 14px;
  opacity: 0.8; }

/* 로딩 상태는 중앙 컴포넌트에서 관리 - components/_toss-loading.scss 참조 */
/* 알림 스타일은 중앙 컴포넌트에서 관리 - components/_toss-alerts.scss 참조 */
/* 레이아웃 */
.toss-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 24px 0;
  min-height: calc(100vh - 100px); }

.toss-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 24px;
  height: fit-content; }

.toss-main {
  display: flex;
  flex-direction: column;
  gap: 24px; }

/* 테이블 - 기본 toss-table 컴포넌트 사용, 중복 제거 */
/* 기본 테이블 스타일은 components/_toss-tables.scss에서 관리됨 */
.toss-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.toss-badge--success {
  background: #e8f3ff;
  color: #1c6dd0; }

.toss-badge--warning {
  background: #fff3cd;
  color: #856404; }

.toss-badge--danger {
  background: #fff2f2;
  color: #dc3545; }

/* 중간 화면 반응형 - 1200px ~ 1025px */
@media (max-width: 1200px) and (min-width: 1025px) {
  .toss-layout {
    grid-template-columns: 280px 1fr;
    gap: 20px; }

  .toss-sidebar {
    position: sticky;
    top: 24px; } }
/* 태블릿 반응형 - 1024px ~ 769px */
@media (max-width: 1024px) and (min-width: 769px) {
  .toss-layout {
    grid-template-columns: 260px 1fr;
    gap: 16px; }

  .toss-sidebar {
    position: sticky;
    top: 24px; } }
/* 작은 태블릿 반응형 - 768px ~ 601px */
@media (max-width: 768px) and (min-width: 601px) {
  .toss-container {
    padding: 0 16px; }

  .toss-layout {
    grid-template-columns: 240px 1fr;
    gap: 16px; }

  .toss-sidebar {
    position: sticky;
    top: 24px; }

  .toss-grid--2,
  .toss-grid--3,
  .toss-grid--4 {
    grid-template-columns: 1fr; } }
/* 작은 화면 반응형 - 768px 이하 */
@media (max-width: 768px) {
  .toss-container {
    padding: 0 12px; }

  .toss-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0;
    min-height: auto; }

  .toss-sidebar {
    position: static;
    order: 2;
    /* 작은 화면에서는 메인 콘텐츠 아래로 이동 */ }

  .toss-main {
    order: 1;
    /* 작은 화면에서는 메인 콘텐츠를 위로 */ }

  .toss-grid--2,
  .toss-grid--3,
  .toss-grid--4 {
    grid-template-columns: 1fr; }

  .toss-subscription-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; }

  .toss-subscription-benefits {
    grid-template-columns: 1fr; }

  .toss-profile-header {
    padding: 24px 16px; }

  .toss-profile-avatar {
    width: 64px;
    height: 64px;
    font-size: 24px; }

  .toss-profile-name {
    font-size: 20px; }

  .toss-stat-number {
    font-size: 24px; } }
.main-navigation {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 0;
  z-index: 1000;
  margin: -20px -20px 20px -20px;
  width: calc(100% + 40px);
  border-bottom: 1px solid #e5e8eb; }

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

.nav-logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none; }

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 36px; }

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-size: 14px; }

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2); }

.nav-link.btn-white {
  background-color: white;
  color: #03c75a;
  font-weight: bold; }

/* 로그인 상태별 표시/숨김 */
.nav-logged-in {
  display: none; }

.nav-logged-out {
  display: flex; }

body.user-logged-in .nav-logged-in {
  display: flex; }

body.user-logged-in .nav-logged-out {
  display: none; }

.nav-admin {
  display: none; }

body.user-is-admin .nav-admin {
  display: inline-block; }

.user-email {
  color: white;
  font-size: 14px;
  opacity: 0.9; }

.success-container {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
  animation: slideUp 0.6s ease-out; }

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.success-icon {
  font-size: 4rem;
  color: #3182f6;
  margin-bottom: 20px;
  animation: bounce 0.8s ease-out 0.3s both; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-10px); }
  60% {
    transform: translateY(-5px); } }
.success-title {
  color: #3182f6;
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 700; }

.success-subtitle {
  color: #8b95a1;
  margin-bottom: 30px;
  font-size: 1.1rem; }

.plan-info {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 16px;
  margin: 30px 0;
  border-left: 4px solid #3182f6; }

.plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 12px; }

.plan-details {
  color: #4e5968;
  line-height: 1.6;
  margin-bottom: 20px; }

.benefits {
  text-align: left; }

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #4e5968;
  font-size: 15px; }

.benefit-item::before {
  content: "✅";
  margin-right: 8px;
  font-size: 14px; }

.footer-note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e8eb;
  color: #8b95a1;
  font-size: 14px;
  line-height: 1.6; }

.footer-note a {
  color: #3182f6;
  text-decoration: none; }

.footer-note a:hover {
  text-decoration: underline; }

@media (max-width: 600px) {
  .success-container {
    padding: 30px 20px;
    margin: 10px; }

  .success-title {
    font-size: 1.5rem; } }
/* platform-guides.html 페이지 전용 스타일 */
body {
  padding-top: 0;
  /* 상단 여백 제거 */ }

.toss-container {
  padding-top: 24px;
  /* 컨테이너에 상단 여백 추가 */ }

.flex-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  padding: 0;
  margin-top: 0; }
  @media (max-width: 768px) {
    .flex-container {
      grid-template-columns: 1fr;
      gap: 16px; } }

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  @media (max-width: 768px) {
    .sidebar {
      order: 2; } }

@media (max-width: 768px) {
  .main-content {
    order: 1; } }

/* 플랫폼 그리드 스타일 */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0; }

.platform-card {
  background: white;
  border: 2px solid #e5e8eb;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center; }
  .platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #3182f6; }
  .platform-card.selected {
    border-color: #3182f6;
    background: #f8fafb;
    box-shadow: 0 4px 16px rgba(49, 130, 246, 0.1); }

.platform-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block; }

.platform-title {
  font-size: 18px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 8px; }

.platform-desc {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  margin: 0; }

/* 플랫폼 목록 링크는 중앙 toss-tabs 컴포넌트 스타일 사용 */
/* 추가 스타일이 필요한 경우 여기에 작성 */
/* 스텝 가이드 스타일 */
.platform-steps {
  margin: 32px 0; }

.platform-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 16px;
  border-left: 4px solid #3182f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }

.platform-step-number {
  background: #3182f6;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(49, 130, 246, 0.3); }

.platform-step-content {
  flex: 1; }
  .platform-step-content h4 {
    margin: 0 0 12px 0;
    color: #191f28;
    font-size: 18px;
    font-weight: 700; }
  .platform-step-content p {
    margin: 0 0 12px 0;
    color: #4e5968;
    line-height: 1.6;
    font-size: 15px; }
    .platform-step-content p:last-child {
      margin-bottom: 0; }

.platform-guide-content {
  display: none; }
  .platform-guide-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* 코드 블록 스타일 개선 */
.toss-code {
  background: #1f2937;
  border-radius: 12px;
  margin: 16px 0;
  overflow: hidden; }
  .toss-code__block {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #e5e7eb;
    overflow-x: auto;
    margin: 0;
    white-space: pre-wrap; }

/* 섹션 제목 스타일 */
.toss-section__title {
  font-size: 28px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px; }
  .toss-section__title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #3182f6, transparent); }

/* 모바일 반응형 */
@media (max-width: 767px) {
  .flex-container {
    grid-template-columns: 1fr; }

  .sidebar {
    order: 2; }

  .main-content {
    order: 1; }

  .platform-grid {
    grid-template-columns: 1fr;
    gap: 12px; }

  .platform-step {
    flex-direction: column;
    text-align: center;
    padding: 20px; }

  .platform-step-number {
    margin: 0 auto 16px auto; }

  .toss-section__title {
    font-size: 24px; }
    .toss-section__title::after {
      display: none; } }
/* 플랫폼 카드 그룹핑 효과 */
.platform-grid .platform-card {
  position: relative;
  overflow: hidden; }
  .platform-grid .platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease; }
  .platform-grid .platform-card:hover::before {
    left: 100%; }

/* 스텝 가이드 애니메이션 개선 */
.platform-step {
  position: relative; }
  .platform-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3182f6, #1c6dd0);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease; }
  .platform-step:hover::before {
    opacity: 1; }

/* usage-guide.html 페이지 전용 스타일 */
.usage-guide .toss-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #191f28;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px; }
.usage-guide .toss-guide {
  padding: 24px; }
  .usage-guide .toss-guide__title {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px; }
  .usage-guide .toss-guide__steps {
    list-style: none;
    padding: 0;
    margin: 0; }
  .usage-guide .toss-guide__step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e8eb; }
    .usage-guide .toss-guide__step strong {
      color: #191f28;
      font-weight: 600; }
  .usage-guide .toss-guide__step-number {
    background: #3182f6;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0; }
.usage-guide .toss-example {
  background: #e8f3ff;
  border: 1px solid #b3d9ff;
  border-left: 4px solid #3182f6;
  border-radius: 8px;
  padding: 16px;
  margin: 12px 0; }
  .usage-guide .toss-example__title {
    font-size: 14px;
    font-weight: 600;
    color: #1c6dd0;
    margin-bottom: 8px; }
  .usage-guide .toss-example__content {
    color: #1c6dd0;
    font-size: 14px;
    line-height: 1.5; }
  .usage-guide .toss-example ul {
    margin: 0;
    padding-left: 16px; }
    .usage-guide .toss-example ul li {
      color: #1c6dd0;
      margin-bottom: 4px; }
.usage-guide .toss-code {
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e5e8eb;
  margin: 16px 0;
  overflow: hidden; }
  .usage-guide .toss-code__header {
    background: #e5e8eb;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e8eb; }
  .usage-guide .toss-code__title {
    font-size: 14px;
    font-weight: 600;
    color: #4e5968; }
  .usage-guide .toss-code__copy {
    background: #3182f6;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s; }
    .usage-guide .toss-code__copy:hover {
      background: #1c6dd0; }
  .usage-guide .toss-code__block {
    padding: 16px;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #c2c2c3;
    overflow-x: auto;
    margin: 0;
    white-space: pre-wrap;
    text-align: left; }
.usage-guide .toss-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 32px 0; }
  .usage-guide .toss-stats-grid .toss-stat-card {
    background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
    color: white !important;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(49, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; }
    .usage-guide .toss-stats-grid .toss-stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(49, 130, 246, 0.3); }
    .usage-guide .toss-stats-grid .toss-stat-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease; }
    .usage-guide .toss-stats-grid .toss-stat-card:hover::before {
      opacity: 1; }
    .usage-guide .toss-stats-grid .toss-stat-card * {
      color: white !important; }
    .usage-guide .toss-stats-grid .toss-stat-card .stat-icon {
      font-size: 3.5rem;
      margin-bottom: 16px;
      display: block;
      opacity: 0.9; }
    .usage-guide .toss-stats-grid .toss-stat-card .stat-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: white !important; }
    .usage-guide .toss-stats-grid .toss-stat-card .stat-desc {
      font-size: 15px;
      opacity: 0.9;
      line-height: 1.6;
      color: white !important; }
.usage-guide .toss-card--gradient {
  background: linear-gradient(135deg, #3182f6 0%, #1c6dd0 100%);
  border: none; }
  .usage-guide .toss-card--gradient .quick-start {
    padding: 24px;
    text-align: center; }
    .usage-guide .toss-card--gradient .quick-start h2 {
      margin: 0 0 12px 0;
      font-size: 24px;
      font-weight: 700; }
    .usage-guide .toss-card--gradient .quick-start p {
      margin: 0 0 16px 0;
      opacity: 0.9; }
  .usage-guide .toss-card--gradient .toss-guide__title {
    font-weight: 700; }
.usage-guide .table-of-contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px; }
  .usage-guide .table-of-contents--sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px; }
    .usage-guide .table-of-contents--sidebar .toss-btn {
      text-align: left;
      justify-content: flex-start;
      margin-bottom: 0; }
.usage-guide .step-number {
  background: #3182f6;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-right: 12px;
  flex-shrink: 0; }
.usage-guide .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin: 20px 0; }
.usage-guide .feature-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #3182f6; }
  .usage-guide .feature-card h4 {
    color: #191f28;
    margin-bottom: 8px;
    font-weight: 600; }
  .usage-guide .feature-card p {
    color: #4e5968;
    margin: 0;
    line-height: 1.5; }
.usage-guide .warning-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #f59e0b;
  border-left: 6px solid #f59e0b;
  color: #92400e;
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1); }
  .usage-guide .warning-box strong {
    color: #92400e;
    font-weight: 700; }
.usage-guide .tip-box {
  background: linear-gradient(135deg, #e8f3ff 0%, #dbeafe 100%);
  border: 2px solid #3b82f6;
  border-left: 6px solid #3b82f6;
  color: #1e40af;
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1); }
  .usage-guide .tip-box strong {
    color: #1e40af;
    font-weight: 700; }
.usage-guide .content-type-grid,
.usage-guide .toss-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 32px 0; }
.usage-guide .content-type-card,
.usage-guide .toss-stats-grid .toss-card {
  background: white;
  border: 2px solid #e5e8eb;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
  .usage-guide .content-type-card:hover,
  .usage-guide .toss-stats-grid .toss-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #3182f6; }
  .usage-guide .content-type-card .type-icon,
  .usage-guide .toss-stats-grid .toss-card .type-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
    text-align: center; }
  .usage-guide .content-type-card .type-name,
  .usage-guide .toss-stats-grid .toss-card .type-name {
    font-size: 20px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
    text-align: center; }
  .usage-guide .content-type-card .type-desc,
  .usage-guide .toss-stats-grid .toss-card .type-desc {
    color: #4e5968;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: center; }
  .usage-guide .content-type-card .field-list,
  .usage-guide .toss-stats-grid .toss-card .field-list {
    margin: 0;
    padding: 0;
    list-style: none; }
    .usage-guide .content-type-card .field-list li,
    .usage-guide .toss-stats-grid .toss-card .field-list li {
      color: #6b7280;
      font-size: 14px;
      margin-bottom: 6px;
      padding-left: 16px;
      position: relative; }
      .usage-guide .content-type-card .field-list li::before,
      .usage-guide .toss-stats-grid .toss-card .field-list li::before {
        content: '✓';
        color: #10b981;
        margin-right: 8px;
        font-weight: bold;
        position: absolute;
        left: 0; }
.usage-guide .toss-stats-grid .toss-card .toss-guide .toss-guide__title,
.usage-guide .toss-stats-grid .toss-card .toss-guide h3 {
  color: #191f28 !important;
  font-weight: 700;
  margin-bottom: 16px; }
.usage-guide .toss-stats-grid .toss-card .toss-guide p, .usage-guide .toss-stats-grid .toss-card .toss-guide div, .usage-guide .toss-stats-grid .toss-card .toss-guide span {
  color: #4e5968 !important; }
.usage-guide .toss-section__title {
  color: #191f28 !important;
  font-weight: 700;
  margin-bottom: 24px; }
.usage-guide .optimization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin: 20px 0; }
.usage-guide .optimization-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e5e8eb 100%);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e8eb; }
  .usage-guide .optimization-card .opt-icon {
    font-size: 24px;
    margin-bottom: 12px;
    display: block; }
  .usage-guide .optimization-card .opt-title {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px; }
  .usage-guide .optimization-card .opt-desc {
    color: #4e5968;
    font-size: 14px;
    line-height: 1.5;
    margin: 0; }
.usage-guide .troubleshooting-list .problem-item {
  background: white;
  border: 1px solid #e5e8eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px; }
  .usage-guide .troubleshooting-list .problem-item .problem-title {
    font-size: 16px;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px; }
    .usage-guide .troubleshooting-list .problem-item .problem-title::before {
      content: '❌';
      font-size: 14px; }
  .usage-guide .troubleshooting-list .problem-item .problem-desc {
    color: #4e5968;
    margin-bottom: 12px;
    line-height: 1.5; }
  .usage-guide .troubleshooting-list .problem-item .solution-title {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px; }
    .usage-guide .troubleshooting-list .problem-item .solution-title::before {
      content: '✅';
      font-size: 14px; }
  .usage-guide .troubleshooting-list .problem-item .solution-desc {
    color: #4e5968;
    font-size: 14px;
    line-height: 1.5;
    margin: 0; }
.usage-guide .cta-section {
  padding: 40px;
  text-align: center; }
  .usage-guide .cta-section__title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700; }
  .usage-guide .cta-section__description {
    margin-bottom: 24px;
    opacity: 0.9; }
  .usage-guide .cta-section__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap; }

/* 모바일 반응형 */
@media (max-width: 768px) {
  .usage-guide .table-of-contents {
    grid-template-columns: 1fr;
    gap: 8px; }
  .usage-guide .feature-grid,
  .usage-guide .content-type-grid,
  .usage-guide .optimization-grid {
    grid-template-columns: 1fr;
    gap: 12px; }
  .usage-guide .step-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
    margin-right: 10px; } }
.meta-tags-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px; }
  @media (max-width: 1024px) {
    .meta-tags-grid {
      grid-template-columns: 1fr;
      gap: 24px; } }

.seo-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; }
  @media (max-width: 768px) {
    .seo-analysis {
      grid-template-columns: 1fr;
      gap: 16px; } }
  .seo-analysis .seo-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: #f2f4f6;
    border-radius: 6px; }
    .seo-analysis .seo-metric__icon {
      font-size: 2em;
      margin-bottom: 8px; }
    .seo-analysis .seo-metric__label {
      font-size: 0.9em;
      color: #4e5968;
      margin-bottom: 8px; }
    .seo-analysis .seo-metric__value {
      font-size: 1.2em;
      font-weight: 600;
      color: #191f28; }
    .seo-analysis .seo-metric--good {
      background: #c4f1ce;
      border-left: 4px solid #28a745; }
      .seo-analysis .seo-metric--good .seo-metric__icon {
        color: #28a745; }
    .seo-analysis .seo-metric--warning {
      background: #fffaed;
      border-left: 4px solid #ffc107; }
      .seo-analysis .seo-metric--warning .seo-metric__icon {
        color: #ffc107; }
    .seo-analysis .seo-metric--error {
      background: #fef9f9;
      border-left: 4px solid #dc3545; }
      .seo-analysis .seo-metric--error .seo-metric__icon {
        color: #dc3545; }

.seo-debug-form {
  margin-bottom: 32px; }
  .seo-debug-form .url-input-container {
    display: flex;
    gap: 8px;
    align-items: flex-end; }
    @media (max-width: 768px) {
      .seo-debug-form .url-input-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px; } }
    .seo-debug-form .url-input-container .toss-select {
      min-width: 100px;
      font-size: 16px;
      padding: 16px 12px;
      border: 2px solid #e5e8eb;
      border-radius: 6px;
      background-color: white; }
      @media (max-width: 768px) {
        .seo-debug-form .url-input-container .toss-select {
          font-size: 16px; } }
    .seo-debug-form .url-input-container .toss-input, .seo-debug-form .url-input-container .toss-select {
      flex: 1;
      min-width: 280px;
      font-size: 16px; }
      @media (max-width: 768px) {
        .seo-debug-form .url-input-container .toss-input, .seo-debug-form .url-input-container .toss-select {
          min-width: auto;
          font-size: 16px; } }
      .seo-debug-form .url-input-container .toss-input--url {
        padding: 16px; }
    .seo-debug-form .url-input-container .toss-btn {
      white-space: nowrap;
      min-width: 140px;
      padding: 16px 24px;
      font-size: 16px;
      font-weight: 600; }
      .seo-debug-form .url-input-container .toss-btn .btn-loading {
        display: flex;
        align-items: center;
        gap: 8px; }
        .seo-debug-form .url-input-container .toss-btn .btn-loading .toss-loading {
          width: 18px;
          height: 18px; }

.social-preview-tabs {
  margin-bottom: 32px; }
  .social-preview-tabs .toss-tabs--social .toss-tab {
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 8px 8px 0 0; }
    .social-preview-tabs .toss-tabs--social .toss-tab:hover {
      background: rgba(49, 130, 246, 0.05); }
    .social-preview-tabs .toss-tabs--social .toss-tab--active {
      background: rgba(49, 130, 246, 0.1);
      font-weight: 600; }

.social-preview {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-background);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
  .social-preview--facebook .fb-preview-card {
    display: flex;
    max-width: 520px;
    border: 1px solid #dddfe2;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); }
    @media (max-width: 768px) {
      .social-preview--facebook .fb-preview-card {
        flex-direction: column;
        max-width: 100%; } }
    .social-preview--facebook .fb-preview-card .fb-preview-image {
      width: 158px;
      height: 158px;
      flex-shrink: 0; }
      @media (max-width: 768px) {
        .social-preview--facebook .fb-preview-card .fb-preview-image {
          width: 100%;
          height: 200px; } }
      .social-preview--facebook .fb-preview-card .fb-preview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .social-preview--facebook .fb-preview-card .fb-preview-content {
      padding: 16px;
      flex: 1; }
      .social-preview--facebook .fb-preview-card .fb-preview-content .fb-preview-domain {
        font-size: 13px;
        color: #606770;
        margin-bottom: 6px;
        text-transform: uppercase;
        font-weight: 500; }
      .social-preview--facebook .fb-preview-card .fb-preview-content .fb-preview-title {
        font-size: 16px;
        font-weight: 600;
        color: #1d2129;
        margin-bottom: 6px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .social-preview--facebook .fb-preview-card .fb-preview-content .fb-preview-description {
        font-size: 14px;
        color: #606770;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden; }
  .social-preview--twitter .twitter-preview-card {
    display: flex;
    max-width: 506px;
    border: 1px solid #cfd9de;
    border-radius: 16px;
    overflow: hidden;
    background: white; }
    @media (max-width: 768px) {
      .social-preview--twitter .twitter-preview-card {
        flex-direction: column; } }
    .social-preview--twitter .twitter-preview-card .twitter-preview-content {
      padding: 12px;
      flex: 1; }
      .social-preview--twitter .twitter-preview-card .twitter-preview-content .twitter-preview-title {
        font-size: 15px;
        font-weight: 700;
        color: #0f1419;
        margin-bottom: 2px;
        line-height: 1.3; }
      .social-preview--twitter .twitter-preview-card .twitter-preview-content .twitter-preview-description {
        font-size: 15px;
        color: #536471;
        margin-bottom: 2px;
        line-height: 1.3; }
      .social-preview--twitter .twitter-preview-card .twitter-preview-content .twitter-preview-url {
        font-size: 15px;
        color: #536471;
        text-transform: lowercase; }
    .social-preview--twitter .twitter-preview-card .twitter-preview-image {
      width: 125px;
      height: 125px;
      flex-shrink: 0; }
      @media (max-width: 768px) {
        .social-preview--twitter .twitter-preview-card .twitter-preview-image {
          width: 100%;
          height: 200px; } }
      .social-preview--twitter .twitter-preview-card .twitter-preview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .social-preview--linkedin .linkedin-preview-card {
    max-width: 552px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white; }
    .social-preview--linkedin .linkedin-preview-card .linkedin-preview-image {
      width: 100%;
      height: 288px; }
      .social-preview--linkedin .linkedin-preview-card .linkedin-preview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .social-preview--linkedin .linkedin-preview-card .linkedin-preview-content {
      padding: 16px; }
      .social-preview--linkedin .linkedin-preview-card .linkedin-preview-content .linkedin-preview-title {
        font-size: 16px;
        font-weight: 600;
        color: #000000;
        margin-bottom: 4px;
        line-height: 1.3; }
      .social-preview--linkedin .linkedin-preview-card .linkedin-preview-content .linkedin-preview-description {
        font-size: 14px;
        color: #666666;
        margin-bottom: 8px;
        line-height: 1.4; }
      .social-preview--linkedin .linkedin-preview-card .linkedin-preview-content .linkedin-preview-domain {
        font-size: 12px;
        color: #666666;
        text-transform: lowercase; }
  .social-preview--kakao .kakao-preview-card {
    max-width: 500px;
    border: 1px solid #f1f3f4;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
    @media (max-width: 768px) {
      .social-preview--kakao .kakao-preview-card {
        max-width: 100%; } }
    .social-preview--kakao .kakao-preview-card .kakao-preview-image {
      width: 100%;
      height: 200px; }
      .social-preview--kakao .kakao-preview-card .kakao-preview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .social-preview--kakao .kakao-preview-card .kakao-preview-content {
      padding: 16px; }
      .social-preview--kakao .kakao-preview-card .kakao-preview-content .kakao-preview-title {
        font-size: 16px;
        font-weight: 600;
        color: #2c2c2c;
        margin-bottom: 4px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .social-preview--kakao .kakao-preview-card .kakao-preview-content .kakao-preview-description {
        font-size: 14px;
        color: #767676;
        margin-bottom: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .social-preview--kakao .kakao-preview-card .kakao-preview-content .kakao-preview-domain {
        font-size: 12px;
        color: #999999;
        text-transform: lowercase;
        font-weight: 500; }
  .social-preview--threads .threads-preview-card {
    display: flex;
    max-width: 500px;
    border: 1px solid #dbdbdb;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
    @media (max-width: 768px) {
      .social-preview--threads .threads-preview-card {
        flex-direction: column;
        max-width: 100%; } }
    .social-preview--threads .threads-preview-card .threads-preview-content {
      padding: 16px;
      flex: 1; }
      .social-preview--threads .threads-preview-card .threads-preview-content .threads-preview-title {
        font-size: 15px;
        font-weight: 600;
        color: #262626;
        margin-bottom: 4px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .social-preview--threads .threads-preview-card .threads-preview-content .threads-preview-description {
        font-size: 14px;
        color: #737373;
        margin-bottom: 4px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .social-preview--threads .threads-preview-card .threads-preview-content .threads-preview-url {
        font-size: 13px;
        color: #8e8e8e;
        text-transform: lowercase; }
    .social-preview--threads .threads-preview-card .threads-preview-image {
      width: 120px;
      height: 120px;
      flex-shrink: 0; }
      @media (max-width: 768px) {
        .social-preview--threads .threads-preview-card .threads-preview-image {
          width: 100%;
          height: 200px; } }
      .social-preview--threads .threads-preview-card .threads-preview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }

.meta-info-grid {
  display: grid;
  gap: 16px; }
  .meta-info-grid .meta-item {
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-card); }
    .meta-info-grid .meta-item .meta-property {
      font-weight: 600;
      color: var(--color-primary);
      margin-bottom: 8px;
      font-size: 14px; }
    .meta-info-grid .meta-item .meta-content {
      color: var(--color-text);
      word-break: break-word;
      line-height: 1.5; }
  .meta-info-grid .no-data {
    color: var(--color-text-muted);
    font-style: italic;
    text-align: center;
    padding: 32px; }

.seo-analysis {
  display: grid;
  gap: 12px; }
  .seo-analysis .seo-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid; }
    .seo-analysis .seo-check--good {
      background: rgba(34, 197, 94, 0.1);
      border-left-color: #22c55e; }
    .seo-analysis .seo-check--warning {
      background: rgba(245, 158, 11, 0.1);
      border-left-color: #f59e0b; }
    .seo-analysis .seo-check--bad {
      background: rgba(239, 68, 68, 0.1);
      border-left-color: #ef4444; }
    .seo-analysis .seo-check .seo-check-icon {
      font-size: 20px;
      flex-shrink: 0; }
    .seo-analysis .seo-check .seo-check-content {
      flex: 1; }
      .seo-analysis .seo-check .seo-check-content .seo-check-name {
        font-weight: 600;
        margin-bottom: 4px;
        color: var(--color-text); }
      .seo-analysis .seo-check .seo-check-content .seo-check-message {
        color: var(--color-text-muted);
        font-size: 14px;
        line-height: 1.4; }

.external-tools {
  display: grid;
  gap: 16px; }
  @media (min-width: 768px) {
    .external-tools {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }
  .external-tools .tool-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-card);
    transition: all 0.2s ease; }
    .external-tools .tool-item:hover {
      border-color: var(--color-primary);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
    .external-tools .tool-item .tool-icon {
      font-size: 32px;
      flex-shrink: 0; }
    .external-tools .tool-item .tool-content {
      flex: 1; }
      .external-tools .tool-item .tool-content h4 {
        margin: 0 0 8px 0;
        color: var(--color-text);
        font-size: 16px;
        font-weight: 600; }
      .external-tools .tool-item .tool-content p {
        margin: 0 0 16px 0;
        color: var(--color-text-muted);
        font-size: 14px;
        line-height: 1.4; }

.toss-card--error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05); }
  .toss-card--error .error-content {
    color: var(--color-text); }
    .toss-card--error .error-content p {
      margin: 0;
      color: #dc2626; }
  .toss-card--error .error-details h3 {
    color: #dc2626;
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600; }
  .toss-card--error .error-details .error-text {
    color: #dc2626;
    margin-bottom: 24px;
    line-height: 1.6;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ef4444; }
  .toss-card--error .error-details .error-suggestion h4 {
    color: var(--color-text);
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600; }
  .toss-card--error .error-details .error-suggestion ul {
    margin: 0;
    padding-left: 20px;
    color: var(--color-text-muted); }
    .toss-card--error .error-details .error-suggestion ul li {
      margin-bottom: 8px;
      line-height: 1.5; }
      .toss-card--error .error-details .error-suggestion ul li code {
        background: var(--color-background);
        padding: 2px 6px;
        border-radius: 4px;
        font-family: 'Monaco', 'Menlo', monospace;
        font-size: 13px;
        color: var(--color-primary); }

.loading-container {
  text-align: center;
  padding: 48px 24px; }
  .loading-container h3 {
    margin: 24px 0 8px 0;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 600; }
  .loading-container p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.5; }

.toss-loading {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block; }
  .toss-loading--large {
    width: 40px;
    height: 40px;
    border-width: 4px;
    border-top-color: var(--color-primary);
    margin: 0 auto; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.seo-philosophy {
  background: linear-gradient(135deg, #f8fafb 0%, #e8f3ff 100%);
  padding: 80px 0;
  margin-top: 64px;
  border-top: 1px solid #e5e7eb; }
  .seo-philosophy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; }
  .seo-philosophy__header {
    text-align: center;
    margin-bottom: 56px; }
  .seo-philosophy__title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3; }
    @media (max-width: 768px) {
      .seo-philosophy__title {
        font-size: 24px; } }
  .seo-philosophy__subtitle {
    font-size: 18px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .seo-philosophy__subtitle {
        font-size: 16px; } }
  .seo-philosophy__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px; }
    @media (max-width: 768px) {
      .seo-philosophy__content {
        gap: 24px; } }
  .seo-philosophy__footer {
    text-align: center; }

.philosophy-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column; }
  .philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e5e7eb; }
  .philosophy-card__icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: block;
    text-align: center; }
    @media (max-width: 768px) {
      .philosophy-card__icon {
        font-size: 32px;
        margin-bottom: 16px; } }
  .philosophy-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.4; }
    @media (max-width: 768px) {
      .philosophy-card__title {
        font-size: 18px; } }
  .philosophy-card__text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    text-align: left;
    flex-grow: 1; }
    @media (max-width: 768px) {
      .philosophy-card__text {
        font-size: 15px; } }

.philosophy-quote {
  background: linear-gradient(135deg, #3182f6 0%, #1d4ed8 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  margin: 0;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto; }
  .philosophy-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="1.2" fill="rgba(255,255,255,0.05)"/></svg>');
    pointer-events: none; }
  .philosophy-quote__text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    text-align: center; }
    .philosophy-quote__text::before {
      content: '"';
      font-size: 48px;
      color: rgba(255, 255, 255, 0.3);
      position: absolute;
      left: -16px;
      top: -8px;
      font-family: serif; }
    .philosophy-quote__text::after {
      content: '"';
      font-size: 48px;
      color: rgba(255, 255, 255, 0.3);
      position: absolute;
      right: -16px;
      bottom: -16px;
      font-family: serif; }
    @media (max-width: 768px) {
      .philosophy-quote__text {
        font-size: 20px; }
        .philosophy-quote__text::before, .philosophy-quote__text::after {
          font-size: 36px; } }
  .philosophy-quote__footer {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 1; }
    .philosophy-quote__footer::before {
      content: '—';
      margin-right: 8px; }
    @media (max-width: 768px) {
      .philosophy-quote__footer {
        font-size: 14px; } }
  @media (max-width: 768px) {
    .philosophy-quote {
      padding: 32px 24px;
      border-radius: 16px; } }

@media (max-width: 640px) {
  .seo-philosophy {
    padding: 64px 0; }
    .seo-philosophy__container {
      padding: 0 16px; }
    .seo-philosophy__content {
      grid-template-columns: 1fr;
      gap: 20px; }
    .seo-philosophy__header {
      margin-bottom: 40px; }
    .seo-philosophy__footer {
      margin-top: 40px; }

  .philosophy-card {
    padding: 24px;
    border-radius: 12px; } }
@media (prefers-color-scheme: dark) {
  .seo-philosophy {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-top-color: #374151; }
    .seo-philosophy__title {
      color: #f9fafb; }
    .seo-philosophy__subtitle {
      color: #d1d5db; }

  .philosophy-card {
    background: #374151;
    border-color: #4b5563; }
    .philosophy-card__title {
      color: #f9fafb; }
    .philosophy-card__text {
      color: #d1d5db; }
    .philosophy-card:hover {
      background: #4b5563;
      border-color: #6b7280; } }
/* 도메인 검색 페이지 스타일 */
:root {
  --color-primary: #3182f6;
  --color-primary-dark: #1c6dd0;
  --color-secondary: #f2f4f6;
  --color-dark: #191f28;
  --color-light: #8b95a1;
  --color-text: #191f28;
  --color-text-muted: #8b95a1;
  --color-white: #ffffff;
  --color-background: #f8f9fa;
  --color-border: #e5e8eb;
  --color-card: #ffffff;
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #dc3545; }

.domain-search__form {
  margin-bottom: 32px; }

.domain-input-wrapper {
  position: relative;
  display: flex;
  align-items: center; }
  .domain-input-wrapper .domain-input {
    flex: 1;
    padding-right: 48px;
    min-width: 0; }
  .domain-input-wrapper .domain-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: #3182f6;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease; }
    .domain-input-wrapper .domain-search-btn:hover {
      background: #1c6dd0;
      transform: translateY(-50%) scale(1.05); }
    .domain-input-wrapper .domain-search-btn:active {
      transform: translateY(-50%) scale(0.95); }
    .domain-input-wrapper .domain-search-btn .search-icon {
      font-size: 14px;
      filter: grayscale(1) brightness(10); }

.domain-extensions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; }
  @media (max-width: 768px) {
    .domain-extensions {
      grid-template-columns: 1fr; } }

.domain-extension-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e5e8eb;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease; }
  .domain-extension-item:hover {
    border-color: #3182f6;
    background: rgba(49, 130, 246, 0.05); }
  .domain-extension-item input[type="checkbox"] {
    display: none; }
  .domain-extension-item .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e8eb;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease; }
    .domain-extension-item .checkmark::after {
      content: '✓';
      color: #ffffff;
      font-size: 12px;
      font-weight: bold;
      opacity: 0;
      transform: scale(0);
      transition: all 0.2s ease; }
  .domain-extension-item input[type="checkbox"]:checked + .checkmark {
    background: #3182f6;
    border-color: #3182f6; }
    .domain-extension-item input[type="checkbox"]:checked + .checkmark::after {
      opacity: 1;
      transform: scale(1); }
  .domain-extension-item input[type="checkbox"]:checked ~ .extension-text {
    color: #3182f6;
    font-weight: 600; }
  .domain-extension-item .extension-text {
    font-size: 16px;
    font-weight: 500;
    color: #191f28;
    transition: all 0.2s ease;
    min-width: 40px; }
  .domain-extension-item .extension-desc {
    font-size: 13px;
    color: #4e5968;
    flex: 1; }
  @media (max-width: 768px) {
    .domain-extension-item {
      padding: 16px; }
      .domain-extension-item .extension-text {
        font-size: 15px; }
      .domain-extension-item .extension-desc {
        font-size: 12px; } }

.domain-results__title {
  color: #191f28;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px; }
  @media (max-width: 768px) {
    .domain-results__title {
      font-size: 18px;
      margin-bottom: 24px; } }
.domain-results__list {
  display: flex;
  flex-direction: column;
  gap: 24px; }

.domain-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border: 1px solid #e5e8eb;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.2s ease; }
  .domain-result-item:hover {
    border-color: #3182f6;
    box-shadow: 0 2px 8px rgba(49, 130, 246, 0.15); }
  .domain-result-item__main {
    flex: 1;
    min-width: 0; }
  .domain-result-item__status {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px; }
    .domain-result-item__status .status-icon {
      font-size: 18px;
      flex-shrink: 0; }
    .domain-result-item__status .domain-name {
      font-size: 18px;
      font-weight: 600;
      color: #191f28;
      word-break: break-all; }
    .domain-result-item__status.available .domain-name {
      color: #28a745; }
    .domain-result-item__status.taken .domain-name {
      color: #4e5968; }
  .domain-result-item__info {
    display: flex;
    flex-direction: column;
    gap: 4px; }
    .domain-result-item__info .status-text {
      font-size: 14px;
      font-weight: 500;
      color: #4e5968; }
    .domain-result-item__info .expiry-date {
      font-size: 13px;
      color: #8b95a1; }
  .domain-result-item__actions {
    margin-left: 24px;
    flex-shrink: 0; }
  @media (max-width: 768px) {
    .domain-result-item {
      flex-direction: column;
      align-items: stretch;
      gap: 24px; }
      .domain-result-item__actions {
        margin-left: 0; }
      .domain-result-item__status .domain-name {
        font-size: 16px; } }

.domain-guide__title {
  color: #191f28;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px; }
  @media (max-width: 768px) {
    .domain-guide__title {
      font-size: 18px;
      margin-bottom: 24px; } }
.domain-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px; }
  @media (max-width: 768px) {
    .domain-guide__grid {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 32px; } }
.domain-guide__tips {
  padding: 32px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3182f6; }
  .domain-guide__tips h4 {
    color: #191f28;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px; }
  .domain-guide__tips ul {
    margin: 0;
    padding-left: 32px; }
    .domain-guide__tips ul li {
      color: #4e5968;
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 8px; }
      .domain-guide__tips ul li:last-child {
        margin-bottom: 0; }
  @media (max-width: 768px) {
    .domain-guide__tips {
      padding: 24px; }
      .domain-guide__tips h4 {
        font-size: 15px; }
      .domain-guide__tips ul {
        padding-left: 24px; }
        .domain-guide__tips ul li {
          font-size: 13px; } }

.guide-item {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e8eb;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease; }
  .guide-item:hover {
    border-color: #3182f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 246, 0.15); }
  .guide-item__icon {
    font-size: 32px;
    margin-bottom: 24px; }
    @media (max-width: 768px) {
      .guide-item__icon {
        font-size: 28px;
        margin-bottom: 16px; } }
  .guide-item__title {
    color: #191f28;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px; }
    @media (max-width: 768px) {
      .guide-item__title {
        font-size: 16px; } }
  .guide-item__desc {
    color: #4e5968;
    font-size: 14px;
    line-height: 1.6;
    margin: 0; }
    @media (max-width: 768px) {
      .guide-item__desc {
        font-size: 13px; } }
  @media (max-width: 768px) {
    .guide-item {
      padding: 24px; } }

.hidden {
  display: none !important; }

.show {
  display: block !important; }

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

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

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

.mt-0 {
  margin-top: 0; }

.mt-1 {
  margin-top: 5px; }

.mt-2 {
  margin-top: 10px; }

.mt-3 {
  margin-top: 15px; }

.mt-4 {
  margin-top: 20px; }

.mt-5 {
  margin-top: 30px; }

.mb-0 {
  margin-bottom: 0; }

.mb-1 {
  margin-bottom: 5px; }

.mb-2 {
  margin-bottom: 10px; }

.mb-3 {
  margin-bottom: 15px; }

.mb-4 {
  margin-bottom: 20px; }

.mb-5 {
  margin-bottom: 30px; }

.ml-0 {
  margin-left: 0; }

.ml-1 {
  margin-left: 5px; }

.ml-2 {
  margin-left: 10px; }

.ml-3 {
  margin-left: 15px; }

.ml-4 {
  margin-left: 20px; }

.ml-5 {
  margin-left: 30px; }

.mr-0 {
  margin-right: 0; }

.mr-1 {
  margin-right: 5px; }

.mr-2 {
  margin-right: 10px; }

.mr-3 {
  margin-right: 15px; }

.mr-4 {
  margin-right: 20px; }

.mr-5 {
  margin-right: 30px; }

.pt-0 {
  padding-top: 0; }

.pt-1 {
  padding-top: 5px; }

.pt-2 {
  padding-top: 10px; }

.pt-3 {
  padding-top: 15px; }

.pt-4 {
  padding-top: 20px; }

.pt-5 {
  padding-top: 30px; }

.pb-0 {
  padding-bottom: 0; }

.pb-1 {
  padding-bottom: 5px; }

.pb-2 {
  padding-bottom: 10px; }

.pb-3 {
  padding-bottom: 15px; }

.pb-4 {
  padding-bottom: 20px; }

.pb-5 {
  padding-bottom: 30px; }

.pl-0 {
  padding-left: 0; }

.pl-1 {
  padding-left: 5px; }

.pl-2 {
  padding-left: 10px; }

.pl-3 {
  padding-left: 15px; }

.pl-4 {
  padding-left: 20px; }

.pl-5 {
  padding-left: 30px; }

.pr-0 {
  padding-right: 0; }

.pr-1 {
  padding-right: 5px; }

.pr-2 {
  padding-right: 10px; }

.pr-3 {
  padding-right: 15px; }

.pr-4 {
  padding-right: 20px; }

.pr-5 {
  padding-right: 30px; }

.d-flex {
  display: flex; }

.d-block {
  display: block; }

.d-inline {
  display: inline; }

.d-inline-block {
  display: inline-block; }

.d-none {
  display: none; }

.flex-column {
  flex-direction: column; }

.flex-row {
  flex-direction: row; }

.flex-wrap {
  flex-wrap: wrap; }

.flex-nowrap {
  flex-wrap: nowrap; }

.justify-start {
  justify-content: flex-start; }

.justify-center {
  justify-content: center; }

.justify-end {
  justify-content: flex-end; }

.justify-between {
  justify-content: space-between; }

.justify-around {
  justify-content: space-around; }

.align-start {
  align-items: flex-start; }

.align-center {
  align-items: center; }

.align-end {
  align-items: flex-end; }

.align-stretch {
  align-items: stretch; }

.flex-1 {
  flex: 1; }

.flex-auto {
  flex: auto; }

.flex-none {
  flex: none; }

.text-primary {
  color: #3182f6; }

.text-dark {
  color: #191f28; }

.text-light {
  color: #8b95a1; }

.text-white {
  color: #ffffff; }

.text-muted {
  color: #4e5968; }

.bg-primary {
  background-color: #3182f6; }

.bg-secondary {
  background-color: #f2f4f6; }

.bg-white {
  background-color: #ffffff; }

.bg-gray {
  background-color: #f8f9fa; }

@media (max-width: 767px) {
  .mobile-hide {
    display: none !important; }

  .mobile-show {
    display: block !important; } }
@media (max-width: 1023px) {
  .tablet-hide {
    display: none !important; }

  .tablet-show {
    display: block !important; } }
@media (min-width: 1024px) {
  .desktop-hide {
    display: none !important; }

  .desktop-show {
    display: block !important; } }

/*# sourceMappingURL=style.css.map */
