@charset "UTF-8";
/* Login ===================================================================== */
.wrap-member-login-out {
  max-width: 770px;
  margin: 5% auto;
}

.wrap-member-login {
  display: flex;
  background-color: #fff;
  border: 5px solid #ededed;
}
@media (max-width: 640px) {
  .wrap-member-login {
    flex-direction: column;
  }
}

.member-login-main {
  margin: 100px auto 0 auto;
  text-align: center;
}
@media (max-width: 640px) {
  .member-login-main {
    margin: 50px auto 0 auto;
  }
}
.member-login-main input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 10px 7px 35px;
  width: 300px;
  font-size: 15px;
  transition: all 0.5s;
}
.member-login-main input::placeholder {
  color: #ccc;
  font-size: 15px;
}
.member-login-main input:focus {
  border: 1px solid #d4af7a;
}
.member-login-main .member-login-title {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 32px;
}
.member-login-main li {
  list-style: none;
  margin-bottom: 20px;
}

.icon-account {
  position: relative;
}
.icon-account:before {
  display: block;
  position: absolute;
  left: 15px;
  top: 2px;
  content: "";
  background: url(../images/icon-account.svg) no-repeat;
  width: 20px;
  height: 20px;
}

.icon-password {
  position: relative;
}
.icon-password:before {
  display: block;
  position: absolute;
  left: 15px;
  top: 2px;
  content: "";
  background: url(../images/icon-password.svg) no-repeat;
  width: 20px;
  height: 20px;
}

.forgot-pw {
  font-size: 13px;
  text-decoration: underline;
  margin-bottom: 20px;
}
.forgot-pw a {
  color: #ccc;
  transition: all 0.5s;
}
.forgot-pw a:hover {
  color: #000;
}

a.btn-signin {
  display: block;
  margin: 0 auto;
  width: 260px;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #d4af7a;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s;
}
a.btn-signin:hover {
  color: #d4af7a;
  font-weight: bold;
  border: 2px solid #d4af7a;
  background-color: transparent;
}

.member-login-sidebar {
  width: 260px;
  height: 450px;
  background: url(../images/login-pic.jpg) right center;
  background-size: cover;
}
@media (max-width: 640px) {
  .member-login-sidebar {
    width: 100%;
    margin-top: 50px;
  }
}
.member-login-sidebar .signup-text {
  text-align: center;
  font-size: 17px;
  color: #fff;
  padding-top: 210px;
}
@media (max-width: 640px) {
  .member-login-sidebar .signup-text {
    padding-top: 200px;
  }
}
.member-login-sidebar .signup-text strong {
  font-size: 20px;
  display: block;
  margin-bottom: 6px;
}
.member-login-sidebar .signup-text span {
  display: block;
  line-height: 25px;
}
.member-login-sidebar a.btn-signup {
  display: block;
  margin: 10px auto 0 auto;
  text-align: center;
  width: 130px;
  padding: 10px 0;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  border: 2px solid #fff;
  transition: all 0.5s;
}
.member-login-sidebar a.btn-signup:hover {
  background-color: #d4af7a;
}

/* Signup ===================================================================== */
.wrap-member-register-out {
  max-width: 1100px;
  margin: 5% auto;
  padding: 0 15px;
}

.wrap-member-register {
  background-color: #fff;
  border: 5px solid #ededed;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-register-main {
  margin: 0 auto;
  padding: 40px 50px;
  text-align: center;
}
.member-register-main input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 10px 7px 10px;
  width: 100%;
  font-size: 15px;
  transition: all 0.5s;
}
.member-register-main select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 40px 7px 10px;
  width: 100%;
  font-size: 15px;
  transition: all 0.5s;
  background-color: #fff;
  background-image: url("../images/icon-lang-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}
.member-register-main select:focus {
  border: 1px solid #d4af7a;
  outline: none;
}

.member-register-main input::placeholder {
  color: #ccc;
  font-size: 15px;
}
.member-register-main input:focus {
  border: 1px solid #d4af7a;
}
.member-register-main .member-register-title {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 32px;
}
.member-register-main li {
  list-style: none;
  margin-bottom: 20px;
}
.member-register-main li.row-2cols {
  display: block;
  margin-bottom: 20px;
}
.member-register-main li.row-2cols .col {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.member-register-main li.row-2cols .col:last-child {
  margin-bottom: 0;
}
.member-register-main li.row-2cols .col input,
.member-register-main li.row-2cols .col select {
  width: 100%;
}
.member-register-main li.row-2cols .col label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.member-register-main li.row-2cols .col:empty {
  display: none;
}
@media (max-width: 768px) {
  .member-register-main li.row-2cols .col {
    margin-bottom: 20px;
  }
}
.member-register-main li.agreement-row {
  margin-bottom: 25px;
}
.member-register-main .agreement-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 615px;
  margin: 0 auto;
  text-align: left;
}
.member-register-main .agreement-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 2px 10px 0 0;
  cursor: pointer;
  -webkit-appearance: checkbox;
}
.member-register-main .agreement-label {
  cursor: pointer;
  line-height: 1.6;
  font-size: 14px;
  color: #666;
}
.member-register-main .agreement-text {
  display: inline;
}
.member-register-main .privacy-link {
  color: #d4af7a;
  text-decoration: underline;
  transition: all 0.3s;
}
.member-register-main .privacy-link:hover {
  color: #b8935f;
}

/* Product Registration Section */
.product-registration-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 35px;
  border: 2px dashed #d4af7a;
}
.product-registration-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
.product-registration-section .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-registration-section .section-title i {
  color: #d4af7a;
}
.product-registration-section .required-tag {
  font-size: 16px;
  color: #b61900;
  font-weight: bold;
  margin-left: 5px;
}
.product-registration-section .register-book-only {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}
.product-registration-section .register-book-only:hover {
  border-color: #d4af7a;
  background: #fffbf5;
}
.product-registration-section .register-book-only input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-appearance: checkbox;
}

/* Subsections */
.machines-section,
.books-section {
  background: white;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}
.subsection-title {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.subsection-title i {
  color: #d4af7a;
  font-size: 18px;
}

/* Machine and Book Items */
.machine-item,
.book-item {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.machine-item:hover,
.book-item:hover {
  border-color: #d4af7a;
  box-shadow: 0 2px 8px rgba(212, 175, 122, 0.1);
}
.machine-item .item-header,
.book-item .item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.machine-item .item-number,
.book-item .item-number {
  font-weight: 600;
  color: #d4af7a;
  font-size: 14px;
}
.btn-remove-item {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}
.btn-remove-item:hover {
  background: #c82333;
  transform: scale(1.1);
}

/* Input Styles */
.input-machine,
.input-book {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 12px;
  width: 100%;
  font-size: 15px;
  border-radius: 4px;
  transition: all 0.3s;
  background: white;
}
.input-machine:focus,
.input-book:focus {
  border-color: #d4af7a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 122, 0.1);
}
.row-single {
  width: 100%;
}

/* Add More Button */
.btn-add-more {
  background: linear-gradient(135deg, #d4af7a 0%, #b8935f 100%);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(212, 175, 122, 0.3);
}
.btn-add-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 122, 0.4);
}
.btn-add-more i {
  font-size: 16px;
}

/* Member Info Section */
.member-info-section {
  margin-bottom: 20px;
}
.member-info-section .section-header {
  margin-bottom: 20px;
}
.member-info-section .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d4af7a;
}
.member-info-section .section-title i {
  color: #d4af7a;
}

/* Responsive Design - Following cms-index.css breakpoints */

/* Desktop Large (max-width: 1279px) */
@media only screen and (max-width: 1279px) {
  .wrap-member-register-out {
    max-width: 980px;
  }
  .member-register-main {
    padding: 35px 40px;
  }
}

/* Tablet (max-width: 980px) */
@media only screen and (max-width: 980px) {
  .wrap-member-register-out {
    max-width: 100%;
    margin: 3% auto;
  }
  .member-register-main {
    padding: 30px 35px;
  }
  .member-register-main input {
    width: 280px;
  }
  .product-registration-section {
    padding: 20px;
  }
  .member-register-main li.row-2cols .col {
    max-width: 280px;
  }
}

/* Tablet Small (max-width: 768px) */
@media only screen and (max-width: 768px) {
  .wrap-member-register {
    border: 3px solid #ededed;
  }
  .member-register-main {
    padding: 25px 20px;
  }
  .product-registration-section {
    padding: 20px 15px;
  }
  .product-registration-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-registration-section .section-title {
    font-size: 18px;
  }
  .machines-section,
  .books-section {
    padding: 15px;
  }
  .member-register-main li.row-2cols {
    flex-direction: column;
    gap: 0;
  }
  .member-register-main li.row-2cols .col {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .member-register-main input {
    width: 100%;
    max-width: 100%;
  }
  .machine-item .row-2cols {
    flex-direction: column;
    gap: 0;
  }
  .machine-item .row-2cols .col {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .btn-add-more {
    width: 100%;
    justify-content: center;
  }
  .member-register-main .agreement-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }
  .member-register-main .agreement-label {
    font-size: 13px;
  }
}

/* Mobile Large (max-width: 640px) */
@media only screen and (max-width: 640px) {
  .wrap-member-register-out {
    margin: 2% auto;
    padding: 0 10px;
  }
  .member-register-main {
    padding: 20px 15px;
  }
  .member-register-title {
    font-size: 20px !important;
    margin-bottom: 20px;
  }
  .product-registration-section {
    padding: 15px 10px;
    margin-bottom: 25px;
  }
  .machines-section,
  .books-section {
    padding: 12px;
  }
  .machine-item,
  .book-item {
    padding: 12px;
  }
  .subsection-title {
    font-size: 15px;
  }
  .member-register-main .agreement-wrapper {
    padding: 0 5px;
  }
  .member-register-main .agreement-label {
    font-size: 12px;
  }
}

/* Mobile Medium (max-width: 570px) */
@media only screen and (max-width: 570px) {
  .wrap-member-register {
    border: 2px solid #ededed;
  }
  .member-register-main {
    padding: 20px 12px;
  }
  .product-registration-section .section-title {
    font-size: 16px;
  }
  .register-book-only {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* Mobile Small (max-width: 414px) */
@media only screen and (max-width: 414px) {
  .member-register-main {
    padding: 15px 10px;
  }
  .product-registration-section {
    padding: 12px 8px;
  }
  .member-register-title {
    font-size: 18px !important;
  }
  .member-register-main .agreement-wrapper {
    padding: 0;
  }
  .member-register-main .agreement-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 1px 8px 0 0;
  }
  .member-register-main .btn-register {
    width: 140px;
    font-size: 15px;
  }
}

/* Mobile Extra Small (max-width: 320px) */
@media only screen and (max-width: 320px) {
  .wrap-member-register-out {
    padding: 0 5px;
  }
  .member-register-main {
    padding: 12px 8px;
  }
  .product-registration-section {
    padding: 10px 6px;
  }
  .btn-add-more {
    font-size: 13px;
    padding: 10px 18px;
  }
  .member-register-main .agreement-label {
    font-size: 11px;
  }
  .member-register-main .btn-register {
    width: 130px;
    font-size: 14px;
    padding: 8px 0;
  }
  .product-registration-section .section-title {
    font-size: 14px;
  }
  .machine-item,
  .book-item {
    padding: 10px;
  }
}

.member-register-main .btn-register,
.member-center-main .btn-register {
  display: block;
  margin: 0 auto;
  width: 150px;
  padding: 10px 0;
  border: 0;
  border-radius: 20px;
  background-color: #d4af7a;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s;
}
.member-register-main .btn-register:hover,
.member-center-main .btn-register:hover {
  color: #d4af7a;
  font-weight: bold;
  border: 2px solid #d4af7a;
  background-color: transparent;
}

/* Member Center ===================================================================== */
.wrap-member-center-out {
  max-width: 600px;
  margin: 5% auto;
}

.wrap-member-center {
  background-color: #fff;
  border: 5px solid #ededed;
}

.member-center-banner {
  background: url(../images/member-center-pic.jpg);
  height: 178px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  border-radius: 10px 10px 0 0;
}
.member-center-banner span {
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.7));
}

.member-center-main {
  margin: 0 auto;
  padding: 40px 50px;
  text-align: center;
}
.member-center-main input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 10px 7px 10px;
  width: 100%;
  font-size: 15px;
  transition: all 0.5s;
}
.member-center-main input::placeholder {
  color: #ccc;
  font-size: 15px;
}
.member-center-main input:focus {
  border: 1px solid #d4af7a;
}
.member-center-main select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 10px;
  width: 100%;
  font-size: 15px;
  transition: all 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/icon-sm-arrow.svg) no-repeat right 10px center;
  background-size: 10px;
}
.member-center-main select:focus {
  border: 1px solid #d4af7a;
}
.member-center-main li {
  list-style: none;
  margin-bottom: 20px;
}
.member-center-main li.row-2cols {
  display: block;
  margin-bottom: 20px;
}
.member-center-main li.row-2cols .col {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.member-center-main li.row-2cols .col:last-child {
  margin-bottom: 0;
}
.member-center-main li.row-2cols .col input,
.member-center-main li.row-2cols .col select {
  width: 100%;
}
.member-center-main li.row-2cols .col label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.member-center-main li.row-2cols .col:empty {
  display: none;
}

a.btn-member-center {
  display: block;
  margin: 0 auto;
  width: 150px;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #d4af7a;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s;
}
a.btn-member-center:hover {
  color: #d4af7a;
  font-weight: bold;
  border: 2px solid #d4af7a;
  background-color: transparent;
}

/* Forgot Password ===================================================================== */
.wrap-forgot-pw-out {
  max-width: 600px;
  margin: 5% auto;
}

.wrap-forgot-pw {
  background-color: #fff;
  border: 5px solid #ededed;
}

.forgot-pw-banner {
  background: url(../images/forgot-pw-pic.jpg) right center;
  height: 178px;
  background-size: cover;
}

.forgot-pw-main {
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}
.forgot-pw-main .forgot-pw-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
}
.forgot-pw-main input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 7px 10px 7px 10px;
  width: 300px;
  font-size: 15px;
  transition: all 0.5s;
}
.forgot-pw-main input::placeholder {
  color: #ccc;
  font-size: 15px;
}
.forgot-pw-main input:focus {
  border: 1px solid #d4af7a;
}
.forgot-pw-main li {
  list-style: none;
  margin-bottom: 20px;
}

a.btn-forgot-pw {
  display: block;
  margin: 0 auto;
  width: 150px;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #d4af7a;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s;
}
a.btn-forgot-pw:hover {
  color: #d4af7a;
  font-weight: bold;
  border: 2px solid #d4af7a;
  background-color: transparent;
}

/* Registered Serials Section ============================================= */
.registered-serials-section {
  margin-top: 30px;
  margin-bottom: 30px;
}

.registered-items-list {
  margin-top: 15px;
}

.registered-item {
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.registered-item label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #666;
  font-size: 13px;
}

.readonly-field {
  padding: 7px 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
  color: #666;
  border-radius: 3px;
  font-size: 15px;
}

.subsection-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subsection-subtitle i {
  color: #d4af7a;
}

/* Member Services Cards (Member Support / Dashboard) ====================== */
.member-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.member-service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.member-service-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.service-card-header {
  background: linear-gradient(135deg, #b61900 0%, #d32f2f 100%);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  position: relative;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  backdrop-filter: blur(10px);
}

.service-icon.icon-download { background: rgba(255,255,255,0.2); }
.service-icon.icon-video { background: rgba(255,255,255,0.2); }
.service-icon.icon-file { background: rgba(255,255,255,0.2); }

.service-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.service-card-content {
  padding: 25px 20px;
  flex: 1;
}

.service-image {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-description {
  margin-bottom: 20px;
}

.service-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  font-size: 15px;
  color: #555;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: #b61900;
  margin-right: 10px;
  font-size: 14px;
}

.service-card-footer {
  padding: 20px;
  background: #f9f9f9;
  border-top: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px;
}

.login-required-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b61900;
  font-size: 14px;
  font-weight: 600;
}

.login-required-badge i {
  font-size: 16px;
}

.btn-service {
  display: inline-block;
  padding: 12px 30px;
  background: #b61900;
  color: #fff !important;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-service:hover {
  background: #d32f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(182, 25, 0, 0.3);
  color: #fff !important;
}

@media (max-width: 768px) {
  .member-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-footer {
    justify-content: center;
  }
}

/* App Icon Style Links ============================================= */
.member-app-icons {
  margin-top: 30px;
  padding: 20px 0;
}

.member-app-icons > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.app-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  flex: 0 0 auto;
}

.app-icon-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.app-icon-link:hover .app-icon {
  transform: scale(1.05);
}

.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.2s;
}

.app-icon i {
  font-size: 28px;
  color: #fff;
}

.app-icon-link span {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Icon Background Gradients */
.app-icon.icon-download {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.app-icon.icon-video {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
}

.app-icon.icon-file {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .member-app-icons > div {
    justify-content: center;
  }
  
  .app-icon-link {
    min-width: 100px;
    padding: 12px;
  }
  
  .app-icon {
    width: 50px;
    height: 50px;
  }
  
  .app-icon i {
    font-size: 24px;
  }
}