/* Custom Properties */
:root {
	--primary-color: #ff7518;
	--secondary-color: #ff9547;
	--accent-color: #ffb366;
	--dark-bg: #2c1810;
	--light-bg: #f5f1e8;
	--text-dark: #4a3728;
	--text-light: #f5f1e8;
	--wood-light: #e6c794;
	--wood-medium: #d4a574;
	--wood-dark: #c19a5a;
	--wood-frame: #6b4521;
	--shadow: 0 8px 16px rgba(107, 69, 33, 0.2);
	--shadow-lg: 0 12px 24px rgba(107, 69, 33, 0.3);
}

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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Navigation */
.navbar {
	background: rgba(44, 24, 16, 0.95);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	padding: 1rem 0;
}

.navbar.scrolled {
	padding: 0.5rem 0;
	box-shadow: var(--shadow);
}

.navbar-brand {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary-color) !important;
}

.dropdown-item.active, .dropdown-item:active {
	background: initial;
}

.brand-logo {
	width: 40px;
	height: 40px;
	margin-right: 0.5rem;
	border-radius: 50%;
}

.navbar-nav .nav-link {
	color: var(--text-light) !important;
	font-weight: 500;
	margin: 0 0.5rem;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--primary-color) !important;
}

.navbar-nav .btn-primary {
	background: var(--primary-color);
	border: none;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	transition: all 0.3s ease;
}

.navbar-nav .btn-primary:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-frame) 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px),
		repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px);
	pointer-events: none;
}

.hero-section h1 {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.hero-section .lead {
	color: rgba(245, 241, 232, 0.9);
	font-size: 1.25rem;
}

.hero-image-container {
	position: relative;
	text-align: center;
}

.hero-cat {
	width: 300px;
	height: 300px;
	object-fit: contain;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.speech-bubble {
	position: absolute;
	top: -50px;
	right: 50px;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 20px;
	box-shadow: var(--shadow);
	font-weight: bold;
	color: var(--text-dark);
}

.speech-bubble::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 30px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid white;
}

.stats-row {
	display: flex;
	gap: 3rem;
}

.stat-item h3 {
	color: var(--primary-color);
	font-size: 2.5rem;
	margin-bottom: 0;
}

.stat-item p {
	color: rgba(245, 241, 232, 0.8);
	margin: 0;
}

.hero-wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 120px;
}

.hero-wave svg {
	width: 100%;
	height: 100%;
}

/* Buttons */
.btn {
	padding: 0.75rem 2rem;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-primary {
	background: var(--primary-color);
	border: none;
	color: white;
}

.btn-primary:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.btn-outline-light {
	border: 2px solid white;
	color: white;
}

.btn-outline-light:hover {
	background: white;
	color: var(--primary-color);
}

.btn-light {
	background: white;
	color: var(--primary-color);
}

.btn-light:hover {
	background: var(--light-bg);
	transform: translateY(-2px);
}

/* Feature Cards */
.feature-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	border: 3px solid transparent;
}

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

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
}

/* Step Cards */
.step-card {
	text-align: center;
	position: relative;
	padding: 2rem;
}

.step-number {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
}

.step-image {
	width: 150px;
	height: 150px;
	object-fit: contain;
	margin-top: 2rem;
}

/* Lesson Preview Cards */
.lesson-preview-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	cursor: pointer;
}

.lesson-preview-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.lesson-icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 117, 24, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.lesson-meta {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	color: #666;
	font-size: 0.9rem;
}

/* Game Features Section */
#game-features {
	background: var(--dark-bg);
	color: var(--text-light);
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.feature-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.feature-item i {
	font-size: 1.5rem;
	margin-top: 0.25rem;
	color: var(--primary-color);
}

.feature-item h5 {
	margin-bottom: 0.25rem;
	color: var(--text-light);
}

.feature-item p {
	margin: 0;
	opacity: 0.9;
	color: rgba(245, 241, 232, 0.8);
}

/* Screenshot Mockup */
.screenshot-container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}

.screenshot-mockup {
	width: 300px;
	height: 600px;
	background: #333;
	border-radius: 30px;
	padding: 10px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	position: relative;
}

.screenshot-mockup::before {
	content: '';
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 5px;
	background: #666;
	border-radius: 10px;
}

.screen-content {
	width: 100%;
	height: 100%;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.screenshot-image {
	width: 150px;
	height: 150px;
}

/* Cat Companions Section */
.cat-companion-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: var(--shadow);
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cat-companion-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.cat-companion-card.featured {
	border: 3px solid var(--primary-color);
	transform: scale(1.05);
}

.cat-companion-card.featured::before {
	content: '⭐ Most Common';
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--primary-color);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: bold;
}

.cat-image-container {
	position: relative;
	text-align: center;
	margin-bottom: 1.5rem;
}

.companion-cat-image {
	width: 120px;
	height: 120px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.cat-companion-card:hover .companion-cat-image {
	transform: scale(1.1) rotate(5deg);
}

.mood-indicator {
	position: absolute;
	top: 0;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: white;
	font-weight: bold;
}

.mood-indicator.sad {
	background: #dc3545;
}

.mood-indicator.normal {
	background: #ffc107;
}

.mood-indicator.happy {
	background: #28a745;
}

.cat-info h5 {
	color: var(--text-dark);
	margin-bottom: 1rem;
	font-weight: bold;
}

.cat-stats {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1rem;
}

.stat-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 117, 24, 0.1);
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-dark);
}

.stat-badge.sad {
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
}

.stat-badge.normal {
	background: rgba(255, 193, 7, 0.1);
	color: #e6a700;
}

.stat-badge.happy {
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
}

.cat-journey-info {
	background: rgba(255, 117, 24, 0.05);
	border: 2px solid rgba(255, 117, 24, 0.1);
	border-radius: 20px;
	padding: 2rem;
	margin-top: 2rem;
}

.cat-journey-info h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.journey-features {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.journey-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	color: var(--text-dark);
}

.journey-feature i {
	font-size: 1.2rem;
}

/* Development Section */
.development-content h4 {
	color: var(--text-dark);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.development-content h4:first-child {
	margin-top: 0;
}

.development-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.highlight-card {
	background: white;
	padding: 1.5rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: all 0.3s ease;
}

.highlight-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.highlight-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
}

.highlight-card h5 {
	color: var(--text-dark);
	margin-bottom: 0.75rem;
	font-weight: bold;
}

.highlight-card p {
	color: #666;
	font-size: 0.9rem;
	margin: 0;
}

.investor-callout {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	border-radius: 20px;
	padding: 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.investor-callout::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
	pointer-events: none;
}

.callout-content {
	position: relative;
	z-index: 2;
}

.investor-callout h4 {
	color: white;
	margin-bottom: 1.5rem;
}

.opportunity-points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2.5rem;
	text-align: left;
}

.opportunity-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.opportunity-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.opportunity-icon {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: white;
	font-size: 1.1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.opportunity-text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.opportunity-text strong {
	color: white;
	font-size: 1rem;
	font-weight: 600;
}

.opportunity-text span {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	line-height: 1.4;
}

.investor-cta {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.investor-cta .btn {
	padding: 1rem 2rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.investor-cta .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.bg-wood {
	background:
		linear-gradient(135deg, rgba(44, 24, 16, 0.2) 0%, rgba(26, 15, 8, 0.5) 100%),
		url('../images/wood-bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	overflow: hidden;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.platform-icons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	font-size: 2rem;
	opacity: 0.8;
}

/* Footer */
footer {
	background: var(--dark-bg);
}

.footer-logo {
	width: 30px;
	height: 30px;
}

footer a {
	text-decoration: none;
	transition: color 0.3s ease;
}

footer a:hover {
	color: var(--primary-color) !important;
}

.footer-link {
	color: rgba(255, 255, 255, 0.5) !important;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: var(--primary-color) !important;
}

.footer-brand-link {
	color: var(--primary-color) !important;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

.footer-brand-link:hover {
	color: var(--secondary-color) !important;
}

/* Hide elements initially for animation */
.animate-hidden {
	opacity: 0;
	transform: translateY(30px);
	transition: none;
}

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

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes bounceIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.animate-fade-in {
	animation: fadeInUp 0.8s ease both;
}

.animate-fade-in-up {
	animation: fadeInUp 0.8s ease both;
}

.animate-fade-in-left {
	animation: fadeInLeft 0.8s ease both;
}

.animate-fade-in-right {
	animation: fadeInRight 0.8s ease both;
}

.animate-scale-in {
	animation: scaleIn 0.8s ease both;
}

/* Remove hidden state when animation is applied */
.animate-fade-in.animate-hidden,
.animate-fade-in-up.animate-hidden,
.animate-fade-in-left.animate-hidden,
.animate-fade-in-right.animate-hidden,
.animate-scale-in.animate-hidden {
	opacity: 0;
	transform: translateY(30px);
}

.animate-fade-in-delay-1 {
	animation: fadeInUp 0.8s ease 0.2s both;
}

.animate-fade-in-delay-2 {
	animation: fadeInUp 0.8s ease 0.4s both;
}

.animate-fade-in-delay-3 {
	animation: fadeInUp 0.8s ease 0.6s both;
}

.animate-float {
	animation: float 3s ease-in-out infinite;
}

.animate-bounce-in {
	animation: bounceIn 0.8s ease 0.8s both;
}

/* Responsive Design */
@media (max-width: 991px) {
	.hero-section h1 {
		font-size: 2.5rem;
	}

	.hero-cat {
		width: 250px;
		height: 250px;
	}

	.stats-row {
		justify-content: center;
		flex-wrap: wrap;
	}

	.screenshot-mockup {
		width: 250px;
		height: 500px;
	}
}

@media (max-width: 767px) {
	.hero-section {
		padding: 100px 0 50px;
		min-height: auto;
	}

	.hero-section h1 {
		font-size: 2rem;
	}

	.hero-cat {
		width: 200px;
		height: 200px;
	}

	.speech-bubble {
		position: static;
		margin-top: 2rem;
		display: inline-block;
	}

	.stats-row {
		gap: 1.5rem;
	}

	.stat-item h3 {
		font-size: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons .btn {
		width: 100%;
		max-width: 300px;
	}
}

/* Modal Styles */
.modal {
	z-index: 10500;
}

.modal-backdrop {
	z-index: 10400;
}

.modal-content {
	border: none;
	border-radius: 15px;
	box-shadow: var(--shadow-lg);
}

.modal-header {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	border-bottom: none;
	border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
	filter: brightness(0) invert(1);
}

.modal-body {
	padding: 2rem;
}

.modal-body h6 {
	color: var(--primary-color);
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.modal-body ul li {
	margin-bottom: 0.5rem;
}

/* Contact Modal Styles */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-item i {
	font-size: 1.2rem;
	margin-top: 0.25rem;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}

.contact-item div h6,
.contact-item div strong {
	margin: 0;
	color: var(--text-dark);
}

.contact-item div p {
	margin: 0;
	color: #666;
	font-size: 0.9rem;
}

.contact-email {
	color: var(--primary-color) !important;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact-email:hover {
	color: var(--secondary-color) !important;
	text-decoration: underline;
}

.modal-link {
	color: var(--primary-color) !important;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.modal-link:hover {
	color: var(--secondary-color) !important;
	text-decoration: underline;
}

/* Cookie Consent Banner */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--dark-bg);
	color: var(--text-light);
	padding: 1rem;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.cookie-icon {
	font-size: 2rem;
	color: var(--primary-color);
}

.cookie-text {
	flex: 1;
	min-width: 300px;
}

.cookie-text h6 {
	margin: 0 0 0.5rem 0;
	color: var(--text-light);
}

.cookie-text p {
	margin: 0;
	color: rgba(245, 241, 232, 0.8);
	font-size: 0.9rem;
}

.cookie-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

/* Cookie Settings Modal */
.cookie-category {
	background: rgba(255, 117, 24, 0.05);
	border: 1px solid rgba(255, 117, 24, 0.1);
	border-radius: 10px;
	padding: 1.5rem;
	margin-bottom: 1rem;
}

.cookie-category h6 {
	color: var(--text-dark) !important;
	margin-top: 0 !important;
}

.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-check-input:focus {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.25rem rgba(255, 117, 24, 0.25);
}

/* Form Styles */
.form-control,
.form-select {
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 0.75rem;
	transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(255, 117, 24, 0.25);
}

.form-label {
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

/* Language Switcher */
.dropdown-toggle::after {
	margin-left: 0.5rem;
}

.dropdown-menu {
	background: rgba(44, 24, 16, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 117, 24, 0.2);
	border-radius: 10px;
	min-width: 150px;
}

.dropdown-item {
	color: var(--text-light) !important;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
	border-radius: 5px;
	margin: 2px;
}

.dropdown-item:hover {
	background: rgba(255, 117, 24, 0.2);
	color: var(--primary-color) !important;
}

.dropdown-item i {
	margin-right: 0.5rem;
	width: 16px;
}

#currentLanguage {
	font-weight: bold;
	margin-left: 0.25rem;
}

/* Utility Classes */
.text-primary {
	color: var(--primary-color) !important;
}

.bg-light {
	background-color: var(--light-bg) !important;
}

.display-3 {
	font-size: 3.5rem;
}

.display-4 {
	font-size: 2.5rem;
}

/* Smooth section transitions */
section {
	position: relative;
	z-index: 1;
}

/* Responsive Modal Styles */
@media (max-width: 767px) {
	.modal-body {
		padding: 1rem;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.cookie-actions {
		width: 100%;
		justify-content: center;
	}

	.contact-info {
		margin-bottom: 2rem;
	}

	/* Mobile parallax fix */
	.bg-gradient {
		background-attachment: scroll;
	}
	
	.bg-wood {
		background-attachment: scroll;
	}
	
	/* Cat companions mobile adjustments */
	.cat-companion-card.featured {
		transform: none;
		margin-bottom: 2rem;
	}
	
	.journey-features {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}
	
	.companion-cat-image {
		width: 100px;
		height: 100px;
	}
	
	/* Development section mobile adjustments */
	.development-highlights {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.opportunity-points {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.opportunity-item {
		padding: 1rem;
	}
	
	.investor-callout {
		padding: 2rem 1rem;
	}
}