@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --ryrst-c-dark: #0B1120;
    --ryrst-c-dark-sec: #1E293B;
    --ryrst-c-gold: #D4AF37;
    --ryrst-c-gold-light: #FCE69C;
    --ryrst-c-bg: #F8FAFC;
    --ryrst-c-surface: #FFFFFF;
    --ryrst-c-text: #334155;
    --ryrst-c-text-light: #94A3B8;
    
    --ryrst-font-heading: 'Playfair Display', serif;
    --ryrst-font-body: 'Lato', sans-serif;
    
    --ryrst-radius: 16px;
    --ryrst-radius-sm: 8px;
    --ryrst-shadow: 0 12px 40px rgba(11, 17, 32, 0.08);
    --ryrst-shadow-hover: 0 20px 50px rgba(212, 175, 55, 0.15);
    --ryrst-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body.ryrst-page-body {
    font-family: var(--ryrst-font-body);
    color: var(--ryrst-c-text);
    background-color: var(--ryrst-c-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ryrst-font-heading);
    color: var(--ryrst-c-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--ryrst-c-gold);
    text-decoration: none;
    transition: var(--ryrst-transition);
}

a:hover {
    color: var(--ryrst-c-gold-light);
}

/* Layout */
.ryrst-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.ryrst-top-navbar {
    background-color: var(--ryrst-c-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ryrst-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ryrst-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ryrst-logo-abbr {
    background: linear-gradient(135deg, var(--ryrst-c-gold), var(--ryrst-c-gold-light));
    color: var(--ryrst-c-dark);
    width: 48px;
    height: 48px;
    border-radius: var(--ryrst-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ryrst-font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ryrst-brand-text {
    display: flex;
    flex-direction: column;
}

.ryrst-brand-name {
    color: var(--ryrst-c-surface);
    font-family: var(--ryrst-font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.ryrst-brand-sub {
    color: var(--ryrst-c-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ryrst-age-badge {
    border: 1px solid var(--ryrst-c-gold);
    color: var(--ryrst-c-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Hero Section */
.ryrst-hero-area {
    background: linear-gradient(135deg, var(--ryrst-c-dark) 0%, var(--ryrst-c-dark-sec) 100%);
    position: relative;
    padding: 120px 0 160px;
    overflow: hidden;
}

.ryrst-hero-area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.ryrst-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ryrst-hero-content {
    max-width: 800px;
    margin-bottom: 60px;
}

.ryrst-hero-kicker {
    display: inline-block;
    color: var(--ryrst-c-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
}

.ryrst-hero-kicker::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--ryrst-c-gold);
}

.ryrst-hero-title {
    color: var(--ryrst-c-surface);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.ryrst-hero-desc {
    color: var(--ryrst-c-text-light);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.ryrst-hero-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.ryrst-stat-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 24px 40px;
    border-radius: var(--ryrst-radius);
    text-align: center;
    min-width: 200px;
    transition: var(--ryrst-transition);
}

.ryrst-stat-box:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.ryrst-stat-label {
    display: block;
    color: var(--ryrst-c-text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ryrst-stat-value {
    display: block;
    color: var(--ryrst-c-gold);
    font-family: var(--ryrst-font-heading);
    font-size: 24px;
    font-weight: 700;
}

/* General Sections */
.ryrst-section {
    padding: 100px 0;
}

.ryrst-bg-light {
    background-color: var(--ryrst-c-surface);
}

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

.ryrst-section-title {
    font-size: 42px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.ryrst-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--ryrst-c-gold);
}

.ryrst-section-intro {
    font-size: 18px;
    color: var(--ryrst-c-text);
}

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

/* Cards */
.ryrst-info-card {
    background: var(--ryrst-c-surface);
    border-radius: var(--ryrst-radius);
    padding: 40px 30px;
    box-shadow: var(--ryrst-shadow);
    border-top: 4px solid var(--ryrst-c-gold);
    transition: var(--ryrst-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ryrst-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--ryrst-transition);
}

.ryrst-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ryrst-shadow-hover);
}

.ryrst-info-card:hover::before {
    opacity: 1;
}

.ryrst-card-kicker {
    display: inline-block;
    color: var(--ryrst-c-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 700;
}

.ryrst-card-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.ryrst-card-text {
    color: var(--ryrst-c-text);
    margin-bottom: 24px;
    font-size: 15px;
}

.ryrst-card-list {
    list-style: none;
}

.ryrst-card-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--ryrst-c-text);
}

.ryrst-card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ryrst-c-gold);
    font-weight: 700;
}

/* Footer */
.ryrst-bottom-footer {
    background-color: var(--ryrst-c-dark);
    color: var(--ryrst-c-text-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ryrst-footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.ryrst-footer-brand {
    color: var(--ryrst-c-surface);
    font-family: var(--ryrst-font-heading);
    font-size: 28px;
    margin-bottom: 20px;
}

.ryrst-footer-title {
    color: var(--ryrst-c-surface);
    font-family: var(--ryrst-font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.ryrst-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--ryrst-c-gold);
}

.ryrst-footer-desc {
    font-size: 14px;
    line-height: 1.8;
}

.ryrst-footer-contacts {
    list-style: none;
}

.ryrst-footer-contacts li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.ryrst-footer-contacts strong {
    color: var(--ryrst-c-gold);
    margin-bottom: 4px;
}

.ryrst-footer-nav {
    list-style: none;
}

.ryrst-footer-nav li {
    margin-bottom: 12px;
}

.ryrst-footer-nav a {
    color: var(--ryrst-c-text-light);
    font-size: 14px;
}

.ryrst-footer-nav a:hover {
    color: var(--ryrst-c-gold);
    padding-left: 5px;
}

.ryrst-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

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

@media (max-width: 768px) {
    .ryrst-hero-title {
        font-size: 48px;
    }
    
    .ryrst-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .ryrst-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .ryrst-hero-area {
        padding: 80px 0 100px;
    }
}

@media (max-width: 480px) {
    .ryrst-hero-title {
        font-size: 36px;
    }
    
    .ryrst-nav-inner {
        flex-direction: column;
        gap: 16px;
    }
}
