:root {
--font-primary: "Georgia", "Times New Roman", serif;
--font-headings: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
--background-color: #F7F2E8;
--background-darker-1-color: #EDE4D3;
--background-darker-2-color: #E3D6BE;
--background-darker-3-color: #D9C8A9;
--primary-color: #6B5240;
--primary-dark-color: #4A3A2A;
--accent-color: #8B7355;
--link-color: #CD7900;
--link-hover-color: #A66200;
--link-visited: #D49339;
--text-primary: #2A1F15;
--text-secondary: #3D2E20;
--text-muted: #5A4A37;
--text-accent: #7A5F3C;
--text-header: #F7F2E8;
--border-color: #C4B394;
--border-light: #D2C6A8;
--border-accent: #A89574;
--button-bg: #7A5F3C;
--button-hover: #8B6F47;
--button-active: #5C4A32;
--button-text: #F7F2E8;
--selected-tab: #75695c;
--hovered-tab: #58493a;
--card-bg: #FDFAF5;
--card-border: #D2C6A8;
--shadow-light: rgba(42, 31, 21, 0.1);
--shadow-medium: rgba(42, 31, 21, 0.2);
--shadow-heavy: rgba(42, 31, 21, 0.3);
--shadow-warm: rgba(122, 95, 60, 0.15);
--success-color: #6C8836;
--warning-color: #E1A93A;
--error-color: #A0522D;
--info-color: #6776A3;
--highlight-bg: rgba(184, 134, 11, 0.12);
--selection-bg: rgba(184, 134, 11, 0.25);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--background-darker-1-color);
}
::-webkit-scrollbar-thumb {
background: var(--accent-color);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--primary-color);
}
* {
scrollbar-width: auto;
scrollbar-color: var(--accent-color) var(--background-darker-1-color);
}
html {
font-size: 18px;
}
body {
font-family: var(--font-primary);
background-color: var(--background-color);
color: var(--text-primary);
line-height: 1.6;
}
.header {
height: 64px;
background: var(--primary-dark-color);
box-shadow: 0 2px 10px var(--shadow-medium);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}
.header-content {
max-width: 1200px;
margin: 0 auto;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
.logo {
font-family: var(--font-headings);
font-size: 1.5rem;
font-weight: 700;
color: var(--button-text);
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
p a {
color: var(--link-color);
font-weight: bold;
transition: all 0.3s ease;
text-decoration: none;
}
p + p {
margin-top: 10px;
}
.nav {
display: flex;
gap: 0;
height: 100%;
}
.nav a {
color: var(--button-text);
text-decoration: none;
font-weight: 500;
transition: background-color 0.3s ease;
padding: 0 20px;
display: flex;
align-items: center;
height: 100%;
border-radius: 0;
}
.nav a:hover {
background-color: var(--hovered-tab);
}
.nav a.active {
background-color: var(--selected-tab);
}
.mobile-menu-toggle {
display: none;
background-color: transparent;
color: var(--text-header);
border: none;
font-size: 1.5rem;
cursor: pointer;
padding: 10px;
}
.mobile-nav {
display: none;
flex-direction: column;
position: absolute;
top: 64px;
right: 0;
background-color: var(--primary-dark-color);
border: 1px solid #1f1f1f;
width: 200px;
box-shadow: 0 4px 15px var(--shadow-heavy);
}
.mobile-nav a {
color: var(--text-header);
text-decoration: none;
padding: 15px 30px;
border-bottom: 1px solid rgba(247, 242, 232, 0.1);
transition: background-color 0.3s ease;
}
.mobile-nav a:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.mobile-nav.open {
display: flex;
}
.icon {
width: 1em;
height: 1em;
display: inline-block;
vertical-align: -0.14em;
fill: currentColor;
}
.hero {
margin-top: 64px;
min-height: calc(100vh - 64px);
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 60px 0;
}
.hero-content {
position: relative;
z-index: 3;
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
height: 100%;
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: stretch;
}
.hero-logo {
width: 100%;
height: auto;
margin-bottom: 30px;
}
.hero-visual {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.hero-text {
max-width: 600px;
}
.hero-text .subtitle {
font-size: 1.5rem;
color: var(--text-secondary);
margin-bottom: 20px;
font-style: italic;
}
.hero-text .description {
font-size: 1.1rem;
color: var(--text-muted);
margin-bottom: 40px;
line-height: 1.6;
}
.hero-subscribe {
background: var(--card-bg);
border: 2px solid var(--border-accent);
border-radius: 12px;
padding: 30px;
box-shadow: 0 4px 15px var(--shadow-warm);
}
.hero-subscribe h3 {
font-family: var(--font-headings);
font-size: 1.3rem;
color: var(--text-primary);
margin-bottom: 20px;
}
.hero-email-form {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.hero-email-input {
flex: 1;
min-width: 200px;
padding: 15px 20px;
background: var(--background-color);
border: 2px solid var(--border-color);
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.hero-email-input:focus {
outline: none;
border-color: var(--accent-color);
}
.hero-steam {
text-align: center;
animation: fadeIn 0.5s ease;
}
.success-message {
color: var(--success-color);
font-size: 1.1rem;
margin-bottom: 24px;
display: flex;
align-items: center;
gap: 10px;
justify-content: center;
}
.success-message .icon {
width: 40px;
height: 40px;
}
.btn-large {
font-size: 1.2rem;
padding: 18px 40px;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 1024px) {
.hero {
min-height: auto;
padding: 40px 0;
}
.hero-content {
grid-template-columns: 1fr;
justify-items: center;
text-align: center;
gap: 40px;
padding: 0 20px;
}
.hero-visual {
height: auto;
width: 100%;
justify-content: center;
align-items: flex-start;
margin: 0 auto;
}
.hero-subscribe {
max-width: 600px;
}
.game-preview {
height: auto;
width: 100%;
max-width: 600px;
margin: 0 auto;
}
}
@media (max-width: 768px) {
.hero {
margin-top: 60px;
}
.hero-content {
padding: 0 15px;
}
.hero-logo {
margin: 0 auto 20px;
}
.hero-subscribe {
padding: 25px 20px;
}
.success-message {
flex-direction: column;
}
}
@media (max-width: 480px) {
.hero {
margin-top: 50px;
padding: 30px 0;
}
.hero-content {
padding: 0 8px;
}
.hero-email-form {
justify-content: center;
}
.hero-email-input {
min-width: 100%;
text-align: center;
}
.hero-text .subtitle {
font-size: 1.2rem;
}
.hero-text .description {
font-size: 1rem;
margin-bottom: 24px;
}
.hero-subscribe h3 {
font-size: 1.1rem;
}
}
.awesome-section-light {
position: relative;
overflow: hidden;
}
.awesome-section-light::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-size: cover;
background-repeat: no-repeat;
opacity: 0.2;
z-index: 1;
}
.awesome-section-light.map-1::before {
background-image: url('/images/game_map_1.webp');
background-position: left top;
}
.awesome-section-light.map-2::before {
background-image: url('/images/game_map_1.webp');
background-position: right bottom;
}
@media (max-width: 480px) {
.awesome-section-light.map-1::before {
background-image: url('/images/game_map_1_mobile.webp');
}
.awesome-section-light.map-2::before {
background-image: url('/images/game_map_1_mobile.webp');
}
}
.awesome-section-light::after {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(
to top,
rgba(247, 242, 232, 0.92) 0%,
rgba(237, 228, 211, 0.87) 25%,
rgba(237, 228, 211, 0.72) 52%,
rgba(237, 228, 211, 0.58) 78%,
rgba(237, 228, 211, 0.45) 90%,
rgba(237, 228, 211, 0.34) 100%
);
z-index: 2;
pointer-events: none;
}
.awesome-section-dark-v1 {
position: relative;
overflow: hidden;
}
.hero.awesome-section-dark-v1 {
background: var(--primary-dark-color);
color: var(--button-text);
}
.awesome-section-dark-v1::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-image: url('/images/game_map_2.webp');
background-size: cover;
background-position: left top;
background-repeat: no-repeat;
opacity: 0.3;
filter: brightness(0.8);
z-index: 1;
}
@media (max-width: 480px) {
.awesome-section-dark-v1::before {
background-image: url('/images/game_map_2_mobile.webp');
}
}
.awesome-section-dark-v1::after {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(
to bottom,
rgba(42, 31, 21, 0.80) 0%,
rgba(74, 58, 42, 0.50) 40%,
rgba(107, 82, 64, 0.24) 68%,
rgba(139, 115, 85, 0.14) 85%,
rgba(170, 146, 120, 0.1) 85%,
rgba(247, 242, 232, 0.07) 100%
);
z-index: 2;
pointer-events: none;
}
.awesome-section-dark-v1 .hero-text {
background: rgba(42, 31, 21, 0.85);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
padding: 40px 32px;
border-radius: 20px;
border: 1px solid rgba(139, 115, 85, 0.3);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.awesome-section-dark-v1 .subtitle,
.awesome-section-dark-v1 .description {
color: rgba(247, 242, 232, 0.85);
}
.awesome-section-dark-v1 .hero-subscribe {
background: rgba(74, 58, 42, 0.5);
border-color: rgba(139, 115, 85, 0.5);
}
.awesome-section-dark-v1 .hero-subscribe h3 {
color: var(--button-text);
}
.awesome-section-dark-v1 .game-preview {
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
border: 2px solid rgba(139, 115, 85, 0.3);
}
@media (max-width: 768px) {
.awesome-section-dark-v1 .hero-text {
padding: 32px 16px;
}
}
@media (max-width: 400px) {
.awesome-section-dark-v1 .hero-text {
padding: 24px 8px;
}
}
.awesome-section-dark-v2 {
position: relative;
overflow: hidden;
}
.awesome-section-dark-v2::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-image: url('/images/game_map_2.webp');
background-size: cover;
background-position: right bottom;
background-repeat: no-repeat;
opacity: 0.4;
filter: brightness(0.8);
z-index: 1;
}
@media (max-width: 480px) {
.awesome-section-dark-v2::before {
background-image: url('/images/game_map_2_mobile.webp');
}
}
.awesome-section-dark-v2::after {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(
to bottom,
rgba(247, 242, 232, 0.92) 0%,
rgba(211, 202, 190, 0.87) 25%,
rgba(175, 162, 148, 0.62) 45%,
rgba(139, 122, 106, 0.5) 55%,
rgba(107, 82, 64, 0.40) 65%,
rgba(107, 82, 64, 0.65) 78%,
rgba(107, 82, 64, 0.75) 85%,
rgba(107, 82, 64, 0.9) 92%,
rgba(107, 82, 64, 1) 100%
);
z-index: 2;
pointer-events: none;
}
.hero-subpage {
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 80px 0 60px;
min-height: 40vh;
margin-top: 64px;
margin-bottom: 0;
}
.hero-subpage .hero-container {
text-align: center;
padding: 60px 0;
}
.hero-subpage h1 {
font-family: var(--font-headings);
font-size: 3rem;
color: var(--text-primary);
margin-bottom: 20px;
}
.hero-subpage p {
font-size: 1.4rem;
color: var(--text-secondary);
max-width: 800px;
margin: 0 auto;
}
@media (max-width: 1024px) {
.hero-subpage {
padding: 60px 0 40px;
min-height: auto;
}
}
@media (max-width: 768px) {
.hero-subpage {
margin-top: 60px;
padding: 40px 0 40px;
min-height: auto;
}
}
@media (max-width: 480px) {
.hero-subpage {
margin-top: 50px;
padding: 30px 0 30px;
}
}
.btn {
display: inline-block;
padding: 15px 30px;
border: none;
border-radius: 8px;
font-family: var(--font-primary);
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
text-align: center;
}
.btn-primary {
background: linear-gradient(135deg, var(--button-bg), var(--button-hover));
color: var(--button-text);
box-shadow: 0 4px 15px var(--shadow-warm);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px var(--shadow-warm);
}
.btn-secondary {
background: var(--card-bg);
color: var(--text-primary);
border: 2px solid var(--border-accent);
}
.btn-secondary:hover {
background: var(--background-darker-1-color);
transform: translateY(-2px);
}
.features {
padding: 100px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
@media (max-width: 1024px) {
.container {
padding: 0 32px;
}
}
@media (max-width: 768px) {
.container {
padding: 0 24px;
}
}
@media (max-width: 480px) {
.container {
padding: 0 16px;
}
}
@media (max-width: 420px) {
.container {
padding: 12px;
}
}
@media (max-width: 380px) {
.container {
padding: 8px;
}
}
.container {
position: relative;
z-index: 4;
}
.section-title {
font-family: var(--font-headings);
font-size: 2.5rem;
text-align: center;
margin-bottom: 60px;
color: var(--text-primary);
}
.footer {
background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark-color));
color: var(--button-text);
padding: 80px 0 40px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-section h3 {
font-family: var(--font-headings);
font-size: 1.3rem;
margin-bottom: 20px;
color: var(--button-text);
}
.footer-section a {
color: rgba(247, 242, 232, 0.8);
text-decoration: none;
display: block;
margin-bottom: 10px;
transition: color 0.3s ease;
}
.footer-section a:hover {
color: var(--link-color);
}
.footer-bottom {
border-top: 1px solid rgba(247, 242, 232, 0.2);
padding-top: 30px;
text-align: center;
color: rgba(247, 242, 232, 0.7);
}
.language-dropdown {
position: relative;
height: 100%;
display: flex;
align-items: center;
}
.language-toggle {
background: transparent;
border: none;
color: var(--text-header);
cursor: pointer;
font-size: 0.95rem;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
transition: all 0.3s ease;
height: 100%;
padding: 0 12px;
min-width: 48px;
}
.language-toggle:hover {
background: rgba(247, 242, 232, 0.1);
}
.language-toggle .icon {
width: 21px;
height: auto;
display: block;
fill: var(--text-header);
}
.language-dropdown.open .language-toggle {
background: rgba(247, 242, 232, 0.1);
min-width: 100px;
justify-content: space-between;
}
.language-menu {
position: absolute;
top: calc(100% + 5px);
right: 0;
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 6px;
box-shadow: 0 4px 15px var(--shadow-medium);
display: none;
min-width: 160px;
z-index: 1001;
}
.language-menu.open {
display: block;
}
.language-menu a {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
color: var(--text-primary);
text-decoration: none;
transition: background 0.2s ease;
font-size: 0.9rem;
}
.language-menu a:hover {
background: var(--background-darker-1-color);
}
.language-menu a:first-child {
border-radius: 6px 6px 0 0;
}
.language-menu a:last-child {
border-radius: 0 0 6px 6px;
}
.language-code {
font-weight: 600;
color: var(--accent-color);
min-width: 24px;
font-size: 0.85rem;
}
@media (max-width: 768px) {
.language-dropdown {
display: none;
}
}
.header-right-controls {
height: 100%;
display: flex;
align-items: center;
gap: 20px;
}
.mobile-fab {
position: fixed;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--button-bg), var(--button-hover));
border-radius: 50%;
display: none;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px var(--shadow-warm);
z-index: 1000;
text-decoration: none;
color: var(--button-text);
font-size: 1.5rem;
transition: transform 0.3s ease;
}
.mobile-fab:hover {
transform: scale(1.1);
}
@media (max-width: 1200px) {
.footer-content {
grid-template-columns: auto auto;
gap: 90px;
align-items: start;
justify-content: center;
}
}
@media (max-width: 768px) {
.header-right-controls {
display: flex;
align-items: center;
gap: 0;
}
.nav {
display: none;
}
.mobile-menu-toggle {
display: flex;
background-color: transparent;
color: var(--text-header);
border: none;
font-size: 1.3rem;
cursor: pointer;
padding: 0 12px;
height: 100%;
min-width: 44px;
align-items: center;
justify-content: center;
}
.mobile-menu-toggle:hover {
background: rgba(247, 242, 232, 0.1);
}
.mobile-menu-toggle .icon {
width: 21px;
height: auto;
display: block;
fill: var(--text-header);
}
.language-dropdown {
display: flex;
height: 100%;
}
.language-toggle {
min-width: 44px;
padding: 0 10px;
}
.language-toggle .icon {
width: 20px;
}
.language-menu {
right: 44px;
min-width: 140px;
}
.hero-content {
grid-template-columns: 1fr;
gap: 40px;
text-align: center;
}
.hero-text h1 {
font-size: 2.5rem;
}
.mobile-fab {
display: flex;
}
.footer-content {
grid-template-columns: 1fr;
text-align: center;
}
}
@media (max-width: 480px) {
.hero-text h1 {
font-size: 2rem;
}
.btn {
width: 100%;
margin-bottom: 10px;
}
}
.gameplay-section {
padding: 80px 0;
position: relative;
}
.section-darker {
background: var(--background-darker-1-color);
}
.gameplay-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.gameplay-content.reverse {
direction: rtl;
}
.gameplay-content.reverse > * {
direction: ltr;
}
.gameplay-text h2 {
font-family: var(--font-headings);
font-size: 2.5rem;
margin-bottom: 25px;
color: var(--accent-color);
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
position: relative;
}
.gameplay-text h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 3px;
background: linear-gradient(90deg, var(--accent-color), transparent);
}
.gameplay-text p {
font-size: 1.1rem;
margin-bottom: 15px;
color: var(--text-secondary);
line-height: 1.7;
}
.gameplay-text strong {
color: var(--text-primary);
font-weight: 600;
}
.gameplay-visuals-column {
display: flex;
flex-direction: column;
gap: 40px;
align-items: center;
}
.gameplay-visual {
width: 100%;
background: var(--card-bg);
border-radius: 20px;
padding: 0;
box-shadow: 0 10px 30px var(--shadow-light);
border: 3px solid var(--card-border);
overflow: hidden;
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gameplay-visual:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.game-image {
display: block;
width: 100%;
height: 600px;
object-fit: cover;
object-position: center center;
border-radius: 17px 17px 0 0;
filter: brightness(0.9) contrast(1.1);
transition: filter 0.3s ease;
margin: 0 auto;
}
.game-image-fullwidth {
display: block;
width: 100%;
height: auto;
object-fit: contain;
object-position: center center;
filter: brightness(0.9) contrast(1.1);
transition: filter 0.3s ease;
margin: 0 auto;
border-radius: 17px;
}
.gameplay-visual:hover .game-image,
.gameplay-visual:hover .game-image-fullwidth {
filter: brightness(1) contrast(1.2);
}
@media (max-width: 768px) {
.gameplay-content {
grid-template-columns: 1fr;
gap: 40px;
}
.gameplay-content.reverse {
direction: ltr;
}
.gameplay-text h2 {
font-size: 2rem;
}
.gameplay-section {
padding: 60px 0;
}
.game-image {
height: 300px;
}
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
@media (max-width: 1024px) {
.features-grid {
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-left: 50px;
margin-right: 50px;
}
.features-grid > .feature-card:last-child {
grid-column: 1 / -1;
}
}
@media (max-width: 768px) {
.features-grid {
grid-template-columns: 1fr;
gap: 20px;
margin: 0;
}
}
.feature-card {
background: var(--card-bg);
padding: 30px;
border-radius: 15px;
box-shadow: 0 5px 20px var(--shadow-light);
border: 2px solid var(--card-border);
text-align: center;
transition: transform 0.3s ease;
display: flex;
flex-direction: column;
height: 100%;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-icon {
font-size: 2.5rem;
color: var(--accent-color);
margin-bottom: 20px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
}
.feature-visual {
position: relative;
height: 200px;
overflow: hidden;
margin-bottom: 20px;
}
.feature-visual img {
width: 100%;
height: 100%;
object-fit: cover;
}
.feature-card h3 {
font-family: var(--font-headings);
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--text-primary);
}
.feature-card p {
flex-grow: 1;
margin-bottom: 20px;
}
@media (max-width: 768px) {
.feature-card {
padding: 24px;
}
.feature-icon {
font-size: 2rem;
height: 50px;
}
.feature-card h3 {
font-size: 1.2rem;
}
}
@media (max-width: 480px) {
.feature-card {
padding: 24px 16px;
}
}
@media (max-width: 380px) {
.feature-card {
padding: 24px 8px;
}
}
.feature-card.highlight {
background: linear-gradient(135deg, #2a475e 0%, #3a5a7e 100%);
color: white;
border: 2px solid #66c0f4;
}
.feature-card.highlight .feature-icon {
color: #66c0f4;
}
.feature-card.highlight .feature-icon .icon {
fill: #66c0f4;
}
.feature-card.highlight h3 {
color: white;
}
.feature-card.highlight p {
color: rgba(255, 255, 255, 0.9);
}
.feature-card.exclusive {
background: linear-gradient(135deg, #6b4d3a 0%, #8b6d4a 100%);
color: white;
border: 2px solid #ffd700;
}
.feature-card.exclusive .feature-icon {
color: #ffd700;
}
.feature-card.exclusive .feature-icon .icon {
fill: #ffd700;
}
.feature-card.exclusive h3 {
color: white;
}
.feature-card.exclusive p {
color: rgba(255, 255, 255, 0.9);
}
.feature-card .cta-button.small {
border-radius: 6px;
background: rgba(255, 255, 255, 0.2);
color: white;
border: 1px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}
.feature-card .cta-button {
font-family: var(--font-primary);
transition: all 0.3s ease;
}
.feature-card .cta-button.small:hover {
transform: translateY(-2px);
background: rgba(255, 255, 255, 0.3);
}
.feature-card.exclusive .cta-button.special {
border-radius: 6px;
background: linear-gradient(135deg, #ffd700, #ffed4e);
color: var(--text-primary);
font-weight: 600;
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.feature-card.exclusive .cta-button.special:hover {
box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
transform: translateY(-2px);
}
.feature-card.subscribe {
}
.feature-card.subscribe .feature-icon {
color: var(--accent-color);
}
.feature-card.subscribe .feature-icon .icon {
fill: var(--accent-color);
}
.email-form {
display: flex;
flex-direction: column;
gap: 15px;
width: 100%;
}
.email-input {
padding: 12px 20px;
border: 2px solid var(--border-color);
border-radius: 8px;
background: var(--background-color);
color: var(--text-primary);
font-size: 16px;
font-family: var(--font-primary);
transition: all 0.3s ease;
}
.email-input::placeholder {
color: var(--text-muted);
}
.email-input:focus {
outline: none;
border-color: var(--accent-color);
background: var(--background-darker-1-color);
}
.cta-button.notify {
background: linear-gradient(135deg, var(--button-bg), var(--button-hover));
color: var(--button-text);
box-shadow: 0 4px 15px var(--shadow-warm);
font-weight: 600;
margin-top: 7px;
border-radius: 6px;
border: none;
cursor: pointer;
height: auto;
font-weight: 600;
font-size: 1rem;
min-height: 32px;
display: flex;
align-items: center;
justify-content: center;
}
.cta-button.notify:hover {
box-shadow: 0 6px 20px var(--shadow-warm);
transform: translateY(-2px);
}
.success-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(42, 31, 21, 0.8);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
backdrop-filter: blur(10px);
}
.success-modal.active {
display: flex;
}
.modal-content {
background: var(--card-bg);
padding: 60px;
border-radius: 20px;
text-align: center;
max-width: 500px;
box-shadow: 0 20px 60px var(--shadow-heavy);
border: 2px solid var(--card-border);
animation: modalSlideIn 0.5s ease;
}
@keyframes modalSlideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.success-icon {
font-size: 3rem;
color: var(--success-color);
margin-bottom: 30px;
animation: successPulse 0.6s ease;
}
.success-icon .icon {
width: 1.5em;
height: auto;
fill: var(--success-color);
}
@keyframes successPulse {
0% {
transform: scale(0);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.modal-content h2 {
font-family: var(--font-headings);
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--text-primary);
}
.modal-content p {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 15px;
}
.modal-content .sub-text {
font-size: 1rem;
color: var(--text-muted);
margin-bottom: 30px;
}
@media (max-width: 768px) {
.modal-content {
padding: 40px 30px;
margin: 20px;
}
.success-icon {
font-size: 3rem;
}
.modal-content h2 {
font-size: 2rem;
}
.email-form {
gap: 12px;
}
}
.subscribe-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(42, 31, 21, 0.8);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
backdrop-filter: blur(10px);
}
.subscribe-modal.active {
display: flex;
}
.subscribe-icon {
font-size: 4rem;
color: var(--accent-color);
margin-bottom: 30px;
animation: subscribeIconPulse 0.6s ease;
}
.subscribe-icon .icon {
width: 1.5em;
height: auto;
fill: var(--accent-color);
}
@keyframes subscribeIconPulse {
0% {
transform: scale(0);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
.modal-actions {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 20px;
}
.simple-divider {
position: absolute;
z-index: 10;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(
to bottom,
var(--border-light) 0px,
var(--border-light) 2px,
rgba(107, 82, 64, 0.1) 2px,
transparent 4px
);
}
.flags-divider {
position: absolute;
height: 40px;
width: 100%;
z-index: 10;
pointer-events: none;
margin-top: -20px;
}
.flags-divider::before {
content: '';
position: absolute;
top: 18px;
left: 0;
right: 0;
height: 2px;
background: var(--border-color);
box-shadow: 0 1px 2px rgba(42, 31, 21, 0.1);
}
.flags-divider::after {
content: '';
position: absolute;
top: 20px;
left: 0;
width: 100%;
height: 20px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='20' viewBox='0 0 300 20'%3E%3Cpolygon points='12,0 24,0 18,18' fill='%236B5240'/%3E%3Cpolygon points='37,0 49,0 43,18' fill='%238B7355'/%3E%3Cpolygon points='62,0 74,0 68,18' fill='%234A3A2A'/%3E%3Cpolygon points='87,0 99,0 93,18' fill='%233D2E20'/%3E%3Cpolygon points='112,0 124,0 118,18' fill='%237A5F3C'/%3E%3Cpolygon points='137,0 149,0 143,18' fill='%236B5240'/%3E%3Cpolygon points='162,0 174,0 168,18' fill='%238B7355'/%3E%3Cpolygon points='187,0 199,0 193,18' fill='%234A3A2A'/%3E%3Cpolygon points='212,0 224,0 218,18' fill='%23A89574'/%3E%3Cpolygon points='237,0 249,0 243,18' fill='%236B5240'/%3E%3Cpolygon points='262,0 274,0 268,18' fill='%233D2E20'/%3E%3C/svg%3E");
background-size: 300px 100%;
background-repeat: repeat-x;
opacity: 0.9;
}
.flags-divider-v2 {
position: absolute;
height: 40px;
width: 100%;
z-index: 10;
pointer-events: none;
margin-top: -20px;
}
.flags-divider-v2::before {
content: '';
position: absolute;
top: 18px;
left: 0;
right: 0;
height: 2px;
background: var(--border-color);
box-shadow: 0 1px 2px rgba(42, 31, 21, 0.1);
}
.flags-divider-v2::after {
content: '';
position: absolute;
top: 20px;
left: 0;
width: 100%;
height: 20px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='20' viewBox='0 0 300 20'%3E%3C!-- Група 1 --%3E%3Cpolygon points='8,0 21,0 14.5,18' fill='%236B5240'/%3E%3Cpolygon points='28,0 43,0 35.5,18' fill='%238B7355'/%3E%3Cpolygon points='51,0 63,0 57,18' fill='%234A3A2A'/%3E%3Cpolygon points='71,0 84,0 77.5,18' fill='%233D2E20'/%3E%3C!-- Пробіл між групами --%3E%3C!-- Група 2 --%3E%3Cpolygon points='108,0 121,0 114.5,18' fill='%237A5F3C'/%3E%3Cpolygon points='129,0 144,0 136.5,18' fill='%236B5240'/%3E%3Cpolygon points='152,0 166,0 159,18' fill='%238B7355'/%3E%3Cpolygon points='175,0 188,0 181.5,18' fill='%234A3A2A'/%3E%3Cpolygon points='196,0 207,0 201.5,18' fill='%23A89574'/%3E%3C!-- Пробіл між групами --%3E%3C!-- Група 3 --%3E%3Cpolygon points='232,0 245,0 238.5,18' fill='%236B5240'/%3E%3Cpolygon points='253,0 268,0 260.5,18' fill='%233D2E20'/%3E%3Cpolygon points='276,0 291,0 283.5,18' fill='%238B7355'/%3E%3C/svg%3E");
background-size: 300px 100%;
background-repeat: repeat-x;
opacity: 0.9;
}