/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	background-color: #14143c;
	color: #333;
}

.site-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	max-width: 1100px;
	margin: 0 auto;
	background-color: white;
	position: relative;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
header {
	background-color: #14143c;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 5%;
	color: white;
	position: sticky;
	top: 0;
	z-index: 100;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	width: 32px;
	height: 32px;
	margin-right: 8px;
}

.logo span {
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.5px;
}

.nav-links {
	display: flex;
	align-items: center;
}

.nav-links a {
	color: white;
	text-decoration: none;
	margin-left: 20px;
	font-size: 14px;
	transition: opacity 0.3s ease;
}

.nav-links a:hover {
	opacity: 0.8;
}

.social-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	color: #14143c;
	transition: transform 0.3s ease;
	margin-left: 10px;
}

.social-icon i {
	font-size: 14px;
}

.social-icon.linkedin i {
	color: #14143c;
}

.social-icon.youtube i {
	color: #14143c;
}

.social-icon:hover {
	transform: scale(1.1);
}

.mobile-menu {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

/* Main Content Styles */
main {
	flex: 1;
	background-color: white;
	padding: 0;
}

.content-wrapper {
	max-width: 900px;
	margin: 0 auto;
	padding: 30px 20px 60px;
}

/* Game Section Styles */
.game-section {
	margin-bottom: 80px;
	padding: 0;
	position: relative;
	width: 100%;
}

.game-content {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	padding: 0 40px;
	gap: 15px;
}

.phone-mockup {
	position: relative;
	flex: 0 0 45%;
	display: flex;
	justify-content: flex-end;
}

.game-section.reverse .phone-mockup {
	justify-content: flex-start;
}

.phone-mockup img {
	max-width: 100%;
	height: auto;
	display: block;
}

.phone-screen {
	position: relative;
}

.game-info {
	flex: 0 0 45%;
	padding: 0;
}

.reverse .game-info {
	text-align: right;
}

h2 {
	font-size: 26px;
	margin-bottom: 6px;
	color: #333;
	font-weight: 600;
}

.downloads {
	color: #2e7ad8;
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: bold;
}

.description {
	font-size: 28px;
	line-height: 1.3;
	margin-bottom: 5px;
	color: #333;
}

.app-buttons {
	display: flex;
	gap: 15px;
	align-items: center;
}

.app-store-button img, .google-play-button img {
	height: 50px;
	transition: transform 0.3s ease;
}

.app-store-button img:hover, .google-play-button img:hover {
	transform: scale(1.05);
}

/* Prototypes Section */
.prototypes-section {
	margin-bottom: 80px;
	padding: 0;
}

.prototypes-section h2 {
	text-align: center;
	color: #ff0099;
	margin-bottom: 25px;
	position: relative;
	font-weight: 600;
}

.prototypes-section h2:after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background-color: #ff0099;
}

.video-container {
	margin-bottom: 25px;
}

.video-placeholder {
	background: linear-gradient(to right, #ff0099, #4d106e);
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	overflow: hidden;
}

.play-button {
	width: 60px;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.play-button:hover {
	transform: scale(1.1);
}

.play-button i {
	color: #ff0099;
	font-size: 22px;
	margin-left: 3px;
}

.prototype-description {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.5;
	font-size: 14px;
	color: #666;
}

/* Contact Section Styles */
.contact-section {
	background-color: #14143c;
	color: white;
	padding: 50px 20px;
	position: relative;
}

.contact-section:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #ff0099;
}

.contact-container {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.contact-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.contact-logo img {
	width: 35px;
	height: 35px;
	margin-right: 8px;
}

.contact-logo span {
	font-weight: bold;
	font-size: 16px;
}

.social-links {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
}

.social-links .social-icon {
	margin: 0 8px;
}

.contact-section h3 {
	font-size: 22px;
	margin-bottom: 30px;
	font-weight: 600;
}

.contact-form {
	max-width: 400px;
	margin: 0 auto;
}

.form-row {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
}

.form-group {
	flex: 1;
	margin-bottom: 12px;
}

input, textarea {
	width: 100%;
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 14px;
}

input:focus, textarea:focus {
	background-color: rgba(255, 255, 255, 0.15);
	outline: none;
}

input::placeholder, textarea::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

textarea {
	height: 100px;
	resize: none;
}

.submit-button {
	background-color: #ffcc00;
	color: #14143c;
	border: none;
	border-radius: 4px;
	padding: 8px 25px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-top: 5px;
}

.submit-button:hover {
	background-color: #ffd633;
}

.footer {
	text-align: center;
	padding-top: 35px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

/* Phone Frames */
.phone-frame {
	position: relative;
	width: 100%;
}

.monster-evolution-phone video,
.boost-jump-phone video,
.solitaire-phone video,
.zen-cards-phone video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(1.0);
    transform-origin: center;
}

.monster-evolution-phone {
    position: relative;
    width: 220px;
    border: 12px solid #000;
    border-radius: 36px;
    overflow: hidden;
    height: 440px;
    background-color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.monster-evolution-phone:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 15px;
    background: #000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.monster-evolution-phone img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.boost-jump-phone {
    position: relative;
    width: 220px;
    border: 12px solid #000;
    border-radius: 36px;
    overflow: hidden;
    height: 440px;
    background-color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.boost-jump-phone:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 15px;
    background: #000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.boost-jump-phone img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.solitaire-phone {
    position: relative;
    width: 220px;
    border: 12px solid #000;
    border-radius: 36px;
    overflow: hidden;
    height: 440px;
    background-color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solitaire-phone:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 15px;
    background: #000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.solitaire-phone img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zen-cards-phone {
    position: relative;
    width: 220px;
    border: 12px solid #000;
    border-radius: 36px;
    overflow: hidden;
    height: 440px;
    background-color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zen-cards-phone:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 15px;
    background: #000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.zen-cards-phone img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.desktop-only {
		display: none;
	}
	
	.mobile-only {
		display: block;
	}
	
	.game-content {
		padding: 0;
		flex-direction: column;
		gap: 30px;
	}
	
	.game-section.reverse .game-content {
		flex-direction: column;
	}
	
	.phone-mockup, 
	.game-section.reverse .phone-mockup {
		justify-content: center;
	}
	
	.game-info,
	.reverse .game-info {
		text-align: center;
	}
	
	.description {
		max-width: 100%;
	}
	
	.app-buttons {
		justify-content: center;
		height: 160px;
	}

	/* Game Icons */

	
	.game-icon img {
		border-radius: 12px;
		box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	}
		
	.form-row {
		flex-direction: column;
		gap: 0;
	}

	h2 {
		font-size: 24px;
	}

	.video-placeholder {
		height: 250px;
	}
	
	.monster-evolution-phone,
	.boost-jump-phone,
	.solitaire-phone,
	.zen-cards-phone {
		width: 180px;
		height: 360px;
		margin: 0 auto;
	}
	
	.monster-evolution-phone video,
	.boost-jump-phone video,
	.solitaire-phone video,
	.zen-cards-phone video {
		object-fit: fill;
	}
}

@media (min-width: 769px) {
	.desktop-only {
		display: flex;
	}
	
	.mobile-only {
		display: none;
	}
}

/* Mobile Menu Dropdown */
.mobile-dropdown {
	display: none;
	position: absolute;
	top: 70px;
	right: 0;
	background-color: #14143c;
	width: 100%;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	z-index: 99;
}

.mobile-dropdown.active {
	display: block;
}

.mobile-dropdown a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 10px 0;
	font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown a:last-child {
	border-bottom: none;
}

.form-response {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.form-response.success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #98ff98;
}

.form-response.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #ff9999;
}

/* Add loading state for submit button */
.submit-button.loading {
    position: relative;
    color: transparent;
}

.submit-button.loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #14143c;
    border-radius: 50%;
    animation: button-loading-spinner 1s linear infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}