body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.invitation-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.invitation-section h2 {
    color: var(--accent-color);
    text-align: center;
}

.invitation-content {
    margin-top: 20px;
}

.invitation-section ul {
    list-style-type: none;
    padding: 0;
}

.invitation-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.invitation-section ul li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.cta-button {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}
.veryBig {
  font-size: 2.3em;
  background: linear-gradient(45deg, #FF0000, #FF8C00, #FF00FF);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.copyable {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.copyable:hover {
    background-color: #f0f0f0;
}
.copy-icon {
    font-size: 2em;
}
.mouse-icon {
  width: 32px;
  height: 32px;
stroke: #800080;
  fill: #e6f2ff;
  vertical-align: middle;
  transition: all 0.3s ease;
}


.click-effect {
  opacity: 0;
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  transition: all 0.3s ease;
}

.copyable:active .click-effect {
  opacity: 1;
  animation: clickPulse 0.3s ease-out;
}

@keyframes clickPulse {
  0% {
    stroke-dashoffset: 10;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
#copyMessage {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 16px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

#copyMessage.show {
    opacity: 1;
    transform: translateY(0);
}
.avatar-container {
    text-align: center;
    margin: 20px 0;
	margin:0 auto;
}

.referrer-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 15px var(--shadow-color);
}

.highlight {
	color:var(--highlight-color);
}

.state {
    background-color: rgba(47, 47, 47, 0.7);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.state:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.7);
}

.state h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.5em;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.state ul {
    list-style-type: none;
    padding-left: 0;
}

.state li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.state li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.download-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.download-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.download-button svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.download-buttons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.download-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.qr-code {
  width: 150px; /* Ajustez selon vos besoins */
  height: 150px;
  margin-top: 10px;
  border-radius: 5px;
}