/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from Figma */
    --primary-green: #00FF88;
    --secondary-blue: #00D4FF;
    --dark-500: #0A0E1A;
    --white: #F1F4FB;
    --white-70: rgba(241, 244, 251, 0.7);
    --white-10: rgba(241, 244, 251, 0.1);
    --dark-10: rgba(10, 14, 26, 0.1);
    --dark-40: rgba(10, 14, 26, 0.4);
    --accent-orange: #FF8800;
    --warning-red: #FF4444;
    
    /* Gradients */
    --gradient-blue-green: linear-gradient(90deg, #00D4FF 0%, #00FF88 100%);
    --gradient-green-dark: linear-gradient(90deg, #00FF88 0%, rgba(0, 255, 136, 0) 100%);
    --border-gradient: linear-gradient(135deg, rgba(241, 244, 251, 1) 0%, rgba(153, 153, 153, 1) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-500);
    color: var(--white);
    font-size: 15px;
    line-height: 1.3;
    overflow-x: hidden;
}

.container {
    max-width: 1176px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: var(--dark-500);
    border-bottom: 1px solid var(--white-10);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    width: 100px;
    height: 29px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 1062px;
    padding-top: 140px;
    overflow: hidden;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(250px);
    pointer-events: none;
}

.decoration-1 {
    width: 307px;
    height: 315px;
    background: var(--primary-green);
    top: 1862px;
    right: -150px;
    filter: blur(284px);
}

.decoration-2 {
    width: 361px;
    height: 367px;
    background: var(--primary-green);
    top: 2625px;
    left: -211px;
}

.decoration-3 {
    width: 320px;
    height: 325px;
    background: var(--secondary-blue);
    top: 51px;
    left: -37px;
    filter: blur(214px);
}

.hero-decoration {
    position: absolute;
    top: -42px;
    right: -100px;
    width: 512px;
    height: 580px;
    opacity: 0.8;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 780px;
    position: relative;
    z-index: 10;
}

.server-ip-box,
.step-ip-box,
.community-ip-box,
.footer-ip-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.label {
    color: var(--white);
    font-weight: 400;
}

.server-ip {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.btn-copy {
    width: 16px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s;
}

.btn-copy:hover {
    opacity: 0.7;
}

.btn-copy img {
    width: 100%;
    height: 100%;
}

.hero-title {
    font-weight: 600;
    font-size: 56px;
    line-height: 1em;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-description {
    max-width: 407px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    min-width: 283px;
    height: 61px;
    background: var(--gradient-blue-green);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-500);
    cursor: pointer;
    box-shadow: 0px 1px 5px 0px rgba(0, 133, 160, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 15px 0px rgba(0, 133, 160, 0.4);
}

.online-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-status img {
    width: 24px;
    height: 24px;
}

.online-label {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.online-count {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-weight: 600;
    font-size: 46px;
    line-height: 1em;
    letter-spacing: -0.04em;
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 1em;
    letter-spacing: -0.04em;
}

.feature-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
}

/* Tasks Section */
.tasks {
    padding: 100px 0;
    position: relative;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.task-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.task-card:hover {
    transform: translateY(-4px);
}

.task-badge {
    position: absolute;
    top: -13px;
    right: 24px;
    padding: 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.task-easy {
    background: var(--secondary-blue);
}

.task-medium {
    background: var(--accent-orange);
}

.task-hard {
    background: var(--warning-red);
}

.task-image {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 92px;
    height: auto;
    opacity: 0.8;
}

.task-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.task-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 1em;
    letter-spacing: -0.04em;
    max-width: 294px;
}

.task-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
}

.task-reward {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    background: var(--gradient-green-dark);
    border-radius: 4px;
}

.reward-label {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: -0.01em;
    color: var(--white);
}

.reward-text {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
}

/* Legend Section */
.legend {
    padding: 100px 0;
    position: relative;
}

.legend .container {
    display: grid;
    grid-template-columns: 481px 1fr;
    gap: 60px;
}

.legend-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legend-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legend-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.legend-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-blue);
    box-shadow: 0px 1px 6px 0px rgba(0, 255, 136, 0.5);
    flex-shrink: 0;
}

.legend-footer {
    padding: 16px;
    background: var(--gradient-green-dark);
    border-radius: 8px;
    max-width: 411px;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.zone-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 24px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.zone-card:hover {
    transform: translateY(-4px);
}

.zone-content {
    display: flex;
    gap: 16px;
}

.zone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white-70);
    flex-shrink: 0;
    margin-top: 6px;
}

.zone-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1em;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.zone-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
}

/* How to Start Section */
.how-to-start {
    padding: 100px 0;
}

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

.steps-line {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 939px;
    height: 32px;
}

.steps-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--white-10);
    border-image: var(--border-gradient) 1;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    border-radius: 40px;
    font-weight: 600;
    font-size: 12px;
    color: var(--dark-500);
    position: relative;
    z-index: 10;
}

.steps-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 1em;
    letter-spacing: -0.04em;
}

.step-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
}

.step-ip-box {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.step-link {
    color: var(--white);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
    text-decoration: none;
    transition: color 0.3s;
}

.step-link:hover {
    color: var(--primary-green);
}

/* Community Section */
.community {
    padding: 100px 0;
}

.community-grid {
    display: grid;
    grid-template-columns: 576px repeat(2, 276px);
    gap: 24px;
}

.community-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 10px;
    transition: transform 0.3s;
}

.community-card:hover {
    transform: translateY(-4px);
}

.community-ingame {
    background: var(--gradient-green-dark);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
}

.community-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 1em;
    letter-spacing: -0.04em;
}

.community-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
    max-width: 470px;
}

.community-ip-box {
    background: var(--dark-40);
}

.community-link {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.community-link:hover {
    color: var(--primary-green);
}

/* CTA Section */
.cta {
    padding: 135px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 577px;
}

.cta-title {
    font-weight: 600;
    font-size: 46px;
    line-height: 1em;
    letter-spacing: -0.04em;
}

.cta-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
}

.cta-ip-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(40px);
}

.server-ip-large {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 56px;
    line-height: 1em;
    letter-spacing: -0.04em;
}

.cta-stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-weight: 600;
    font-size: 46px;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: var(--white);
}

.stat-label {
    font-weight: 600;
    font-size: 15px;
    line-height: 1em;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}

/* How to Start Section */
.how-to-start {
    padding: 80px 0;
    background: var(--dark-500);
}

.start-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.start-card {
    position: relative;
    padding: 32px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.start-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.2);
}

.start-card.featured {
    border-color: var(--primary-green);
    box-shadow: 0 0 24px rgba(0, 255, 136, 0.15);
}

.start-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.start-badge.start-easy {
    background: rgba(0, 212, 255, 0.2);
    color: var(--secondary-blue);
    border: 1px solid var(--secondary-blue);
}

.start-badge.start-featured {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.start-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.start-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--white);
}

.start-version {
    font-size: 14px;
    color: var(--white);
    opacity: 0.7;
}

.start-description {
    font-size: 15px;
    line-height: 1.6em;
    color: var(--white);
    opacity: 0.9;
    margin: 8px 0;
}

.start-server-ip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    margin: 16px 0;
}

.start-server-ip .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.7;
}

.start-server-ip code {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    background: none;
    padding: 0;
}

.start-card .btn-primary,
.start-card .btn-outline {
    margin-top: 16px;
    width: 100%;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--secondary-blue);
    color: var(--dark-500);
}

.start-help-box {
    text-align: center;
    padding: 24px;
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.start-help-box p {
    font-size: 15px;
    color: var(--white);
    margin: 0;
}

.start-help-box a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.start-help-box a:hover {
    color: var(--primary-green);
}

/* Leisure Banner */
.leisure-banner {
    padding: 40px 0;
    background: var(--dark-10);
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
}

/* Additional Start Page Styles */
.featured-card {
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 24px rgba(0, 255, 136, 0.15);
}

.server-ip-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    margin: 16px 0;
}

.server-ip-box .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.7;
}

.server-ip-box code {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    background: none;
    padding: 0;
}

.feature-card .btn-primary,
.feature-card .btn-secondary {
    margin-top: 16px;
    width: 100%;
    text-align: center;
}

.zone-dot.step-1 {
    background: var(--primary-green);
}

.zone-dot.step-2 {
    background: var(--secondary-blue);
}

.zone-dot.step-3 {
    background: #FF8800;
}

.zone-dot.step-4 {
    background: #FF4444;
}

.zone-dot.step-5 {
    background: var(--primary-green);
}

.mod-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.mod-list li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.5em;
    color: var(--white);
}

.mod-list li:before {
    content: "→ ";
    color: var(--primary-green);
    font-weight: 600;
    margin-right: 4px;
}

.mod-list a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.mod-list a:hover {
    color: var(--primary-green);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.leisure-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: rgba(10, 14, 26, 0.3);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.leisure-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.leisure-text {
    flex: 1;
}

.leisure-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--white);
    margin-bottom: 8px;
}

.leisure-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    color: var(--white-70);
}

.leisure-link {
    padding: 12px 24px;
    background: var(--dark-10);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s;
}

.leisure-link:hover {
    background: var(--white-10);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.hero-version {
    font-weight: 500;
    font-size: 14px;
    color: var(--secondary-blue);
    margin-top: 8px;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid;
    border-image: var(--border-gradient) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 275px 176px 275px 276px;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3em;
}

.footer-copyright,
.footer-disclaimer {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: -0.01em;
    color: var(--white-70);
}

.footer-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1em;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.footer-nav,
.footer-connect,
.footer-admin {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav a,
.footer-connect a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-connect a:hover {
    color: var(--primary-green);
}

.footer-connect p {
    font-weight: 400;
    font-size: 15px;
    max-width: 237px;
}

.footer-admin p {
    font-weight: 400;
    font-size: 15px;
    max-width: 275px;
}

.footer-contact-desc {
    font-size: 12px;
    color: var(--white-70);
}

.footer-telegram {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-telegram:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .legend .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .tasks-grid {
        grid-template-columns: 1fr;
    }
    
    .zones-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-content {
        grid-template-columns: 1fr;
    }
    
    .steps-line {
        display: none;
    }
    
    .nav {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.task-card,
.zone-card,
.community-card {
    animation: fadeIn 0.6s ease-out;
}

/* ===== SHOP STYLES ===== */
.shop-hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-header {
    max-width: 800px;
    margin: 0 auto;
}

.shop-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-blue-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-subtitle {
    font-size: 18px;
    color: var(--white-70);
    margin-bottom: 32px;
    line-height: 1.6;
}

.shop-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-badge {
    padding: 8px 16px;
    background: var(--dark-10);
    border: 1px solid var(--white-10);
    border-radius: 20px;
    font-size: 14px;
    color: var(--white);
}

.products-section {
    padding: 40px 0 80px;
}

.category-block {
    margin-bottom: 80px;
}

.category-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.category-desc {
    font-size: 16px;
    color: var(--white-70);
    margin-bottom: 32px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--dark-10);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.2);
}

.product-card.popular {
    border-color: var(--secondary-blue);
}

.product-card.vip {
    border-color: #FFB347;
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.1), transparent);
}

.product-card.legendary {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), transparent);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.hit {
    background: var(--secondary-blue);
    color: var(--dark-500);
}

.product-badge.premium {
    background: #FFB347;
    color: var(--dark-500);
}

.product-badge.legendary {
    background: #FFD700;
    color: var(--dark-500);
}

.product-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.product-desc {
    font-size: 14px;
    color: var(--white-70);
    margin-bottom: 16px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.product-features li {
    font-size: 14px;
    color: var(--white-70);
    padding: 8px 0;
    border-bottom: 1px solid var(--white-10);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-buy-btn {
    padding: 12px 24px;
    background: var(--primary-green);
    color: var(--dark-500);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.product-buy-btn:hover {
    background: var(--secondary-blue);
    transform: scale(1.05);
}

.support-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), transparent);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--primary-green);
}

.shop-warning {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-top: 60px;
}

.shop-warning h3 {
    color: #FF4444;
    font-size: 24px;
    margin-bottom: 16px;
}

.shop-warning p {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 8px;
}

.shop-warning strong {
    color: #FF4444;
    font-weight: 700;
}

/* Shop Responsive */
@media (max-width: 768px) {
    .shop-title { 
        font-size: 36px; 
    }
    .category-title { 
        font-size: 28px; 
    }
    .products-grid { 
        grid-template-columns: 1fr; 
    }
    .product-footer { 
        flex-direction: column; 
    }
    .shop-badges { 
        flex-direction: column; 
        align-items: center; 
    }
}

/* ===== FIGMA SHOP STYLES ===== */

/* Shop Hero Section */
.shop-hero-section {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.shop-hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
}

.shop-hero-description {
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
    margin-bottom: 32px;
}

.shop-hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 24px;
    height: 24px;
}

/* Products Main Section */
.products-main-section {
    padding: 80px 0;
}

.products-section-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
    color: var(--white);
}

.products-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

/* Product Card Figma Style */
.product-card-figma {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s;
}

.product-card-figma:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.2);
}

.product-card-image {
    width: 100%;
    height: 200px;
    background: var(--dark-10);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-badge {
    position: absolute;
    top: 11px;
    right: 11px;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.badge-privilege {
    background: var(--secondary-blue);
    color: var(--white);
}

.badge-hit {
    background: #FF8800;
    color: var(--white);
}

.badge-vip {
    background: #FF4444;
    color: var(--white);
}

.badge-resource {
    background: var(--white);
    color: var(--dark-500);
}

.badge-upgrade {
    background: var(--dark-500);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    color: var(--white);
}

.product-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: var(--white);
}

.product-card-subtitle {
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
}

.product-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
}

.product-card-features li {
    padding: 4px 0;
}

.product-card-price {
    font-size: 25px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: var(--white);
}

.product-card-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-blue-green);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1em;
    color: var(--dark-500);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 1px 5px 0px rgba(0, 133, 160, 0.2);
}

.product-card-btn:hover {
    transform: scale(1.02);
    box-shadow: 0px 4px 15px 0px rgba(0, 133, 160, 0.4);
}

/* FAQ Section */
.faq-section {
    margin-top: 120px;
}

.faq-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
    color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: var(--white);
}

.faq-answer {
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
}

/* Footer Updates for Shop */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(135deg, rgba(241, 244, 251, 1) 0%, rgba(153, 153, 153, 1) 100%);
    margin-bottom: 40px;
}

.footer-logo {
    width: 100px;
    height: 29px;
    margin-bottom: 40px;
}

/* Responsive for Shop */
@media (max-width: 1024px) {
    .products-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-hero-title {
        font-size: 36px;
    }
    
    .products-section-title,
    .faq-title {
        font-size: 32px;
    }
    
    .products-grid-main {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-hero-badges {
        flex-direction: column;
    }
}

/* ===== RULES PAGE STYLES ===== */

/* Rules Hero */
.rules-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rules-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.rules-hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
}

.rules-hero-subtitle {
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
    margin-bottom: 32px;
}

.rules-hero-badges {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.rules-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-blue);
    border-radius: 50%;
    box-shadow: 0px 1px 6px 0px rgba(0, 255, 136, 0.5);
}

/* Rules Content */
.rules-content {
    padding: 40px 0 80px;
}

.rules-section {
    margin-bottom: 80px;
}

.rules-section-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.rules-note {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(90deg, rgba(0, 255, 136, 1) 0%, rgba(0, 255, 136, 0) 100%);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    margin-bottom: 16px;
}

.note-icon {
    width: 32px;
    height: 32px;
    background: var(--white);
    color: var(--dark-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-item {
    padding: 24px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.rule-item.warning {
    border-color: rgba(255, 136, 0, 0.5);
}

.rule-item.danger {
    border-color: rgba(255, 68, 68, 0.5);
}

.rule-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-right: 8px;
}

.rule-item > p {
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
    margin: 0;
}

.rule-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.rule-header .rule-title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
}

.rule-header .rule-title p {
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
    margin: 0;
}

.rule-badge {
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.rule-badge.warn {
    background: #FF8800;
    color: var(--white);
}

.rule-badge.ban {
    background: #FF4444;
    color: var(--white);
}

.rule-details {
    list-style: none;
    padding: 0;
    margin: 0 0 0 28px;
    font-size: 15px;
    line-height: 1.6em;
    color: var(--white);
}

.rule-details li {
    padding: 2px 0;
}

.rule-details li:before {
    content: "• ";
    color: var(--primary-green);
    margin-right: 8px;
}

.rule-tip {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white-10);
    border-radius: 8px;
    margin-top: 16px;
    margin-left: 28px;
}

.tip-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: var(--dark-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.rule-tip p {
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
    margin: 0;
}

.rule-tip p strong {
    font-weight: 700;
}

/* Important Section */
.rules-important {
    padding: 40px;
    background: linear-gradient(90deg, rgba(0, 255, 136, 1) 0%, rgba(0, 255, 136, 0) 100%);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 10px;
    margin-bottom: 40px;
}

.important-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 16px;
}

.important-text {
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
    margin-bottom: 16px;
    max-width: 535px;
}

.important-ip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(10, 14, 26, 0.4);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.rules-footer-note {
    text-align: center;
    font-size: 15px;
    line-height: 1.3em;
    color: var(--white);
}

.rules-footer-note p {
    margin: 4px 0;
}

/* Rules Responsive */
@media (max-width: 768px) {
    .rules-hero-title {
        font-size: 36px;
    }
    
    .rules-section-title,
    .important-title {
        font-size: 32px;
    }
    
    .rule-item {
        flex-direction: column;
    }
    
    .rule-header {
        flex-direction: column;
    }
    
    .rules-important {
        padding: 24px;
    }
}

/* ===== GUIDE/START PAGE STYLES ===== */

/* Guide Hero */
.guide-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.guide-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.guide-hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--white);
}

.guide-hero-subtitle {
    font-size: 18px;
    line-height: 1.4em;
    color: var(--white);
    opacity: 0.8;
}

/* Guide Content */
.guide-content {
    padding: 80px 0;
}

.guide-section {
    margin-bottom: 80px;
}

.guide-section-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: var(--primary-green);
    margin-bottom: 40px;
}

/* Server Choice */
.server-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.server-choice-card {
    padding: 32px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.server-choice-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.server-choice-badge.engineering {
    background: var(--primary-green);
    color: var(--dark-500);
}

.server-choice-badge.leisure {
    background: var(--secondary-blue);
    color: var(--dark-500);
}

.server-choice-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.server-version {
    font-size: 14px;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: 16px;
}

.server-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.server-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--white);
}

.server-features li:before {
    content: "✓ ";
    color: var(--primary-green);
    font-weight: 600;
    margin-right: 8px;
}

.server-ip {
    font-size: 16px;
    color: var(--white);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Guide Note */
.leisure-guide .guide-note {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0) 100%);
}

.guide-note h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

/* Guide Steps */
.guide-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: var(--dark-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.step-content > p {
    font-size: 15px;
    line-height: 1.6em;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 24px;
}

.step-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 24px 0;
}

.step-list li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 15px;
    line-height: 1.6em;
    color: var(--white);
}

.step-list li:before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--primary-green);
}

.step-actions {
    margin: 24px 0;
}

.step-tip {
    margin-top: 24px;
    padding: 16px;
    background: var(--white-10);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-tip p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5em;
    color: var(--white);
}

.step-tip code {
    background: rgba(0, 255, 136, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-green);
}

/* Launchers Grid */
.launchers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.launcher-card {
    padding: 24px;
    background: var(--white-10);
    border-radius: 8px;
    text-align: center;
}

.launcher-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.launcher-card p {
    font-size: 14px;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 16px;
}

/* Mods List */
.mods-list {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.mod-category {
    padding: 24px;
    background: var(--white-10);
    border-radius: 8px;
}

.mod-category h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.mod-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mod-category ul li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.6em;
}

.mod-category ul li a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.mod-category ul li a:hover {
    color: var(--primary-green);
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px;
    background: var(--dark-10);
    border: 1px solid;
    border-image: var(--border-gradient) 1;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6em;
    color: var(--white);
    margin-bottom: 12px;
}

.faq-item ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.faq-item ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 15px;
    line-height: 1.6em;
    color: var(--white);
    opacity: 0.9;
}

.faq-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.faq-item a {
    color: var(--secondary-blue);
    text-decoration: none;
}

.faq-item a:hover {
    color: var(--primary-green);
}

/* Guide CTA */
.guide-cta {
    text-align: center;
    padding: 64px 32px;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 12px;
    margin-top: 80px;
}

.guide-cta h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.guide-cta p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Guide Responsive */
@media (max-width: 768px) {
    .guide-hero-title {
        font-size: 36px;
    }
    
    .guide-section-title {
        font-size: 32px;
    }
    
    .server-choice-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-step {
        flex-direction: column;
    }
    
    .launchers-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .start-grid {
        grid-template-columns: 1fr;
    }
}



/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-top: 1px solid rgba(255, 136, 0, 0.2);
    border-bottom: 1px solid rgba(255, 136, 0, 0.2);
    padding: 20px 0;
    margin: 0;
}

.info-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.info-text {
    flex: 1;
}

.info-text strong {
    color: #FF8800;
    font-size: 17px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.info-text p {
    color: var(--white-70);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .info-banner {
        padding: 16px 0;
    }
    
    .info-icon {
        font-size: 24px;
    }
    
    .info-text strong {
        font-size: 15px;
    }
    
    .info-text p {
        font-size: 13px;
    }
}
