@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0e1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

#parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  #parallax-bg {
    transform: scale(0.6);
    transform-origin: center center;
    width: 170%;
    height: 170vh;
    left: -35%;
    top: -35%;
  }
}
@media (max-width: 480px) {
  #parallax-bg {
    transform: scale(0.5);
    width: 200%;
    height: 200vh;
    left: -50%;
    top: -50%;
  }
}

.scroll-container {
  position: relative;
  z-index: 1;
  background: transparent;
}

.scroll-container::after {
  content: "";
  display: block;
  height: 0;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav.scrolled {
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.main-nav .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .main-nav .nav-container {
    padding: 0 20px;
  }
}
.main-nav .logo {
  font-size: 24px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
}
.main-nav .logo a {
  text-decoration: none;
  color: #ffffff;
}
.main-nav .logo a span {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}
@media (max-width: 768px) {
  .main-nav .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.98);
    width: 70%;
    height: 100vh;
    padding: 100px 40px;
    gap: 30px;
    transition: right 0.3s ease;
  }
  .main-nav .nav-menu.active {
    right: 0;
  }
}
.main-nav .nav-menu li a {
  text-decoration: none;
  color: #b8c5d6;
  font-weight: 500;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  transition: width 0.3s ease;
}
.main-nav .nav-menu li a:hover {
  color: #ffffff;
}
.main-nav .nav-menu li a:hover::after {
  width: 100%;
}
.main-nav .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 768px) {
  .main-nav .hamburger {
    display: flex;
  }
}
.main-nav .hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.main-nav .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.main-nav .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.section {
  min-height: 100vh;
  padding: 120px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  border-radius: 2px;
}

.section-description {
  text-align: center;
  color: #b8c5d6;
  font-size: 18px;
  max-width: 700px;
  margin: -30px auto 60px;
}
@media (max-width: 768px) {
  .section-description {
    font-size: 16px;
    margin: -20px auto 40px;
  }
}

.section-cta {
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.03) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-cta p {
  color: #b8c5d6;
  font-size: 18px;
  margin-bottom: 20px;
}
.section-cta .btn {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-cta {
    padding: 50px 20px;
    margin-top: 60px;
  }
  .section-cta p {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .section-cta .btn {
    padding: 16px 36px;
    font-size: 17px;
  }
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #0a0e1a;
}
.btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}
.btn.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffd700;
}
.btn.btn-secondary:hover {
  background: #ffd700;
  color: #0a0e1a;
  transform: translateY(-3px);
}
.btn.btn-submit {
  width: 100%;
  margin-top: 10px;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-section .hero-content {
  text-align: center;
  z-index: 2;
}
.hero-section .hero-title {
  margin-bottom: 20px;
}
.hero-section .hero-title .greeting {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: #b8c5d6;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero-section .hero-title .greeting {
    font-size: 20px;
  }
}
.hero-section .hero-title .name {
  display: block;
  font-size: 120px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  line-height: 1;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .hero-section .hero-title .name {
    font-size: 60px;
  }
}
.hero-section .hero-subtitle {
  font-size: 36px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .hero-section .hero-subtitle {
    font-size: 24px;
  }
}
.hero-section .hero-tagline {
  font-size: 20px;
  color: #b8c5d6;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .hero-section .hero-tagline {
    font-size: 16px;
  }
}
.hero-section .hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #7a8a9e;
  animation: bounce 2s infinite;
}
.hero-section .scroll-indicator span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}
.hero-section .scroll-indicator i {
  font-size: 24px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.about-section {
  background: rgba(19, 24, 36, 0.6);
  backdrop-filter: blur(10px);
}
.about-section .about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .about-section .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-section .about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.about-section .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.about-section .about-image:hover img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .about-section .about-image {
    max-width: 400px;
    margin: 0 auto;
  }
}
.about-section .about-text p {
  color: #b8c5d6;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about-section .about-text p {
    font-size: 16px;
  }
}
.about-section .about-text p.lead {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 768px) {
  .about-section .about-text p.lead {
    font-size: 18px;
  }
}
.about-section .about-text .about-personal {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid #ffd700;
  border-radius: 10px;
}
.about-section .about-text .about-personal h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffd700;
}
.about-section .about-text .about-personal p {
  margin-bottom: 0;
}
.about-section .about-text .about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .about-section .about-text .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.about-section .about-text .about-stats .stat {
  text-align: center;
  padding: 25px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-section .about-text .about-stats .stat:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
}
.about-section .about-text .about-stats .stat .stat-number {
  display: block;
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}
.about-section .about-text .about-stats .stat .stat-label {
  display: block;
  font-size: 14px;
  color: #7a8a9e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skills-section .skills-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.skills-section .skill-category {
  background: rgba(26, 35, 50, 0.6);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}
@media (max-width: 768px) {
  .skills-section .skill-category {
    padding: 25px;
  }
}
.skills-section .skill-category .category-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .skills-section .skill-category .category-title {
    font-size: 22px;
  }
}
.skills-section .skill-category .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
@media (max-width: 768px) {
  .skills-section .skill-category .skills-grid {
    grid-template-columns: 1fr;
  }
}
.skills-section .skill-category .skill-item .skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.skills-section .skill-category .skill-item .skill-header .skill-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
}
.skills-section .skill-category .skill-item .skill-header .skill-percentage {
  font-weight: 700;
  color: #ffd700;
  font-size: 16px;
}
.skills-section .skill-category .skill-item .skill-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}
.skills-section .skill-category .skill-item .skill-bar .skill-progress {
  height: 100%;
  background: linear-gradient(90deg, #ffd700 0%, #ff8c00 100%);
  border-radius: 50px;
  width: 0%;
  position: relative;
}

.projects-section {
  background: rgba(19, 24, 36, 0.6);
  backdrop-filter: blur(10px);
}
.projects-section .project-category {
  margin-bottom: 80px;
}
.projects-section .project-category:last-child {
  margin-bottom: 0;
}
.projects-section .project-category .category-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: left;
}
@media (max-width: 768px) {
  .projects-section .project-category .category-title {
    font-size: 24px;
    text-align: center;
  }
}
.projects-section .project-category .category-title i {
  color: #ffd700;
  margin-right: 15px;
}
.projects-section .project-category .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1200px) {
  .projects-section .project-category .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .projects-section .project-category .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: rgba(26, 35, 50, 0.8);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 215, 0, 0.1);
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.3);
}
.project-card .project-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.3s ease;
}
.project-card .project-image .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card .project-image .project-overlay .project-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0e1a;
  font-size: 24px;
  text-decoration: none;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.project-card .project-image:hover img {
  transform: scale(1.1);
}
.project-card .project-image:hover .project-overlay {
  opacity: 1;
}
.project-card .project-image:hover .project-overlay .project-link {
  transform: scale(1);
}
.project-card .project-info {
  padding: 30px;
}
.project-card .project-info .project-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.project-card .project-info .project-description {
  color: #b8c5d6;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.project-card .project-info .project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-card .project-info .project-tech .tech-tag {
  padding: 6px 14px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  font-size: 12px;
  color: #ffd700;
  font-weight: 600;
}

.voice-section .voice-grid {
  display: grid;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.voice-section .voice-card {
  background: rgba(26, 35, 50, 0.8);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.voice-section .voice-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
}
.voice-section .voice-card .voice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .voice-section .voice-card .voice-header {
    padding: 20px;
  }
}
.voice-section .voice-card .voice-header:hover {
  background: rgba(255, 215, 0, 0.05);
}
.voice-section .voice-card .voice-header.active .voice-toggle i {
  transform: rotate(180deg);
}
.voice-section .voice-card .voice-header .voice-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0e1a;
  font-size: 20px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .voice-section .voice-card .voice-header .voice-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.voice-section .voice-card .voice-header .voice-info {
  flex: 1;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .voice-section .voice-card .voice-header .voice-info {
    padding: 0 15px;
  }
}
.voice-section .voice-card .voice-header .voice-info h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .voice-section .voice-card .voice-header .voice-info h4 {
    font-size: 18px;
  }
}
.voice-section .voice-card .voice-header .voice-info p {
  color: #b8c5d6;
  font-size: 14px;
}
.voice-section .voice-card .voice-header .voice-toggle {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.voice-section .voice-card .voice-header .voice-toggle i {
  transition: transform 0.3s ease;
}
.voice-section .voice-card .voice-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.voice-section .voice-card .voice-content.active {
  max-height: 600px;
}
.voice-section .voice-card .voice-content .video-wrapper {
  padding: 0 30px 30px;
}
@media (max-width: 768px) {
  .voice-section .voice-card .voice-content .video-wrapper {
    padding: 0 20px 20px;
  }
}
.voice-section .voice-card .voice-content .video-wrapper iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .voice-section .voice-card .voice-content .video-wrapper iframe {
    height: 250px;
  }
}

.ai-video-section {
  background: rgba(10, 14, 26, 0.5);
  min-height: auto;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .ai-video-section {
    padding: 60px 0;
  }
}
.ai-video-section .ai-video-accordion {
  max-width: 1200px;
  margin: 0 auto;
}
.ai-video-section .ai-video-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  background: rgba(26, 35, 50, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-header {
    padding: 20px 25px;
  }
}
.ai-video-section .ai-video-header:hover {
  background: rgba(26, 35, 50, 0.9);
  border-color: rgba(255, 215, 0, 0.3);
}
.ai-video-section .ai-video-header.active {
  border-radius: 20px 20px 0 0;
}
.ai-video-section .ai-video-header.active .ai-video-toggle i {
  transform: rotate(180deg);
}
.ai-video-section .ai-video-header .ai-video-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-header .ai-video-header-left {
    gap: 15px;
  }
}
.ai-video-section .ai-video-header .ai-video-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0e1a;
  font-size: 24px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-header .ai-video-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
.ai-video-section .ai-video-header .ai-video-title-area {
  display: flex;
  flex-direction: column;
}
.ai-video-section .ai-video-header .ai-video-title-area .section-title {
  text-align: left;
  margin-bottom: 8px !important;
  font-size: 32px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-header .ai-video-title-area .section-title {
    font-size: 24px;
  }
}
.ai-video-section .ai-video-header .ai-video-title-area .section-title::after {
  display: none;
}
.ai-video-section .ai-video-header .ai-video-title-area .section-description {
  margin-bottom: 0;
  margin-top: 0;
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
}
.ai-video-section .ai-video-header .ai-video-toggle {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ai-video-section .ai-video-header .ai-video-toggle i {
  transition: transform 0.3s ease;
}
.ai-video-section .ai-video-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-top: none;
  border-radius: 0 0 20px 20px;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ai-video-section .ai-video-content.active {
  max-height: 1800px;
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-content.active {
    max-height: 4500px;
  }
}
.ai-video-section .ai-video-content .ai-video-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-content .ai-video-grid {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
}
.ai-video-section .ai-video-content .video-wrapper.shorts-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  height: 460px;
  position: relative;
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-content .video-wrapper.shorts-wrapper {
    height: 380px;
  }
}
.ai-video-section .ai-video-content .video-wrapper.shorts-wrapper iframe {
  width: 315px;
  height: 560px;
  max-width: 100%;
  border: none;
  margin-top: -100px;
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-content .video-wrapper.shorts-wrapper iframe {
    height: 480px;
    margin-top: -80px;
  }
}
.ai-video-section .ai-video-content .video-wrapper.tiktok-wrapper {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  min-width: 325px;
  max-width: 325px;
  overflow: hidden;
}
.ai-video-section .ai-video-content .video-wrapper.tiktok-wrapper iframe {
  border: none;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-content .video-wrapper.tiktok-wrapper {
    min-width: 280px;
    max-width: 280px;
  }
  .ai-video-section .ai-video-content .video-wrapper.tiktok-wrapper iframe {
    width: 280px;
    height: 498px;
  }
}
.ai-video-section .ai-video-content .video-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ai-video-section .ai-video-content .video-label {
  margin-top: 15px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .ai-video-section .ai-video-content .video-label {
    font-size: 14px;
  }
}

.books-section {
  background: rgba(10, 14, 26, 0.5);
  min-height: auto;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .books-section {
    padding: 60px 0;
  }
}
.books-section .books-accordion {
  max-width: 1200px;
  margin: 0 auto;
}
.books-section .books-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  background: rgba(26, 35, 50, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .books-section .books-header {
    padding: 20px 25px;
  }
}
.books-section .books-header:hover {
  background: rgba(26, 35, 50, 0.9);
  border-color: rgba(255, 215, 0, 0.3);
}
.books-section .books-header.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.books-section .books-header.active .books-toggle i {
  transform: rotate(180deg);
}
.books-section .books-header .books-header-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}
@media (max-width: 768px) {
  .books-section .books-header .books-header-left {
    gap: 15px;
  }
}
.books-section .books-header .books-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0e1a;
  font-size: 24px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .books-section .books-header .books-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
.books-section .books-header .books-title-area .section-title {
  font-size: 32px;
  margin-bottom: 5px;
  text-align: left;
}
.books-section .books-header .books-title-area .section-title::after {
  display: none;
}
@media (max-width: 768px) {
  .books-section .books-header .books-title-area .section-title {
    font-size: 24px;
  }
}
.books-section .books-header .books-title-area .section-description {
  font-size: 16px;
  margin: 0;
}
@media (max-width: 768px) {
  .books-section .books-header .books-title-area .section-description {
    font-size: 14px;
  }
}
.books-section .books-header .books-toggle {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.books-section .books-header .books-toggle i {
  transition: transform 0.3s ease;
}
.books-section .books-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.books-section .books-content.active {
  max-height: 3000px;
}
.books-section .books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px;
}
@media (max-width: 1024px) {
  .books-section .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .books-section .books-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.books-section .book-card {
  background: #1a2332;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.books-section .book-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}
.books-section .book-card:hover .book-image img {
  transform: scale(1.05);
}
.books-section .book-card .book-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  position: relative;
}
.books-section .book-card .book-image::after {
  content: "\f065";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(255, 215, 0, 0.8);
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.books-section .book-card .book-image:hover::after {
  opacity: 1;
}
.books-section .book-card .book-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.books-section .book-card .book-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.books-section .book-card .book-info h4 {
  font-size: 18px;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 600;
}
.books-section .book-card .book-info p {
  color: #b8c5d6;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.contact-section .contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .contact-section .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-section .contact-info .info-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(26, 35, 50, 0.6);
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-section .contact-info .info-item:hover {
  background: rgba(26, 35, 50, 0.8);
  transform: translateX(10px);
}
.contact-section .contact-info .info-item .info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0e1a;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-section .contact-info .info-item .info-content {
  flex: 1;
}
.contact-section .contact-info .info-item .info-content h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
}
.contact-section .contact-info .info-item .info-content a {
  display: block;
  color: #b8c5d6;
  text-decoration: none;
  margin-bottom: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-section .contact-info .info-item .info-content a:hover {
  color: #ffd700;
}
.contact-section .contact-info .info-item .info-content p {
  color: #b8c5d6;
  margin: 0;
}
.contact-section .contact-form {
  background: rgba(26, 35, 50, 0.6);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}
@media (max-width: 768px) {
  .contact-section .contact-form {
    padding: 25px;
  }
}
.contact-section .contact-form .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-form .form-group .form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(10, 14, 26, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-section .contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}
.contact-section .contact-form .form-group .form-control::placeholder {
  color: #7a8a9e;
}
.contact-section .contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form .form-message {
  margin-top: 15px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}
.contact-section .contact-form .form-message.success {
  background: rgba(0, 255, 100, 0.1);
  border: 1px solid rgba(0, 255, 100, 0.3);
  color: #00ff64;
}
.contact-section .contact-form .form-message.error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ff5555;
}

.main-footer {
  background: #0a0e1a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin-bottom: 0;
  position: relative;
}
.main-footer::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #0a0e1a;
  z-index: -1;
}
.main-footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .main-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.main-footer .footer-content .footer-brand h3 {
  font-size: 28px;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
.main-footer .footer-content .footer-brand h3 span {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-footer .footer-content .footer-brand p {
  color: #b8c5d6;
  font-size: 14px;
}
.main-footer .footer-content .footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}
.main-footer .footer-content .footer-links ul {
  list-style: none;
}
.main-footer .footer-content .footer-links ul li {
  margin-bottom: 12px;
}
.main-footer .footer-content .footer-links ul li a {
  color: #b8c5d6;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-footer .footer-content .footer-links ul li a:hover {
  color: #ffd700;
}
.main-footer .footer-content .footer-social h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}
.main-footer .footer-content .footer-social .social-links {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .main-footer .footer-content .footer-social .social-links {
    justify-content: center;
  }
}
.main-footer .footer-content .footer-social .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-footer .footer-content .footer-social .social-links a:hover {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #0a0e1a;
  transform: translateY(-3px);
}
.main-footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.main-footer .footer-bottom p {
  color: #7a8a9e;
  font-size: 14px;
}

[data-aos].aos-animate {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.text-gradient {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blockchain-showcase .blockchain-grid {
  display: grid;
  gap: 30px;
}
.blockchain-showcase .blockchain-card {
  background: rgba(26, 35, 50, 0.8);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blockchain-showcase .blockchain-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
}
.blockchain-showcase .blockchain-card .blockchain-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .blockchain-showcase .blockchain-card .blockchain-header {
    padding: 20px;
  }
}
.blockchain-showcase .blockchain-card .blockchain-header:hover {
  background: rgba(255, 215, 0, 0.05);
}
.blockchain-showcase .blockchain-card .blockchain-header.active .blockchain-toggle i {
  transform: rotate(180deg);
}
.blockchain-showcase .blockchain-card .blockchain-header .blockchain-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0e1a;
  font-size: 20px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .blockchain-showcase .blockchain-card .blockchain-header .blockchain-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.blockchain-showcase .blockchain-card .blockchain-header .blockchain-info {
  flex: 1;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .blockchain-showcase .blockchain-card .blockchain-header .blockchain-info {
    padding: 0 15px;
  }
}
.blockchain-showcase .blockchain-card .blockchain-header .blockchain-info h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .blockchain-showcase .blockchain-card .blockchain-header .blockchain-info h4 {
    font-size: 18px;
  }
}
.blockchain-showcase .blockchain-card .blockchain-header .blockchain-info p {
  color: #b8c5d6;
  font-size: 14px;
}
.blockchain-showcase .blockchain-card .blockchain-header .blockchain-toggle {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blockchain-showcase .blockchain-card .blockchain-header .blockchain-toggle i {
  transition: transform 0.3s ease;
}
.blockchain-showcase .blockchain-card .blockchain-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blockchain-showcase .blockchain-card .blockchain-content.active {
  max-height: 1500px;
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper {
  padding: 0 30px 30px;
}
@media (max-width: 768px) {
  .blockchain-showcase .blockchain-card .blockchain-content .content-wrapper {
    padding: 0 20px 20px;
  }
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper p {
  color: #b8c5d6;
  margin-bottom: 15px;
  line-height: 1.8;
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper p strong {
  color: #ffd700;
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper p em {
  color: #7a8a9e;
  font-size: 14px;
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper ul li {
  color: #b8c5d6;
  padding: 8px 0 8px 30px;
  position: relative;
  line-height: 1.6;
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 18px;
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper .blockchain-gallery {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border-left: 4px solid #ffd700;
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper .blockchain-gallery .view-gifs-btn {
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 14px;
}
.blockchain-showcase .blockchain-card .blockchain-content .content-wrapper .blockchain-gallery .view-gifs-btn i {
  margin-right: 8px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}
.modal .modal-content {
  background: linear-gradient(135deg, #131824 0%, #0a0e1a 100%);
  border-radius: 20px;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}
@media (max-width: 768px) {
  .modal .modal-content {
    max-width: 95%;
    max-height: 95vh;
  }
}
.modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
.modal .modal-header h3 {
  font-size: 28px;
  color: #ffd700;
  margin: 0;
}
.modal .modal-header .modal-close {
  background: transparent;
  border: none;
  color: #b8c5d6;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-header .modal-close:hover {
  color: #ffd700;
  transform: rotate(90deg);
}
.modal .modal-body {
  padding: 30px;
}
.modal .modal-body .gif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .modal .modal-body .gif-grid {
    grid-template-columns: 1fr;
  }
}
.modal .modal-body .gif-item {
  background: #1a2332;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.modal .modal-body .gif-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}
.modal .modal-body .gif-item img {
  width: 100%;
  height: auto;
  display: block;
}
.modal .modal-body .gif-item p {
  padding: 15px;
  text-align: center;
  color: #b8c5d6;
  font-size: 14px;
  margin: 0;
  background: rgba(0, 0, 0, 0.3);
}
.modal .modal-body .modal-note {
  text-align: center;
  color: #7a8a9e;
  font-size: 14px;
  font-style: italic;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  margin: 0;
}

.gif-fullscreen-overlay {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
  cursor: pointer;
}
.gif-fullscreen-overlay .gif-fullscreen-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 215, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: #ffd700;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20001;
}
.gif-fullscreen-overlay .gif-fullscreen-close:hover {
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
  transform: rotate(90deg) scale(1.1);
}
@media (max-width: 768px) {
  .gif-fullscreen-overlay .gif-fullscreen-close {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
.gif-fullscreen-overlay img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
@media (max-width: 768px) {
  .gif-fullscreen-overlay img {
    max-width: 95%;
    max-height: 95vh;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
