[v-cloak] {
  display: none !important;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Helvetica', sans-serif;
	background-color: #000015;
	color: #fff;
	overflow-x: hidden;
}

canvas#stars {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

section {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	min-height: 100vh;
}

.hero {
	background: #000;
	position: relative;
	min-height: calc(min(412px, 60vh));
	align-items: center; 
}

.hero img {
	width: 100%;
	height: 100%;
	min-height: calc(min(412px, 60vh));
	min-width: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.cyan .text-block {
	gap: 0;
}
.text-block {
	width: 50%;
	min-width: 300px;
	padding: 60px 60px 100px 60px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	position: relative; 
}

.text-block .title-svg {
	max-width: 100%;
	height: auto;
	margin-bottom: 0;
	filter: brightness(0) invert(1);
}

.text-block p {
	font-size: 2em;
	line-height: 1.4;
	margin-bottom: 0;
	text-align: left;
	width: 100%;
	padding-left: 10%; 
	padding-right: 8%; 
	box-sizing: border-box;
}

.violet .text-block p {
	color: white;
}

.cyan .text-block p {
	color: #666;
}

.social-icons-small {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin-top: 0;
}

.social-icons-small a {
	display: block;
	transition: transform 0.3s;
}

.social-icons-small a:hover {
	transform: scale(1.15);
}

.social-icons-small img {
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.violet .social-icons-small img {
	filter: brightness(0) invert(1);
}

.cyan .social-icons-small img {
	filter: invert(0.3);
}

.img-block {
	width: 50%;
	min-width: 300px;
	overflow: hidden;
	position: relative;
}

.img-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.text-block, .img-block, .footer-left, .footer-right {
	border-style: solid;
	border-color: #fff;
	border-width: 2px 0 0 2px;
}

.violet .text-block, 
.cyan .img-block, 
.footer-right {
	border-right-width: 2px;
}

.footer-left, 
.footer-right {
	border-bottom-width: 2px;
}

.violet {
	background: #d66cff;
	color: #000;
}

.cyan {
	background: #6ef2ff;
	color: #000;
}

footer {
	background: #3a2fa6;
	color: #fff;
	text-align: center;
	position: relative;
	display: grid;
	grid-template-columns: 1.8fr 1.2fr;
	gap: 0;
}

.footer-left {
	grid-column: 1;
	grid-row: 1;
	background: #3a2fa6;
	padding: 80px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footer-links {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.brand-column {
	align-items: flex-start;
	max-width: calc(min(40%, 250px));
}

.links-column {
	justify-content: center;
	height: 100%;
	padding-top: 10px;
}

.footer-links .footer-logo {
	width: 120px;
	height: auto;
	display: block;
}

.copyright-internal {
	color: #fff;
	font-size: 0.8em;
	text-align: left;
	line-height: 1.4;
	margin-top: 10px;
}

.footer-links ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.footer-links li a {
	text-decoration: none;
	color: #aaa;
	font-size: 14px;
	transition: opacity 0.3s;
}

.footer-links li a:hover {
	opacity: 0.7;
}

.footer-right {
	grid-column: 2;
	grid-row: 1;
	background: #1b1a1a;
	padding: 20px;
	border: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
	border:2px solid;
}

.footer-right .follow-us-text {
	width: 180px;
	height: auto;
}

.social-icons {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.social-icons a {
	display: block;
	transition: transform 0.3s;
}

.social-icons a:hover {
	transform: scale(1.1);
}

.social-icons img {
	width: 50px;
	height: 50px;
	border-radius: 12px;
}

.copyright {
	display: none;
}

/* Media Queries - Tablet */
@media screen and (max-width: 1024px) {
	.text-block {
		padding: 40px;
	}

	.text-block p {
		font-size: 1.6em;
	}

	footer {
		grid-template-columns: 1fr 1fr;
	}

	.footer-left {
		padding: 30px;
	}

	.footer-links {
		gap: 40px;
	}

	.footer-right .follow-us-text {
		width: 140px;
	}
}

/* Media Queries - Mobile */
@media screen and (max-width: 768px) {
	section {
		min-height: auto;
		flex-direction: column;
	}

	.text-block,
	.img-block {
		width: 100%;
		min-width: 100%;
	}

	.violet .text-block {
		order: 1;
	}

	.violet .img-block {
		order: 2;
	}

	.cyan .text-block {
		order: 1;
	}

	.cyan .img-block {
		order: 2;
	}

	.text-block {
		padding: 30px 20px 80px 20px; 
		position: relative;
		gap: 0;
	}

	.text-block p {
		font-size: 1.3em;
		text-align: left;
		margin-bottom: 15%;
	}

	.text-block .title-svg {
		margin-bottom: 0;
	}

	.social-icons-small {
		position: absolute;
		bottom: 20px;
		width: 100%;
	}

	.social-icons-small img {
		width: 32px;
		height: 32px;
		padding: 0;
	}

	footer {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		padding: 0;
	}

	.footer-left {
		grid-column: 1;
		grid-row: 1;
		padding: 30px 20px;
	}

	.footer-right {
		grid-column: 1;
		grid-row: 2;
		padding: 30px 20px;
	}

	.footer-links {
		flex-direction: row; 
		align-items: flex-start;
		text-align: left;
		width: 100%;
		gap: 10px;
		justify-content: space-between;
	}

	.footer-column {
		width: auto;
		align-items: flex-start;
		flex: 1;
	}

	.footer-links .footer-logo {
		width: 90px;
	}

	.footer-links ul {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start; 
		width: 100%;
		padding-top: 10px;
	}

	.brand-column {
		max-width: 40%;
		margin: 0 8%;
	}

	.footer-right .follow-us-text {
		width: 150px;
	}

	.social-icons img {
		width: 45px;
		height: 45px;
	}

	.text-block, .img-block, .footer-left, .footer-right {
		border-right-width: 2px;
		border-bottom-width: 0;
	}

	.footer-right {
		border-bottom-width: 2px;
	}
}

/* Media Queries - Small*/
@media screen and (max-width: 480px) {
	.text-block {
		padding: 20px 15px 70px 15px;
	}

	.text-block p {
		font-size: 1.1em;
	}

	.footer-left,
	.footer-right {
		padding: 20px 15px;
	}

	.footer-links .footer-logo {
		width: 80px;
	}

	.footer-right .follow-us-text {
		width: 120px;
	}

	.social-icons img {
		width: 40px;
		height: 40px;
	}

	.copyright-internal {
		font-size: 0.8em;
	}
}
.pay-btn {
	background: #E6007E;
	color: white;
	padding: 14px 28px;
	border-radius: 14px;
	font-size: 20px;
	font-weight: bold;
	border: none;
	cursor: pointer;
	transition: 0.25s;
}

.pay-btn:hover {
	background: #c30069;
	transform: translateY(-2px);
}

.modal-bg {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.25s;
}


.amount-btn {
	background: #39B9FF;
	border: none;
	color: white;
	padding: 12px 18px;
	border-radius: 12px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	margin: 6px 0;
	width: 100%;
	transition: 0.25s;
}

.amount-btn:hover {
	background: #1fa7ef;
}

.close-btn {
	background: #ccc;
	border: none;
	padding: 10px 18px;
	border-radius: 10px;
	cursor: pointer;
	margin-top: 10px;
}

.input-field {
	margin-top: 15px;
	text-align: left;
}

.input-field label {
	font-size: 14px;
	font-weight: bold;
	color: #444;
}

.input-field input {
	width: 100%;
	padding: 10px;
	margin-top: 6px;
	border-radius: 10px;
	border: 2px solid #39B9FF;
	font-size: 16px;
}

.input-field textarea {
	width: 100%;
	padding: 10px;
	margin-top: 6px;
	border-radius: 10px;
	border: 2px solid #E6007E;
	font-size: 14px;
	resize: none;
	height: 70px;
}

.confirm-btn {
	background: #E6007E;
	color: white;
	width: 100%;
	padding: 12px;
	border: none;
	font-size: 16px;
	font-weight: bold;
	border-radius: 12px;
	margin-top: 15px;
	cursor: pointer;
	transition: 0.2s;
}

.confirm-btn:hover {
	background: #c30069;
}

.error-box {
	margin-top: 15px;
	background: #ffe1ec;
	border-left: 4px solid #E6007E;
	padding: 10px 12px;
	border-radius: 6px;
	color: #b40057;
	font-size: 14px;
	text-align: left;
}

@keyframes popIn {
	from { transform: scale(.8); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

div#app {
    /*background: linear-gradient(90deg, #E6007E, #39B9FF);*/
	background: linear-gradient(90deg, #a9005c, #0082c9);
}

.tip-band {
  width: 100%;
  color: white;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  max-width: 1024px;
  margin: auto;
}

.tip-info p {
  margin: 5px 0 10px;
  font-size: 14px;
}

.addresses div {
  margin: 4px 0;
}

.addresses label {
  font-weight: bold;
}

.addresses span {
  font-family: monospace;
}

.copy-btn {
  margin-left: 8px;
  background: #fff;
  color: #E6007E;
  border: none;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}

.eth-btn, .btc-btn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
  text-decoration: none;
  margin-bottom: 10px;
}

.eth-btn {
  background: #ffffff;
  color: #E6007E;
}

.eth-btn:hover {
  background: #ffeff9;
}

.btc-btn {
  background: #111;
  color: #f7931a;
}

.btc-btn:hover {
  background: #222;
}

.tip-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 99999;
}

.modal-card {
  background: white !important;
  padding: 25px 30px;
  border-radius: 20px;
  width: 330px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.35);
  animation: popIn 0.25s ease-out;
  position: relative;
  z-index: 100000;
}
@media (max-width: 768px) {

  .tip-band {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
    border-radius: 0;
  }

  .tip-info p {
    font-size: 15px;
  }

  .addresses {
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }

  .addresses div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 8px 10px;
    border-radius: 8px;
  }

  .addresses span {
    font-size: 13px;
    max-width: 60%;
    overflow-wrap: anywhere;
  }

  .copy-btn {
    padding: 5px 10px;
    font-size: 12px;
  }

  .tip-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .eth-btn, .btc-btn {
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
  }
}

/* -------- EXTRA SMALL (iPhone SE / Galaxy Mini) -------- */
@media (max-width: 420px) {

  .tip-band {
    padding: 18px 14px;
  }

  .addresses span {
    font-size: 12px;
  }

  .eth-btn, .btc-btn {
    font-size: 15px;
    padding: 10px 0;
  }
}