@import url(colors.css);
body{
  background-color: #010340;
  background-image: url("https://transparenttextures.com/patterns/dark-brick-wall.png");
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content{
    display: flex;
    justify-content: space-between;
    width: 95%;
    border: 1px solid var(--primary);
    height: 90vh;
    margin: 10px 0;
    border-radius: 30px;
    background-color: #00053849;
}
.content .left{
width: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.content .right{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right img{
  width: 80%;
  padding-top: 50px;
  opacity: 0.5;
  filter: drop-shadow(0px 0px 39px #0EA5E9);
  transition: 1s ease-in-out;
}
.right img:hover{
  filter: drop-shadow(0px 0px 59px #0EA5E9);
  opacity: 0.8;
}
.content .head{
    width: 100%;
    padding: 20px;
    margin: 0 0 100px 0;
    text-align: center;
}
.head h1{
  font-family: "Slabo 27px", serif;
  letter-spacing: 2px;
  color: white;
  width: 100%;
}

.svg-filter {
  position:absolute;
  width:0;
  height:0;
}

.card-wrapper {
  position:relative;
  width: 400px;
  height: 400px;
  cursor: pointer;
  background-color: #010340;
  background-image: url("https://transparenttextures.com/patterns/french-stucco.png");  
  border-radius: 50%;
  transition: 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-border {
  position: absolute;
  inset: 0;
  border: 3px solid var(--primary);
  filter: url(#electric-border);
  box-shadow:
  0 0 6px rgba(14, 165, 233, .6),
  12px 12px 18px rgba(14, 165, 233, .35),
 -12px -12px 18px rgba(14, 165, 233, .35),
  12px -12px 18px rgba(14, 165, 233, .35),
 -12px 12px 18px rgba(14, 165, 233, .35);

  pointer-events: none;
  border-radius: 50%;
  animation: rotate-electric 120s linear infinite;
}

.cardback{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -5;
}

.cardback::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #0ea4e979;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.card:hover ~ .cardback::after {
  width: 120%; 
  height: 120%;
  animation: ripple-wave 1.1s ease-out forwards;
}

.card {
  z-index:1;
  width:100%;
  height:100%;
  padding:40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
}

.card .card-texts{
    position: relative;
    width: 100%;
    height: 100%; 
}

.card-texts span{
    position: absolute;
    color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #0EA5E9;
}

.card-texts .text{
    font-size: 40px;
    width: 100%;
    font-family: "Slabo 27px", serif;
    transition: top 0.5s ease, opacity 0.4s ease;
}

.card-texts .icon{
    top: 200%;
    font-size: 50px;
    transition: top 0.5s ease, opacity 0.4s ease;
}
.card:hover .icon{
    top: 50%;
}

.card:hover .text{
    top: -200%;
}

@keyframes rotate-electric {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


@keyframes ripple-wave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 0.45;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4); /* %140 */
    opacity: 0;
  }
}

/* İkinci Content */

.contenttwo{
  width: 95%;
  height: 100vh;
  margin: 10px 0;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.transfer-wrapper {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

/* SOL PANEL */
.transfer-left {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  width: 70%;
}

.tab-header {
  display: flex;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  padding: 12px;
  border: none;
  cursor: pointer;
  background: #f1f2f6;
  font-weight: 600;
}

.tab.active {
  background: #fff;
  border-bottom: 2px solid #5865f2;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.form textarea {
  min-height: 90px;
  resize: none;
}

.send-btn {
  width: 100%;
  background: #5865f2;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

/* SAĞ PANEL */
.transfer-right {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  width: 70%;
  height: max-content;
}

.upload-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.action-card {
  flex: 1;
  border: 2px dashed #c7c9f5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
}

.file-summary {
  margin-bottom: 10px;
}

.file-list {
  border-top: 1px solid #eee;
}

.file-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.expire-select {
  margin-bottom: 16px;
}

.expire-select label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

.expire-select select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* Link oluşturma Penceresi */
.link-result {
  background: #f9f9fb;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #e3e3e8;
}

.link-title {
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Slabo 27px", serif;
  text-align: center;
}

.link-box {
  display: flex;
  gap: 8px;
}

.link-box input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 14px;
}

.copy-btn {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #4a5cff;
  color: #fff;
  font-weight: 600;
}

.copy-btn:hover {
  background: #3948d8;
}

.link-expire {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

/* ================= PROMO SECTION ================= */
.promo-section {
  position: relative;
  width: 100%;
  padding: 0 20px;
  padding-top: 50px; 
  background-color: white;
  text-align: center;
  overflow: hidden;
}
.promo-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.promo-section > *:not(.promo-wave) {
  position: relative;
  z-index: 2;
}
.promo-section h1 {
  font-size: 28px;
  margin: 40px 0;
  font-family: "Slabo 27px", serif;
  font-weight: 600;
  color: #222;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.promo-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow:
    0 0 6px rgba(72, 104, 221, 0.15),
    8px 8px 18px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 12px rgba(72, 77, 221, 0.35),
    12px 12px 26px rgba(0,0,0,.1);
}

.promo-step {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}

.promo-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
  font-family: "Slabo 27px", serif;

}

.promo-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.promo-footer-text {
  margin-top: 40px;
  font-size: 15px;
  color: #666;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= FAQ / SSS ================= */

.faq-section {
  width: 100%;
  color: #1f2937;
  background-color: white;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 28px;
  text-align: center;
  color: #010340;
  font-family: "Slabo 27px", serif;
  margin: 30px 0;
}

.faq-section h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: "Slabo 27px", serif;

}

.faq-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid rgba(14,165,233,0.4);
}

/* Mobil uyum */
@media (max-width: 768px) {

  .faq-section h2 {
    font-size: 22px;
  }

  .faq-section h3 {
    font-size: 16px;
  }

  .faq-section p {
    font-size: 14px;
  }
}


@media (max-width: 1000px){
.content{
  flex-direction: column;
  align-items: center;  
  justify-content: space-around;
  height: auto;
}
.content .left{
  width: 100%;
}
}

@media (max-width: 600px){
.card-wrapper {
  width: 300px;
  height: 300px;
}
}

@media (max-width: 400px){
.card-wrapper {
  width: 250px;
  height: 250px;
}

.card-texts .text{
    font-size: 30px;
  }
}