* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-body: #0a0e17;
    --bg-card: #12171f;
    --bg-card-hover: #1a1f2e;
    --primary: #3b82f6;
    --accent: #8b5cf6;
    --secondary: #ef4444;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --success: #10b981;
    --warning: #f59e0b;
    --price-green: #10b981;
    --badge-yellow: #fbbf24;
    --background: 210 10% 7%;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    background: hsl(var(--background));
}

header {
    position: sticky;
    top: 0;
    background: rgba(18, 23, 31, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    cursor: pointer;
    transition: transform 0.3s ease;
	text-decoration: none;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('/design/style/img/img.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 14, 23, 0.85), rgba(10, 14, 23, 0.9));
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  height: 100vh;
  min-height: 48em;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i { 
    color: var(--primary); 
    font-size: 1.8rem;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    cursor: pointer;
}
.nav-links a:hover { color: var(--primary); }

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.page-view { display: none; }
.page-view.active { display: block; animation: fadePage 0.3s ease; }
@keyframes fadePage { from { opacity: 0; } to { opacity: 1; } }

.hero-main {
    max-width: 1240px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-centered {
    max-width: 1240px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-content h1, .hero-centered h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-content h1 span, .hero-centered h1 span { 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p, .hero-centered p { 
    font-size: 1.2rem; 
    color: var(--text-muted); 
    margin-bottom: 2rem; 
}

.hero-centered p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.monitor-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-left: 25px;
    margin-right: 25px;
}

.monitor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.ip-box {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ip-box code {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: bold;
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.copy-btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.shop-section {
    max-width: 1240px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.mode-selector {
    margin-bottom: 3rem;
    transition: all 0.4s ease;
}

.mode-selector.hidden { display: none; }

.mode-selector h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.back-to-modes {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}
.back-to-modes {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.back-to-modes.visible { display: inline-flex; }
.back-to-modes:hover { 
    transform: translateX(-5px); 
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.mode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.mode-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.mode-card:hover::before {
    opacity: 1;
}

.mode-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.mode-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.mode-icon { 
    font-size: 3rem; 
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
    position: relative;
    z-index: 1;
}

.mode-name { 
    font-size: 1.3rem; 
    font-weight: 800; 
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.mode-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.shop-content { 
    display: none; 
    animation: fadeIn 0.4s ease; 
}
.shop-content.visible { display: block; }
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.shop-tabs { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 2rem; 
    flex-wrap: wrap; 
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.tab-btn.inactive {
    background: var(--bg-card);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.08);
}
.tab-btn.inactive:hover { 
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}
.shop-grid.hidden { 
    display: none; 
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}


.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.card-price {
    position: absolute;
    top: 20px;
    left: 20px;
    font-weight: 900;
    color: var(--price-green);
    font-size: 1.3rem;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--badge-yellow), #f59e0b);
    color: #1a1f2e;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 8px 16px;
    border-bottom-left-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.card-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 45px auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    position: relative;
    z-index: 1;
  background: no-repeat center;
    background-image: none;
    background-size: auto;
    background-origin: padding-box;
  background-size: contain;
  background-origin: content-box;
}

.card-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.card-image-wrapper i {
    font-size: 5rem;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
}

.product-card:hover .card-image-wrapper i {
    transform: scale(1.1) rotate(-5deg);
}

.card-title {
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
    letter-spacing: -0.01em;
}

.rules-section { 
    max-width: 1240px; 
    margin: 4rem auto; 
    padding: 0 1.5rem; 
}

.rules-intro {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
	margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rules-intro h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rules-intro h2 i {
    color: var(--warning);
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.5));
}

.rules-intro p {
    color: var(--text-muted);
    line-height: 1.8;
}

.accordion { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.accordion-item {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-item.active .accordion-header::before {
    opacity: 1;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.accordion-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.accordion-toggle {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 9500px;
    padding: 0 2rem 1.5rem 2rem;
}

.accordion-body {
    padding-left: 55px;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
}

.accordion-body li {
    padding: 0.7rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.accordion-body li::before {
    content: '▸';
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.accordion-body .warning-text {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--secondary);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    color: var(--text-muted);
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.accordion-body .warning-text i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.accordion-body .success-text {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    color: var(--text-muted);
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.accordion-body .success-text i {
    color: var(--success);
    margin-top: 3px;
    flex-shrink: 0;
}

.recent-section { 
    max-width: 1240px; 
    margin: 0 auto 5rem; 
    padding: 0 1.5rem; 
}

.section-header { 
    font-size: 2rem; 
    font-weight: 800; 
    color: var(--text-main); 
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.recent-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* плавный свайп на iOS */
    padding: 10px 0;
    scrollbar-width: none; /* скрыть scrollbar в Firefox */
}

/* Скрыть scrollbar в WebKit (Chrome, Safari) */
.recent-grid::-webkit-scrollbar {
    display: none;
}

.recent-card {
	flex: 0 0 auto; /* не растягиваются и не сжимаются */
    min-width: 250px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.recent-card:hover { 
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.2);
}

.recent-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
}

.recent-item-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.recent-user-name {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 500;
}

footer {
    background: var(--bg-card);
    color: white;
    padding: 1rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.social-links { margin-top: 1rem; }
.social-links a { 
    color: var(--text-muted); 
    margin: 0 10px; 
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.modal { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.8); 
    z-index: 2000; 
    align-items: center; 
    justify-content: center; 
    backdrop-filter: blur(10px);
    padding: 1rem;
    overflow-y: auto;
}
.modal.active { display: flex; }
.modal-content { 
    background: var(--bg-card);
    width: 100%; 
    max-width: 550px; 
    max-height: 90vh;
    padding: 2.5rem; 
    border-radius: 24px; 
    position: relative; 
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    margin: auto;
}

@keyframes slideUp { 
    from {transform: translateY(30px) scale(0.95); opacity: 0;} 
    to {transform: translateY(0) scale(1); opacity: 1;} 
}

.close-modal { 
    position: absolute; 
    top: 1.5rem; 
    right: 1.5rem; 
    background: rgba(255, 255, 255, 0.05);
    border: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    transform: rotate(90deg);
}

.modal-header { text-align: center; margin-bottom: 2rem; }
.modal-header h2 { font-size: 2rem; font-weight: 800; color: var(--text-main); margin-bottom: 0.5rem; }
.modal-header p { color: var(--text-muted); font-size: 0.95rem; }

.contact-section { margin-bottom: 2rem; }
.contact-section:last-child { margin-bottom: 0; }
.contact-section h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 1rem 1.2rem; 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 12px; 
    text-decoration: none; 
    color: var(--text-main); 
    transition: all 0.3s ease; 
}
.contact-link:hover { 
    background: rgba(59, 130, 246, 0.1); 
    border-color: var(--primary); 
    transform: translateX(5px); 
}
.contact-link i { font-size: 1.5rem; width: 30px; text-align: center; }
.contact-link .contact-info { flex: 1; }
.contact-link .contact-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-link .contact-value { font-weight: 600; color: var(--text-main); }
.divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin: 1.5rem 0; }

.guide-steps { display: flex; flex-direction: column; gap: 20px; }
.guide-step { 
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
    padding: 1.2rem; 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 12px; 
    transition: all 0.3s ease; 
}
.guide-step:hover { 
    background: rgba(59, 130, 246, 0.05); 
    border-color: rgba(59, 130, 246, 0.3); 
    transform: translateX(5px); 
}
.step-number { 
    width: 40px; 
    height: 40px; 
    min-width: 40px; 
    background: linear-gradient(135deg, var(--primary), var(--accent)); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 800; 
    font-size: 1.2rem; 
    color: white; 
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); 
}
.step-content { flex: 1; }
.step-title { font-weight: 700; font-size: 1.05rem; color: var(--text-main); margin-bottom: 4px; }
.step-description { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.guide-footer { 
    margin-top: 2rem; 
    padding: 1.5rem; 
    background: rgba(16, 185, 129, 0.1); 
    border-left: 4px solid var(--success); 
    border-radius: 12px; 
    text-align: center; 
}
.guide-footer i { font-size: 2rem; color: var(--success); margin-bottom: 10px; }
.guide-footer p { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 5px; }
.guide-footer span { font-size: 0.9rem; color: var(--text-muted); }
.guide-action-btn { 
    width: 100%; 
    margin-top: 1.5rem; 
    padding: 1.2rem; 
    background: linear-gradient(135deg, var(--primary), var(--accent)); 
    color: white; 
    border: none; 
    border-radius: 12px; 
    font-weight: 800; 
    font-size: 1.1rem; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
}
.guide-action-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6); 
}

.form-control { 
    width: 100%; 
    padding: 1rem 1.2rem; 
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px; 
    margin-bottom: 1rem; 
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}
.form-control:focus { 
    outline: none; 
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.btn-modal-pay { 
    width: 100%; 
    padding: 1.2rem; 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white; 
    border: none; 
    border-radius: 12px; 
    font-weight: 800; 
    font-size: 1.1rem; 
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}
.btn-modal-pay:hover { 
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

@media (max-width: 968px) {
    .hero-main { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 2rem;
    }
    .hero-content h1, .hero-centered h1 { font-size: 2.5rem; }
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: var(--bg-card);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column; 
        padding: 1rem 0; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        gap: 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { 
        display: block; 
        padding: 1rem 1.5rem; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    }
    .mobile-menu-btn { display: flex; }
    .shop-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
    .recent-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .ip-box { flex-direction: column; text-align: center; }
    .copy-btn { width: 100%; }
    .accordion-header { padding: 1.2rem 1.5rem; }
    .accordion-body { padding-left: 0; }
    .rules-intro { padding: 1.5rem; }
}

@media (max-width: 640px) {
    .hero-content h1, .hero-centered h1 { font-size: 2rem; }
    .shop-grid { grid-template-columns: 1fr; }
    .mode-grid { grid-template-columns: 1fr; }
}
@media (max-width: 415px) {
    .tab-btn { 
          min-width: 100%;
		  justify-content: center;
    }
}
.payment-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}
.order-summary-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}
.pay-method-card {
  background: var(--bg-card);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pay-method-name {
  font-weight: 700;
}
.summary-item label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.summary-item span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}
.summary-total span {
  color: var(--price-green);
  font-size: 1.5rem;
}