/* ===== CSS Variables ===== */
/* Seed: 1129829714 | Prefix: rnd | Color: bold_blue | Layout: hero_center_glass */
/* Variants: btn=outline | space=normal | header=badge | cardIcon=top | footer=minimal */
:root {
    --primary: #4b4ed2;
    --primary-light: #a3a4e0;
    --primary-dark: #202297;
    --secondary: #212131;
    --accent: #b98cde;
    --background: #111117;
    --text: #ffffff;
    --card: #212131;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    --radius: 0;
    --btn-radius: 30px;
    --spacing-mult: 1.2;
    --heading-weight: 400;
    --section-padding: 80px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

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

/* ===== Container ===== */
.rnd-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* ===== Navigation ===== */
.rnd-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.rnd-navbar.rnd-scrolled {
    background: var(--secondary);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.rnd-navbar .rnd-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rnd-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rnd-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    font-weight: 700;
}

.rnd-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.rnd-nav-menu a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.rnd-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.rnd-nav-menu a:hover::after,
.rnd-nav-menu a.rnd-active::after {
    width: 100%;
}

.rnd-nav-buttons {
    display: flex;
    gap: 10px;
}

.rnd-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Buttons ===== */
.rnd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: calc(12px * var(--spacing-mult)) calc(28px * var(--spacing-mult));
    font-size: 1rem;
    font-weight: var(--heading-weight);
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.rnd-btn-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.rnd-btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: #fff;
    color: #fff;
}

.rnd-btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text-muted);
}

.rnd-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.rnd-btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.rnd-btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* ===== Hero Section ===== */
.rnd-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--background);
}

/* Hero Background Effects */
.rnd-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(75, 78, 210, 0.1) 0%, transparent 50%);
    backdrop-filter: blur(2px);
}


/* Hero Centered Layout */
.rnd-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    padding: 60px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.rnd-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(75, 78, 210, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.rnd-hero h1 {
    margin-bottom: 20px;
}

.rnd-hero h1 span {
    color: var(--primary);
}

.rnd-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.rnd-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.rnd-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
}

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

.rnd-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.rnd-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Cards ===== */
.rnd-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.rnd-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

/* Card icon - always use safe default style */
.rnd-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.rnd-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.rnd-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Sections ===== */
.rnd-section {
    padding: var(--section-padding) 0;
}

.rnd-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}


.rnd-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(75, 78, 210, 0.3);
}

.section-title span {
    color: var(--primary);
}

/* ===== Grid Layouts ===== */
.rnd-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.rnd-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rnd-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== Promotion Cards ===== */
.rnd-promo-card {
    position: relative;
    overflow: hidden;
}

.rnd-promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: var(--accent);
    color: var(--background);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.rnd-promo-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.rnd-promo-gold .rnd-promo-icon { color: #d4af37; }
.rnd-promo-blue .rnd-promo-icon { color: #2563eb; }
.rnd-promo-green .rnd-promo-icon { color: #059669; }
.rnd-promo-purple .rnd-promo-icon { color: #7c3aed; }
.rnd-promo-orange .rnd-promo-icon { color: #ea580c; }
.rnd-promo-teal .rnd-promo-icon { color: #0d9488; }
.rnd-promo-pink .rnd-promo-icon { color: #db2777; }
.rnd-promo-amber .rnd-promo-icon { color: #d97706; }
.rnd-promo-rose .rnd-promo-icon { color: #e11d48; }
.rnd-promo-cyan .rnd-promo-icon { color: #0891b2; }
.rnd-promo-indigo .rnd-promo-icon { color: #4f46e5; }

.rnd-promo-bonus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.rnd-promo-details {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
}

.rnd-promo-detail {
    display: flex;
    flex-direction: column;
}

.rnd-promo-detail-label {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ===== Forms ===== */
.rnd-form-group {
    margin-bottom: 20px;
}

.rnd-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.rnd-form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--secondary);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}

.rnd-form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(75, 78, 210, 0.2);
}

.rnd-form-input::placeholder {
    color: var(--text-muted);
}

.rnd-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.rnd-form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

/* ===== FAQ Accordion ===== */
.rnd-faq-item {
    background: var(--card);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.rnd-faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.rnd-faq-question:hover {
    color: var(--primary);
}

.rnd-faq-question i {
    transition: var(--transition);
}

.rnd-faq-item.rnd-active .rnd-faq-question i {
    transform: rotate(180deg);
}

.rnd-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rnd-faq-item.rnd-active .rnd-faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* ===== Footer ===== */
.rnd-footer {
    background: var(--secondary);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.rnd-footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.rnd-footer-brand {
    max-width: 400px;
}

.rnd-footer-brand p {
    margin-top: 20px;
    font-size: 0.95rem;
}

.rnd-footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text);
}

.rnd-footer-links {
    list-style: none;
}

.rnd-footer-links li {
    margin-bottom: 12px;
}

.rnd-footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.rnd-footer-links a:hover {
    color: var(--primary);
}

.rnd-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.rnd-social-link {
    width: 44px;
    height: 44px;
    background: var(--card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.1rem;
    transition: var(--transition);
}

.rnd-social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Keywords */
.rnd-footer-keywords {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
}

.rnd-footer-keywords .rnd-footer-title {
    margin-bottom: 15px;
}

.rnd-footer-keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rnd-footer-keyword-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--card);
    color: var(--text-muted);
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.rnd-footer-keyword-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.rnd-footer-keyword-more {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.rnd-footer-keyword-more:hover {
    background: var(--primary-dark);
}

/* ===== Page Keywords Section ===== */
.rnd-page-keywords-section {
    background: var(--secondary);
}

.rnd-page-keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.rnd-page-keyword-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--card);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.rnd-page-keyword-item:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateX(5px);
}

.rnd-page-keyword-item i {
    color: var(--primary);
    font-size: 0.8rem;
    transition: var(--transition);
}

.rnd-page-keyword-item:hover i {
    color: #fff;
}

.rnd-page-keyword-home {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-color: var(--primary);
}

.rnd-page-keyword-home i {
    color: #fff;
}

.rnd-page-keyword-home:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.rnd-page-keyword-item span {
    flex: 1;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .rnd-page-keywords-grid {
        grid-template-columns: 1fr;
    }
    
    .rnd-page-keyword-item {
        padding: 12px 15px;
    }
}

.rnd-partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.rnd-partner-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px 20px;
    transition: var(--transition);
}

.rnd-partner-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.rnd-partner-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 8px;
}

.rnd-partner-link:hover {
    text-decoration: underline;
}

.rnd-partner-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .rnd-partner-grid {
        grid-template-columns: 1fr;
    }
}

.rnd-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Testimonials ===== */
.rnd-testimonial-card {
    padding: 30px;
}

.rnd-testimonial-rating {
    color: #fbbf24;
    margin-bottom: 15px;
}

.rnd-testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.rnd-testimonial-author {
    font-weight: 600;
    color: var(--text);
}

/* ===== Feature List ===== */
.rnd-feature-list {
    list-style: none;
    padding: 0;
}

.rnd-feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
}

.rnd-feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ===== Breadcrumb ===== */
.rnd-breadcrumb {
    padding: 15px 0;
    font-size: 0.875rem;
}

.rnd-breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
}

.rnd-breadcrumb-list li::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-muted);
}

.rnd-breadcrumb-list li:last-child::after {
    display: none;
}

.rnd-breadcrumb-list a {
    color: var(--text-muted);
}

.rnd-breadcrumb-list li:last-child {
    color: var(--primary);
}

/* ===== Loading Spinner ===== */
.rnd-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Page Header ===== */
.rnd-page-header {
    padding: 140px 0 60px;
    background: var(--secondary);
    text-align: center;
}

.rnd-page-header h1 {
    margin-bottom: 15px;
}

/* ===== Contact Info ===== */
.rnd-contact-card {
    text-align: center;
    padding: 40px;
}

.rnd-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

/* ===== Auth Forms ===== */
.rnd-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 20px 40px;
    width: 100%;
}

.rnd-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    align-items: start;
}

.rnd-auth-register {
    padding-top: 100px;
}

@media (max-width: 768px) {
    .rnd-auth-grid {
        grid-template-columns: 1fr;
    }
    
    .rnd-auth-grid > div:last-child {
        display: none;
    }
}

.rnd-auth-card {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    margin: 0 auto;
}

.rnd-auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.rnd-auth-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.rnd-auth-subtitle {
    color: var(--text-muted);
}

.rnd-auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.rnd-text-primary { color: var(--primary); }
.rnd-text-muted { color: var(--text-muted); }
.rnd-mt-20 { margin-top: 20px; }
.rnd-mb-20 { margin-bottom: 20px; }
.rnd-hidden { display: none; }

/* ===== Text Emphasis Styles ===== */
/* Bold text - stands out naturally */
.rnd-content-area strong,
.rnd-content-area b {
    color: var(--text);
    font-weight: 600;
}

/* Italic text - subtle emphasis */
.rnd-content-area em,
.rnd-content-area i:not([class]) {
    font-style: italic;
    color: var(--text);
}

/* Highlight style - primary color accent */
.rnd-text-highlight {
    color: var(--primary);
    font-weight: 500;
}

/* Accent emphasis - bolder primary */
.rnd-text-accent {
    color: var(--primary-light);
    font-weight: 600;
}

/* Underline style - subtle underline */
.rnd-text-underline {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Mark/highlight - background highlight */
.rnd-content-area mark {
    background: rgba(75, 78, 210, 0.15);
    color: var(--text);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Combined emphasis - bold + italic */
.rnd-content-area strong em,
.rnd-content-area em strong {
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
}

/* Hero section emphasis */
.rnd-hero strong,
.rnd-hero b {
    color: var(--primary);
}

.rnd-hero em,
.rnd-hero i:not([class]) {
    font-style: italic;
    color: var(--text);
}

/* Card emphasis */
.rnd-card strong,
.rnd-card b {
    color: var(--primary);
    font-weight: 600;
}

/* Paragraph with emphasis styling */
.rnd-content-area p {
    line-height: 1.8;
}

/* Article content styling */
.rnd-content-article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.rnd-content-article:last-child {
    border-bottom: none;
}

.rnd-content-article h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.rnd-content-article p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Natural link styling in content */
.rnd-content-area a:not(.btn) strong,
.rnd-content-area a:not(.btn) em {
    color: inherit;
}

/* Table emphasis */
.rnd-content-area table strong {
    color: var(--primary);
}

/* List emphasis */
.rnd-content-area ul li strong,
.rnd-content-area ol li strong {
    color: var(--text);
}

/* Blockquote emphasis */
.rnd-content-area blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 25px 0;
    background: var(--card);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-muted);
}

.rnd-content-area blockquote strong {
    color: var(--text);
    font-style: normal;
}

.rnd-blockquote-footer {
    display: block;
    margin-top: 10px;
    font-size: 0.875rem;
    color: var(--primary);
    font-style: normal;
}

/* ===== Internal Links ===== */
.rnd-content-area a:not(.btn) {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
    transition: var(--transition);
}

.rnd-content-area a:not(.btn):hover {
    color: var(--primary-light);
    border-bottom-style: solid;
}

/* ===== Related Keywords ===== */
.rnd-related-keywords {
    margin-top: 40px;
    padding: 30px;
    background: var(--card);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.rnd-related-keywords h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text);
}

.rnd-keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rnd-keyword-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--text);
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.rnd-keyword-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===== Inline Links Box ===== */
.rnd-inline-links-box {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--background) 100%);
    border-radius: var(--radius);
    padding: 25px;
    margin: 30px 0;
    border: 1px solid var(--border);
}

.rnd-inline-links-box h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--primary);
}

.rnd-inline-links-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.rnd-inline-links-box li a {
    display: block;
    padding: 10px 15px;
    background: var(--card);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.rnd-inline-links-box li a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(5px);
}

.rnd-inline-links-box li a::before {
    content: "→ ";
    color: var(--primary);
}

.rnd-inline-links-box li a:hover::before {
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .rnd-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rnd-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rnd-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .rnd-nav-menu.rnd-active {
        display: flex;
    }
    
    .rnd-nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }
    
    .rnd-nav-buttons {
        display: none;
    }
    
    .rnd-mobile-toggle {
        display: block;
    }
    
    .rnd-hero .rnd-container {
        grid-template-columns: 1fr;
    }
    
    .rnd-grid-2, .rnd-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .rnd-hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .rnd-hero-buttons {
        flex-direction: column;
    }
    
    .rnd-btn-lg {
        width: 100%;
    }
    
    .rnd-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .rnd-footer-brand {
        max-width: 100%;
    }
    
    .rnd-social-links {
        justify-content: center;
    }
    
    .rnd-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===== Sitemap Page ===== */
.rnd-sitemap-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-decoration: none;
    color: var(--text);
}

.rnd-sitemap-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.rnd-sitemap-alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: sticky;
    top: 80px;
    z-index: 10;
}

.rnd-alphabet-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--secondary);
    color: var(--text);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.rnd-alphabet-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.rnd-sitemap-group {
    margin-bottom: 50px;
    scroll-margin-top: 150px;
}

.rnd-sitemap-group-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.rnd-sitemap-group-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark, var(--primary)));
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.rnd-sitemap-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.rnd-sitemap-link {
    display: block;
    padding: 12px 16px;
    background: var(--card);
    color: var(--text);
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rnd-sitemap-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .rnd-sitemap-alphabet-nav {
        gap: 6px;
        padding: 15px;
        position: static;
    }
    
    .rnd-alphabet-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 0.9rem;
    }
    
    .rnd-sitemap-links {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 8px;
    }
    
    .rnd-sitemap-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

